forked from codemirror/CodeMirror-v1
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
193 lines (166 loc) · 8.78 KB
/
index.html
File metadata and controls
193 lines (166 loc) · 8.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>CodeMirror: In-browser code editing</title>
<link rel="stylesheet" type="text/css" href="css/docs.css"/>
<style type="text/css">
div.top {text-align: center;}
div.top h1 {margin-bottom: 0;}
div.top h2 {margin-top: 0; margin-bottom: 1.5em;}
div.donate span {cursor: pointer; text-decoration: underline;}
div.donate {font-size: 70%; margin-top: 1em; width: 155px; padding: 10px; border: 1px solid #c44;}
</style>
</head>
<body>
<div class="top">
<h1>CodeMirror</h1>
<h2 class="underline">In-browser code editing made almost bearable</h2>
</div>
<div style="float: right; padding-left: 10px;">
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" id="paypal">
<input type="hidden" name="cmd" value="_s-xclick"/>
<input type="hidden" name="hosted_button_id" value="3FVHS5FGUY7CC"/>
</form>
<img src="css/people.jpg" alt=""/><br/>
<div class="donate">
Make a donation:
<ul style="margin: 0 2em; padding: 0">
<li><span onclick="document.getElementById('paypal').submit();">Paypal</span></li>
<li><span onclick="document.getElementById('bankinfo').style.display = 'block';">Bank</span></li>
</ul>
<div id="bankinfo" style="display: none; font-size: 80%;">
Bank: <i>Rabobank</i><br/>
Country: <i>Netherlands</i><br/>
SWIFT: <i>RABONL2U</i><br/>
Account: <i>147850770</i><br/>
Name: <i>Marijn Haverbeke</i><br/>
IBAN: <i>NL26 RABO 0147 8507 70</i>
</div>
</div>
</div>
<p>CodeMirror is a JavaScript library that can be used to create a
relatively pleasant editor interface for code-like content ―
computer programs, HTML markup, and similar. If a parser has been
written for the language you are editing (see below for a list of
supported languages), the code will be coloured, and the editor will
help you with indentation.</p>
<p>To get a look at CodeMirror, see the test pages for the various
parsers...</p>
<ul>
<li><a href="jstest.html">JavaScript</a></li>
<li><a href="htmltest.html">XML/HTML</a></li>
<li><a href="csstest.html">CSS</a></li>
<li><a href="sparqltest.html">SPARQL</a></li>
<li><a href="mixedtest.html">HTML mixed-mode</a></li>
<li><a href="contrib/php/index.html">HTML+PHP mixed-mode</a> (courtesy of <a href="contrib/php/LICENSE">Yahoo!</a>)</li>
<li><a href="contrib/python/index.html">Python</a> (courtesy of <a href="contrib/python/LICENSE">Timothy Farrell</a>)</li>
<li><a href="contrib/lua/index.html">Lua</a> (courtesy of <a href="http://francio.pl/">Franciszek Wawrzak</a>)</li>
<li><a href="http://d.hantl.cz/d/ruby-in-codemirror/">Ruby</a> (by Michal Hantl, <a href="http://github.com/hakunin/ruby-in-codemirror/tree/master">unfinished</a>)</li>
<li><a href="contrib/sql/index.html">SQL</a> (courtesy of John Benediktsson)</li>
<li><a href="contrib/plsql/index.html">PLSQL</a> (courtesy of <a href="http://www.oracle-and-apex.com/">Peter Raganitsch</a>)</li>
<li><a href="http://www.liranuna.com/diff-parser-for-codemirror/">diff</a> (courtesy of <a href="http://www.liranuna.com">Liran Nuna</a>)</li>
</ul>
<p>Or take a look at some real-world uses of the system...</p>
<ul>
<li><a href="http://kml-samples.googlecode.com/svn/trunk/interactive/index.html">Google Earth KML sampler</a></li>
<li><a href="http://eloquentjavascript.net/chapter1.html">Eloquent JavaScript's console</a></li>
<li><a href="http://demo.qooxdoo.org/current/playground/#Hello_World">The qooxdoo playground</a></li>
<li><a href="http://billmill.org/static/canvastutorial/index.html">A cool tutorial about the <canvas> element</a></li>
<li><a href="http://orc.csres.utexas.edu/tryorc.shtml">An online IDE for the Orc programming language</a></li>
<li><a href="http://code.google.com/apis/ajax/playground">Google's API playground</a></li>
<li><a href="http://sandbox.livesitehost.com/livesite/index.php?u=admin&p=admin&send_to=/livesite/add_style.php">The liveSite CMS style editor</a></li>
<li><a href="http://dev.freebaseapps.com/">Freebase's Acre IDE</a></li>
<li><a href="http://jsbin.com/">JS Bin</a></li>
</ul>
<h2>Releases</h2>
<p class="rel"><em>01-03-2010</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.66.zip">Version
0.66</a>: Adds <code>removeLine</code> method to API. Introduces the
<a href="contrib/plsql/index.html">PLSQL parser</a>. Marks XML errors
by adding (rather than replacing) a CSS class, so that they can be
disabled by modifying their style. Fixes several selection bugs, and a
number of small glitches.</p>
<p class="rel"><em>12-11-2009</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.65.zip">Version
0.65</a>: Add support for having both line-wrapping and line-numbers
turned on, make paren-highlighting style customisable
(<code>markParen</code> and <code>unmarkParen</code> config options),
work around a selection bug that Opera <em>re</em>introduced in
version 10.</p>
<p class="rel"><em>23-10-2009</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.64.zip">Version
0.64</a>: Solves some issues introduced by the paste-handling changes
from the previous release. Adds <code>setSpellcheck</code>,
<code>setTextWrapping</code>, <code>setIndentUnit</code>,
<code>setUndoDepth</code>, <code>setTabMode</code>, and
<code>setLineNumbers</code> to customise a running editor. Introduces
an <a href="contrib/sql/index.html">SQL</a> parser. Fixes a few small
problems in the <a href="contrib/python/index.html">Python</a> parser.
And, as usual, add workarounds for various newly discovered browser
incompatibilities.</p>
<p class="rel"><em>31-08-2009</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.63.zip">Version
0.63</a>: Overhaul of paste-handling (less fragile), fixes for several
serious IE8 issues (cursor jumping, end-of-document bugs) and a number
of small problems.</p>
<p class="rel"><em>30-05-2009</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.62.zip">Version
0.62</a>: Introduces <a href="contrib/python/index.html">Python</a>
and <a href="contrib/lua/index.html">Lua</a> parsers. Add
<code>setParser</code> (on-the-fly mode changing) and
<code>clearHistory</code> methods. Make parsing passes time-based
instead of lines-based (see the <code>passTime</code> option).</p>
<p class="rel"><em>04-03-2009</em>: <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-0.61.zip">Version
0.61</a>: Add line numbers support (see <code>lineNumbers</code>
option in <a href="manual.html">manual</a>). Support a mode where tab
'shifts' indentation instead of resetting it (see
<code>tabMode="shift"</code>). Add <code>indentUnit</code> option to
configure indentation depths. Make it possible to grab the editor's
keyboard input, which is useful when popping up dialogs (see
<code>grabKeys</code>/<code>ungrabKeys</code>). Fix a lot of small
bugs, among which the various issues related to pasting in Internet
Explorer.</p>
<h2 id="supported">Supported browsers</h2>
<p>At this time, the following browsers are supported:</p>
<ul>
<li>Firefox 1.5 or higher</li>
<li>Internet Explorer 6 or higher</li>
<li>Safari 3 or higher</li>
<li>Opera 9.52 or higher</li>
<li>Chrome</li>
</ul>
<p>Making it work on other browsers that have decent support for the
W3C DOM model should not be too hard, but I am not actively testing
against those.</p>
<h2>Getting the code</h2>
<p>All of CodeMirror is released under a <a
href="LICENSE">zlib-style</a> license. To get it, you can download the
<a href="http://marijn.haverbeke.nl/codemirror/codemirror.zip">latest
release</a> or the current <a
href="http://marijn.haverbeke.nl/codemirror/codemirror-latest.zip">development
snapshot</a> as zip files, or use <a
href="http://git-scm.com/">git</a> to get the repository:</p>
<pre class="code">git clone http://marijn.haverbeke.nl/codemirror/.git</pre>
<p>This second method is recommended if you are planning to hack on
CodeMirror ― it makes it easy to record your patches and share
them with me. CodeMirror can also be found on GitHub: <a
href="http://github.com/marijnh/CodeMirror">http://github.com/marijnh/CodeMirror</a>.</p>
<h2>Support</h2>
<p>There is a <a
href="http://groups.google.com/group/codemirror">Google group</a> (a
sort of mailing list/newsgroup thingy) for discussion and news related
to CodeMirror. You can also e-mail me directly: <a
href="mailto:marijnh@gmail.com">Marijn Haverbeke</a>.</p>
<h2>Documentation</h2>
<ul>
<li>The <a href="manual.html">manual</a> is all most users will need
to read (or skim).</li>
<li>If you're interested in working on the code, <a
href="story.html">this document</a> about CodeMirror's architecture
will be useful.</li>
<li>The <a href="http://github.com/marijnh/CodeMirror">source
code</a> is, for the most part, rather well commented, so if all
else fails, you can try reading it.</li>
</ul>
</body>
</html>