diff options
author | Pierre Frisch | 2011-12-22 07:25:50 -0800 |
---|---|---|
committer | Valerio Virgillito | 2012-01-27 11:18:17 -0800 |
commit | b89a7ee8b956c96a1dcee995ea840feddc5d4b27 (patch) | |
tree | 0f3136ab0ecdbbbed6a83576581af0a53124d6f1 /js/codemirror/mode/smalltalk/index.html | |
parent | 2401f05d1f4b94d45e4568b81fc73e67b969d980 (diff) | |
download | ninja-b89a7ee8b956c96a1dcee995ea840feddc5d4b27.tar.gz |
First commit of Ninja to ninja-internal
Signed-off-by: Valerio Virgillito <rmwh84@motorola.com>
Diffstat (limited to 'js/codemirror/mode/smalltalk/index.html')
-rw-r--r-- | js/codemirror/mode/smalltalk/index.html | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/js/codemirror/mode/smalltalk/index.html b/js/codemirror/mode/smalltalk/index.html new file mode 100644 index 00000000..67cb22b4 --- /dev/null +++ b/js/codemirror/mode/smalltalk/index.html | |||
@@ -0,0 +1,56 @@ | |||
1 | <!doctype html> | ||
2 | <html> | ||
3 | <head> | ||
4 | <title>CodeMirror 2: Smalltalk mode</title> | ||
5 | <link rel="stylesheet" href="../../lib/codemirror.css"> | ||
6 | <script src="../../lib/codemirror.js"></script> | ||
7 | <script src="smalltalk.js"></script> | ||
8 | <link rel="stylesheet" href="../../theme/default.css"> | ||
9 | <link rel="stylesheet" href="../../css/docs.css"> | ||
10 | <style> | ||
11 | .CodeMirror {border: 2px solid #dee; border-right-width: 10px;} | ||
12 | .CodeMirror-gutter {border: none; background: #dee;} | ||
13 | .CodeMirror-gutter pre {color: white; font-weight: bold;} | ||
14 | </style> | ||
15 | </head> | ||
16 | <body> | ||
17 | <h1>CodeMirror 2: Smalltalk mode</h1> | ||
18 | |||
19 | <form><textarea id="code" name="code"> | ||
20 | " | ||
21 | This is a test of the Smalltalk code | ||
22 | " | ||
23 | Seaside.WAComponent subclass: #MyCounter [ | ||
24 | | count | | ||
25 | MyCounter class >> canBeRoot [ ^true ] | ||
26 | |||
27 | initialize [ | ||
28 | super initialize. | ||
29 | count := 0. | ||
30 | ] | ||
31 | states [ ^{ self } ] | ||
32 | renderContentOn: html [ | ||
33 | html heading: count. | ||
34 | html anchor callback: [ count := count + 1 ]; with: '++'. | ||
35 | html space. | ||
36 | html anchor callback: [ count := count - 1 ]; with: '--'. | ||
37 | ] | ||
38 | ] | ||
39 | |||
40 | MyCounter registerAsApplication: 'mycounter' | ||
41 | </textarea></form> | ||
42 | |||
43 | <script> | ||
44 | var editor = CodeMirror.fromTextArea(document.getElementById("code"), { | ||
45 | lineNumbers: true, | ||
46 | matchBrackets: true, | ||
47 | mode: "text/x-stsrc", | ||
48 | indentUnit: 4 | ||
49 | }); | ||
50 | </script> | ||
51 | |||
52 | <p>Simple Smalltalk mode.</p> | ||
53 | |||
54 | <p><strong>MIME types defined:</strong> <code>text/x-stsrc</code>.</p> | ||
55 | </body> | ||
56 | </html> | ||