Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3)

Side by Side Diff: experimental/webtry/DESIGN.md

Issue 261693003: Use CodeMirror for WebTry snippets. (Closed) Base URL: https://skia.googlecode.com/svn/trunk
Patch Set: design.md notes Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | experimental/webtry/css/webtry.css » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « no previous file | experimental/webtry/css/webtry.css » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698