| OLD | NEW |
| 1 Design | 1 Design |
| 2 ====== | 2 ====== |
| 3 | 3 |
| 4 | 4 |
| 5 Overview | 5 Overview |
| 6 -------- | 6 -------- |
| 7 Allows trying out Skia code in the browser. | 7 Allows trying out Skia code in the browser. |
| 8 | 8 |
| 9 | 9 |
| 10 Security | 10 Security |
| (...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 it both in MySQL and the value stored in the metadata server. | 204 it both in MySQL and the value stored in the metadata server. |
| 205 | 205 |
| 206 Workspaces | 206 Workspaces |
| 207 ---------- | 207 ---------- |
| 208 | 208 |
| 209 Workspaces are implemented by the workspace and workspacetry tables. The | 209 Workspaces are implemented by the workspace and workspacetry tables. The |
| 210 workspace table keeps the unique list of all workspaces. The workspacetry table | 210 workspace table keeps the unique list of all workspaces. The workspacetry table |
| 211 keeps track of all the tries that have occured in a workspace. Right now the | 211 keeps track of all the tries that have occured in a workspace. Right now the |
| 212 hidden column of workspacetry is not used, it's for future functionality. | 212 hidden column of workspacetry is not used, it's for future functionality. |
| 213 | 213 |
| 214 Code Editor |
| 215 ----------- |
| 216 [CodeMirror](http://codemirror.net/) is used for rich code editing. The |
| 217 following files are included from the official CodeMirror distribution and can |
| 218 be updated in place (no local customizations): |
| 219 |
| 220 * codemirror.js - base CM implementation |
| 221 * codemirror.css - base CM stylesheet |
| 222 * clike.js - C-like syntax highlighting support |
| 223 * ambiance.css - Ambiance CM theme |
| 224 |
| 225 Alternatively, we may consider pulling CM as an external dependency at some |
| 226 point. |
| 227 |
| 228 |
| 214 Installation | 229 Installation |
| 215 ------------ | 230 ------------ |
| 216 See the README file. | 231 See the README file. |
| 217 | 232 |
| 218 | 233 |
| OLD | NEW |