-
Notifications
You must be signed in to change notification settings - Fork 63
/
index.html
159 lines (125 loc) · 7.2 KB
/
index.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CodeMirror</title>
<link rel="stylesheet" type="text/css" href="css/docs.css"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<link rel="alternate" href="http://twitter.com/statuses/user_timeline/242283288.rss" type="application/rss+xml"/>
</head>
<body>
<h1><span class="logo-braces">{ }</span> <a href="http://codemirror.net/">CodeMirror</a></h1>
<pre class="grey">
<img src="css/baboon.png" class="logo" alt="logo"/>/* In-browser code editing
made bearable */
</pre>
<div class="clear"><div class="left blk">
<p style="margin-top: 0">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>
<div class="clear"><div class="left1 blk">
<h2 style="margin-top: 0">Try the parser test pages:</h2>
<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="mixedtest.html">HTML mixed-mode</a></li>
<li><a href="sparqltest.html">SPARQL</a></li>
<li><a href="contrib/php/index.html">HTML+PHP mixed-mode</a></li>
<li><a href="contrib/python/index.html">Python</a></li>
<li><a href="contrib/lua/index.html">Lua</a></li>
<li><a href="http://github.com/hakunin/ruby-in-codemirror/tree/master">Ruby</a> (unfinished)</li>
<li><a href="contrib/sql/index.html">SQL</a></li>
<li><a href="contrib/plsql/index.html">PLSQL</a></li>
<li><a href="http://www.liranuna.com/diff-parser-for-codemirror/">diff</a></li>
<li><a href="contrib/groovy/index.html">Groovy</a></li>
<li><a href="contrib/csharp/index.html">C#</a></li>
<li><a href="contrib/scheme/index.html">Scheme</a></li>
<li><a href="contrib/java/index.html">Java</a></li>
<li><a href="contrib/xquery/index.html">XQuery</a></li>
<li><a href="contrib/ometa/index.html">OmetaJS</a></li>
<li><a href="contrib/freemarker/index.html">Freemarker</a></li>
<li><a href="contrib/regex/index.html">Regular Expressions</a></li>
</ul>
</div><div class="left2 blk">
<h2 style="margin-top: 0">Some real-world uses:</h2>
<ul>
<li><a href="http://code.google.com/p/testing-codemirror-integration/source/browse/file.js?r=default&edit=1">Google Code's in-browser patching</a></li>
<li><a href="http://movelang.org/try/">Interactive environment for the Move language</a></li>
<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://craic.com/tutorials/javascript/raphael_live/raphael_live.html">Raphaël Live</a></li>
<li><a href="http://jsbin.com/">JS Bin</a></li>
<li><a href="http://www.rockettheme.com/extensions-joomla/rokpad">The RokPad plugin for Joomla</a></li>
<li><a href="http://scraperwiki.com/editor/">The scraperwiki editor</a></li>
<li><a href="http://www.linb.net/VisualJS/UIBuilder.html">jsLinb UI Builder</a></li>
<li><a href="http://code.google.com/p/zk-codemirror/">ZK CodeMirror component</a> (<a href="http://www.jease.org/codemirror/">demo</a>)</li>
<li><a href="http://zen-coding.ru/codemirror/">'Zen Coding' on top of CodeMirror</a></li>
<li><a href="http://demo.mywebsql.net/">Web-based MySQL administration</a></li>
</ul>
</div></div>
<h2 id="supported">Supported browsers</h2>
<p>The following browsers are able to run CodeMirror:</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>I am not actively testing against every new browser release, and
vendors have a habit of introducing bugs all the time, so I am
relying on the community to tell me when something breaks. See <a
href="#support">below</a> for information on how to contact me.</p>
<h2 id="code">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://codemirror.net/codemirror.zip">latest
release</a> or the current <a
href="http://codemirror.net/codemirror-latest.zip">development
snapshot</a> as zip files. To create a custom minified script file,
you can use the <a href="compress.html">compression API</a>.</p>
<p>We use <a href="http://git-scm.com/">git</a> for version control.
The main repository can be fetched in this way:</p>
<pre class="code">git clone http://marijnhaverbeke.nl/git/codemirror</pre>
<p>CodeMirror can also be found on GitHub: <a
href="http://github.com/marijnh/CodeMirror">http://github.com/marijnh/CodeMirror</a>.
If you plan to hack on the code and contribute patches, the best way
to do it is to create a GitHub fork, and send pull requests.</p>
<h2 id="documention">Documentation</h2>
<p>The <a href="manual.html">manual</a> is your first stop for
learning how to use this library. It starts with a quick explanation
of how to use the editor, and then describes all of the (many)
options and methods that CodeMirror exposes.</p>
<p>For those who want to learn more about the code, <a
href="story.html">this document</a> about CodeMirror's architecture
will be useful. The <a
href="http://github.com/marijnh/CodeMirror">source code</a> itself
is, for the most part, also very well commented.</p>
<h2 id="support">Support</h2>
<p>There is a <a
href="http://groups.google.com/group/codemirror">Google group</a> (a
sort of mailing list/newsgroup thing) for discussion and news
related to CodeMirror. Please check the <a href="faq.html">FAQ</a>
before asking a question. You can also e-mail me directly: <a
href="mailto:[email protected]">Marijn Haverbeke</a>.</p>
</div>
<div class="right blk">
<a href="http://codemirror.net/" class="download">Current project page</a>
<p class="rel-note">This is the old CodeMirror 1 project page. For new releases and
events, see <a href="http://codemirror.net/">CodeMirror 2</a>.</p>
</div></div>
<div style="height: 2em"> </div>
<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>
<script type="text/javascript" src="css/font.js"></script>
</body>
</html>