brandon-codex 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +18 -0
- data/LICENSE.txt +29 -0
- data/Manifest.txt +105 -0
- data/PostInstall.txt +5 -0
- data/README.txt +31 -0
- data/Rakefile +6 -0
- data/app_generators/codex/USAGE +5 -0
- data/app_generators/codex/codex_generator.rb +109 -0
- data/app_generators/codex/templates/Rakefile +59 -0
- data/app_generators/codex/templates/bin/build_all.rb +47 -0
- data/app_generators/codex/templates/bin/postprocess_all.rb +5 -0
- data/app_generators/codex/templates/bin/pressie.rb +10 -0
- data/app_generators/codex/templates/code/control/basic_continuation.rb +11 -0
- data/app_generators/codex/templates/code/control/cc_throw_catch.rb +59 -0
- data/app_generators/codex/templates/code/control/closure_continuation.rb +8 -0
- data/app_generators/codex/templates/code/control/closure_continuation_2.rb +12 -0
- data/app_generators/codex/templates/content/basics.textile +37 -0
- data/app_generators/codex/templates/content/building.textile +27 -0
- data/app_generators/codex/templates/content/example.textile +80 -0
- data/app_generators/codex/templates/content/including_code.textile +80 -0
- data/app_generators/codex/templates/content/including_tex.textile +31 -0
- data/app_generators/codex/templates/content/metadata.yml +4 -0
- data/app_generators/codex/templates/content/table_of_contents.textile +20 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/CSS.html +115 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/CSharp.html +134 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/CollapseCode.html +90 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Cpp.html +190 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/CrashTest.html +108 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Delphi.html +112 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/FirstLine.html +90 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Index.html +80 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Java.html +122 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/JavaScript.html +112 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/NoControls.html +89 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/NoGutter.html +89 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/PHP.html +102 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Python.html +121 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Ruby.html +131 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/SQL.html +98 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/clipboard.swf +0 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushCSharp.js +32 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushCpp.js +73 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushCss.js +52 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushDelphi.js +34 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushJScript.js +22 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushJava.js +28 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushPhp.js +60 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushPython.js +30 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushRuby.js +28 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushSql.js +42 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushVb.js +29 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shBrushXml.js +70 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shCore.js +414 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Scripts/shCore.uncompressed.js +674 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/ShowColumns.html +89 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/SmartTabs.html +88 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Styles/SyntaxHighlighter.css +158 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Styles/TestPages.css +63 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/Templates/Test.dwt +80 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/VB.html +115 -0
- data/app_generators/codex/templates/dp.SyntaxHighlighter/XML.html +136 -0
- data/app_generators/codex/templates/html/all.html +0 -0
- data/app_generators/codex/templates/readme.txt +4 -0
- data/app_generators/codex/templates/ui/default/blank.gif +0 -0
- data/app_generators/codex/templates/ui/default/bodybg.gif +0 -0
- data/app_generators/codex/templates/ui/default/framing.css +23 -0
- data/app_generators/codex/templates/ui/default/iepngfix.htc +42 -0
- data/app_generators/codex/templates/ui/default/opera.css +7 -0
- data/app_generators/codex/templates/ui/default/outline.css +15 -0
- data/app_generators/codex/templates/ui/default/pretty.css +86 -0
- data/app_generators/codex/templates/ui/default/print.css +1 -0
- data/app_generators/codex/templates/ui/default/s5-core.css +9 -0
- data/app_generators/codex/templates/ui/default/slides.css +3 -0
- data/app_generators/codex/templates/ui/default/slides.js +553 -0
- data/bin/codex +17 -0
- data/codex.gemspec +30 -0
- data/config/hoe.rb +76 -0
- data/config/requirements.rb +15 -0
- data/lib/codex.rb +23 -0
- data/lib/codex/content.rb +27 -0
- data/lib/codex/pressie.rb +108 -0
- data/lib/codex/version.rb +9 -0
- data/lib/stylesheets/pressie.css +196 -0
- data/lib/stylesheets/print.css +149 -0
- data/lib/stylesheets/ruby.png +0 -0
- data/script/console +10 -0
- data/script/destroy +14 -0
- data/script/generate +14 -0
- data/setup.rb +1585 -0
- data/tasks/deployment.rake +34 -0
- data/tasks/environment.rake +7 -0
- data/tasks/website.rake +9 -0
- data/test/test_codex.rb +11 -0
- data/test/test_codex_generator.rb +78 -0
- data/test/test_generator_helper.rb +29 -0
- data/test/test_helper.rb +3 -0
- metadata +164 -0
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Test.dwt" codeOutsideHTMLIsLocked="false" -->
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
5
|
+
<title>dp.SyntaxHighlighter Tests</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="Styles/SyntaxHighlighter.css"></link>
|
|
7
|
+
<link href="Styles/TestPages.css" rel="stylesheet" type="text/css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
|
|
12
|
+
<h1>dp.SyntaxHighlighter 1.5.0 Tests and Samples</h1>
|
|
13
|
+
<p><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></p>
|
|
14
|
+
|
|
15
|
+
<h2><!-- InstanceBeginEditable name="Title" -->Delphi<!-- InstanceEndEditable --></h2>
|
|
16
|
+
|
|
17
|
+
<div class="layout">
|
|
18
|
+
|
|
19
|
+
<div class="column1">
|
|
20
|
+
<h3>Languages:</h3>
|
|
21
|
+
<ol>
|
|
22
|
+
<li><a href="CSharp.html">C#</a></li>
|
|
23
|
+
<li><a href="CSS.html">CSS</a></li>
|
|
24
|
+
<li><a href="Cpp.html">C++</a></li>
|
|
25
|
+
<li><a href="Delphi.html">Delphi</a></li>
|
|
26
|
+
<li><a href="Java.html">Java</a></li>
|
|
27
|
+
<li><a href="JavaScript.html">JavaScript</a></li>
|
|
28
|
+
<li><a href="PHP.html">PHP</a></li>
|
|
29
|
+
<li><a href="Python.html">Python</a></li>
|
|
30
|
+
<li><a href="Ruby.html">Ruby</a></li>
|
|
31
|
+
<li><a href="SQL.html">SQL</a></li>
|
|
32
|
+
<li><a href="VB.html">Visual Basic</a></li>
|
|
33
|
+
<li><a href="XML.html">XML / HTML</a></li>
|
|
34
|
+
</ol>
|
|
35
|
+
<h3>Features:</h3>
|
|
36
|
+
<ol>
|
|
37
|
+
<li><a href="SmartTabs.html">Smart tabs</a></li>
|
|
38
|
+
<li><a href="FirstLine.html">First line</a> </li>
|
|
39
|
+
<li><a href="CollapseCode.html">Expand code</a></li>
|
|
40
|
+
<li><a href="ShowColumns.html">Show columns</a></li>
|
|
41
|
+
<li><a href="NoGutter.html">No gutter</a></li>
|
|
42
|
+
<li><a href="NoControls.html">No controls</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="column2">
|
|
47
|
+
Text body before.
|
|
48
|
+
<hr/>
|
|
49
|
+
<!-- InstanceBeginEditable name="Code" -->
|
|
50
|
+
<pre name="code" class="delphi">
|
|
51
|
+
{$IFDEF VER140}
|
|
52
|
+
(***********************************
|
|
53
|
+
** Multiline block comments
|
|
54
|
+
**********************************)
|
|
55
|
+
procedure TForm1.Button1Click(Sender: TObject);
|
|
56
|
+
var
|
|
57
|
+
Number, I, X: Integer;
|
|
58
|
+
Y: Integer;
|
|
59
|
+
begin
|
|
60
|
+
str := 'http://blog.dreamprojections.com';
|
|
61
|
+
|
|
62
|
+
Number := 12356;
|
|
63
|
+
Caption := 'The Number is ' + IntToStr(Number);
|
|
64
|
+
for I := 0 to Number do
|
|
65
|
+
begin
|
|
66
|
+
Inc(X);
|
|
67
|
+
{
|
|
68
|
+
Dec(X);
|
|
69
|
+
X := X * 1.0;
|
|
70
|
+
}
|
|
71
|
+
Y := $F5D3;
|
|
72
|
+
ListBox1.Items.Add(IntToStr(X));
|
|
73
|
+
|
|
74
|
+
(*
|
|
75
|
+
ShowMessage('Hello'); *)
|
|
76
|
+
end;
|
|
77
|
+
asm
|
|
78
|
+
MOV AX,1234H
|
|
79
|
+
// MOV Number,AX
|
|
80
|
+
end;
|
|
81
|
+
end;
|
|
82
|
+
</pre>
|
|
83
|
+
<!-- InstanceEndEditable -->
|
|
84
|
+
<hr/>
|
|
85
|
+
Text body after.
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
<div class="footer">
|
|
90
|
+
Copyright 2004-2007 Alex Gorbatchev.<br/>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
<script class="javascript" src="Scripts/shCore.js"></script>
|
|
94
|
+
<script class="javascript" src="Scripts/shBrushCSharp.js"></script>
|
|
95
|
+
<script class="javascript" src="Scripts/shBrushPhp.js"></script>
|
|
96
|
+
<script class="javascript" src="Scripts/shBrushJScript.js"></script>
|
|
97
|
+
<script class="javascript" src="Scripts/shBrushJava.js"></script>
|
|
98
|
+
<script class="javascript" src="Scripts/shBrushVb.js"></script>
|
|
99
|
+
<script class="javascript" src="Scripts/shBrushSql.js"></script>
|
|
100
|
+
<script class="javascript" src="Scripts/shBrushXml.js"></script>
|
|
101
|
+
<script class="javascript" src="Scripts/shBrushDelphi.js"></script>
|
|
102
|
+
<script class="javascript" src="Scripts/shBrushPython.js"></script>
|
|
103
|
+
<script class="javascript" src="Scripts/shBrushRuby.js"></script>
|
|
104
|
+
<script class="javascript" src="Scripts/shBrushCss.js"></script>
|
|
105
|
+
<script class="javascript" src="Scripts/shBrushCpp.js"></script>
|
|
106
|
+
<script class="javascript">
|
|
107
|
+
dp.SyntaxHighlighter.ClipboardSwf = 'Scripts/clipboard.swf';
|
|
108
|
+
dp.SyntaxHighlighter.HighlightAll('code');
|
|
109
|
+
</script>
|
|
110
|
+
|
|
111
|
+
</body>
|
|
112
|
+
<!-- InstanceEnd --></html>
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Test.dwt" codeOutsideHTMLIsLocked="false" -->
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
5
|
+
<title>dp.SyntaxHighlighter Tests</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="Styles/SyntaxHighlighter.css"></link>
|
|
7
|
+
<link href="Styles/TestPages.css" rel="stylesheet" type="text/css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
|
|
12
|
+
<h1>dp.SyntaxHighlighter 1.5.0 Tests and Samples</h1>
|
|
13
|
+
<p><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></p>
|
|
14
|
+
|
|
15
|
+
<h2><!-- InstanceBeginEditable name="Title" -->First Line<!-- InstanceEndEditable --></h2>
|
|
16
|
+
|
|
17
|
+
<div class="layout">
|
|
18
|
+
|
|
19
|
+
<div class="column1">
|
|
20
|
+
<h3>Languages:</h3>
|
|
21
|
+
<ol>
|
|
22
|
+
<li><a href="CSharp.html">C#</a></li>
|
|
23
|
+
<li><a href="CSS.html">CSS</a></li>
|
|
24
|
+
<li><a href="Cpp.html">C++</a></li>
|
|
25
|
+
<li><a href="Delphi.html">Delphi</a></li>
|
|
26
|
+
<li><a href="Java.html">Java</a></li>
|
|
27
|
+
<li><a href="JavaScript.html">JavaScript</a></li>
|
|
28
|
+
<li><a href="PHP.html">PHP</a></li>
|
|
29
|
+
<li><a href="Python.html">Python</a></li>
|
|
30
|
+
<li><a href="Ruby.html">Ruby</a></li>
|
|
31
|
+
<li><a href="SQL.html">SQL</a></li>
|
|
32
|
+
<li><a href="VB.html">Visual Basic</a></li>
|
|
33
|
+
<li><a href="XML.html">XML / HTML</a></li>
|
|
34
|
+
</ol>
|
|
35
|
+
<h3>Features:</h3>
|
|
36
|
+
<ol>
|
|
37
|
+
<li><a href="SmartTabs.html">Smart tabs</a></li>
|
|
38
|
+
<li><a href="FirstLine.html">First line</a> </li>
|
|
39
|
+
<li><a href="CollapseCode.html">Expand code</a></li>
|
|
40
|
+
<li><a href="ShowColumns.html">Show columns</a></li>
|
|
41
|
+
<li><a href="NoGutter.html">No gutter</a></li>
|
|
42
|
+
<li><a href="NoControls.html">No controls</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="column2">
|
|
47
|
+
Text body before.
|
|
48
|
+
<hr/>
|
|
49
|
+
<!-- InstanceBeginEditable name="Code" -->
|
|
50
|
+
|
|
51
|
+
<p>You can change the starting line number by adding <code>firstline[#]</code>.</p>
|
|
52
|
+
<p><code><textarea name="code" class="c#:firstline[42]" rows="15" cols="100"></code></p>
|
|
53
|
+
|
|
54
|
+
<pre name="code" class="c-sharp:firstline[42]">
|
|
55
|
+
1 2 3 4 5 6 7 8 9
|
|
56
|
+
string path = "";
|
|
57
|
+
string safeReferrer = null;
|
|
58
|
+
FileInfo fileInfo = new FileInfo(string.Format("{0}/{1}", path, image));
|
|
59
|
+
int index = 0;
|
|
60
|
+
</pre>
|
|
61
|
+
<!-- InstanceEndEditable -->
|
|
62
|
+
<hr/>
|
|
63
|
+
Text body after.
|
|
64
|
+
</div>
|
|
65
|
+
</div>
|
|
66
|
+
|
|
67
|
+
<div class="footer">
|
|
68
|
+
Copyright 2004-2007 Alex Gorbatchev.<br/>
|
|
69
|
+
</div>
|
|
70
|
+
|
|
71
|
+
<script class="javascript" src="Scripts/shCore.js"></script>
|
|
72
|
+
<script class="javascript" src="Scripts/shBrushCSharp.js"></script>
|
|
73
|
+
<script class="javascript" src="Scripts/shBrushPhp.js"></script>
|
|
74
|
+
<script class="javascript" src="Scripts/shBrushJScript.js"></script>
|
|
75
|
+
<script class="javascript" src="Scripts/shBrushJava.js"></script>
|
|
76
|
+
<script class="javascript" src="Scripts/shBrushVb.js"></script>
|
|
77
|
+
<script class="javascript" src="Scripts/shBrushSql.js"></script>
|
|
78
|
+
<script class="javascript" src="Scripts/shBrushXml.js"></script>
|
|
79
|
+
<script class="javascript" src="Scripts/shBrushDelphi.js"></script>
|
|
80
|
+
<script class="javascript" src="Scripts/shBrushPython.js"></script>
|
|
81
|
+
<script class="javascript" src="Scripts/shBrushRuby.js"></script>
|
|
82
|
+
<script class="javascript" src="Scripts/shBrushCss.js"></script>
|
|
83
|
+
<script class="javascript" src="Scripts/shBrushCpp.js"></script>
|
|
84
|
+
<script class="javascript">
|
|
85
|
+
dp.SyntaxHighlighter.ClipboardSwf = 'Scripts/clipboard.swf';
|
|
86
|
+
dp.SyntaxHighlighter.HighlightAll('code');
|
|
87
|
+
</script>
|
|
88
|
+
|
|
89
|
+
</body>
|
|
90
|
+
<!-- InstanceEnd --></html>
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Test.dwt" codeOutsideHTMLIsLocked="false" -->
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
5
|
+
<title>dp.SyntaxHighlighter Tests</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="Styles/SyntaxHighlighter.css"></link>
|
|
7
|
+
<link href="Styles/TestPages.css" rel="stylesheet" type="text/css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
|
|
12
|
+
<h1>dp.SyntaxHighlighter 1.5.0 Tests and Samples</h1>
|
|
13
|
+
<p><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></p>
|
|
14
|
+
|
|
15
|
+
<h2><!-- InstanceBeginEditable name="Title" -->About<!-- InstanceEndEditable --></h2>
|
|
16
|
+
|
|
17
|
+
<div class="layout">
|
|
18
|
+
|
|
19
|
+
<div class="column1">
|
|
20
|
+
<h3>Languages:</h3>
|
|
21
|
+
<ol>
|
|
22
|
+
<li><a href="CSharp.html">C#</a></li>
|
|
23
|
+
<li><a href="CSS.html">CSS</a></li>
|
|
24
|
+
<li><a href="Cpp.html">C++</a></li>
|
|
25
|
+
<li><a href="Delphi.html">Delphi</a></li>
|
|
26
|
+
<li><a href="Java.html">Java</a></li>
|
|
27
|
+
<li><a href="JavaScript.html">JavaScript</a></li>
|
|
28
|
+
<li><a href="PHP.html">PHP</a></li>
|
|
29
|
+
<li><a href="Python.html">Python</a></li>
|
|
30
|
+
<li><a href="Ruby.html">Ruby</a></li>
|
|
31
|
+
<li><a href="SQL.html">SQL</a></li>
|
|
32
|
+
<li><a href="VB.html">Visual Basic</a></li>
|
|
33
|
+
<li><a href="XML.html">XML / HTML</a></li>
|
|
34
|
+
</ol>
|
|
35
|
+
<h3>Features:</h3>
|
|
36
|
+
<ol>
|
|
37
|
+
<li><a href="SmartTabs.html">Smart tabs</a></li>
|
|
38
|
+
<li><a href="FirstLine.html">First line</a> </li>
|
|
39
|
+
<li><a href="CollapseCode.html">Expand code</a></li>
|
|
40
|
+
<li><a href="ShowColumns.html">Show columns</a></li>
|
|
41
|
+
<li><a href="NoGutter.html">No gutter</a></li>
|
|
42
|
+
<li><a href="NoControls.html">No controls</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="column2">
|
|
47
|
+
Text body before.
|
|
48
|
+
<hr/>
|
|
49
|
+
<!-- InstanceBeginEditable name="Code" -->
|
|
50
|
+
This is the test suite for dp.SyntaxHighlighter JavaScript.
|
|
51
|
+
<!-- InstanceEndEditable -->
|
|
52
|
+
<hr/>
|
|
53
|
+
Text body after.
|
|
54
|
+
</div>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<div class="footer">
|
|
58
|
+
Copyright 2004-2007 Alex Gorbatchev.<br/>
|
|
59
|
+
</div>
|
|
60
|
+
|
|
61
|
+
<script class="javascript" src="Scripts/shCore.js"></script>
|
|
62
|
+
<script class="javascript" src="Scripts/shBrushCSharp.js"></script>
|
|
63
|
+
<script class="javascript" src="Scripts/shBrushPhp.js"></script>
|
|
64
|
+
<script class="javascript" src="Scripts/shBrushJScript.js"></script>
|
|
65
|
+
<script class="javascript" src="Scripts/shBrushJava.js"></script>
|
|
66
|
+
<script class="javascript" src="Scripts/shBrushVb.js"></script>
|
|
67
|
+
<script class="javascript" src="Scripts/shBrushSql.js"></script>
|
|
68
|
+
<script class="javascript" src="Scripts/shBrushXml.js"></script>
|
|
69
|
+
<script class="javascript" src="Scripts/shBrushDelphi.js"></script>
|
|
70
|
+
<script class="javascript" src="Scripts/shBrushPython.js"></script>
|
|
71
|
+
<script class="javascript" src="Scripts/shBrushRuby.js"></script>
|
|
72
|
+
<script class="javascript" src="Scripts/shBrushCss.js"></script>
|
|
73
|
+
<script class="javascript" src="Scripts/shBrushCpp.js"></script>
|
|
74
|
+
<script class="javascript">
|
|
75
|
+
dp.SyntaxHighlighter.ClipboardSwf = 'Scripts/clipboard.swf';
|
|
76
|
+
dp.SyntaxHighlighter.HighlightAll('code');
|
|
77
|
+
</script>
|
|
78
|
+
|
|
79
|
+
</body>
|
|
80
|
+
<!-- InstanceEnd --></html>
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Test.dwt" codeOutsideHTMLIsLocked="false" -->
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
5
|
+
<title>dp.SyntaxHighlighter Tests</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="Styles/SyntaxHighlighter.css"></link>
|
|
7
|
+
<link href="Styles/TestPages.css" rel="stylesheet" type="text/css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
|
|
12
|
+
<h1>dp.SyntaxHighlighter 1.5.0 Tests and Samples</h1>
|
|
13
|
+
<p><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></p>
|
|
14
|
+
|
|
15
|
+
<h2><!-- InstanceBeginEditable name="Title" -->Java<!-- InstanceEndEditable --></h2>
|
|
16
|
+
|
|
17
|
+
<div class="layout">
|
|
18
|
+
|
|
19
|
+
<div class="column1">
|
|
20
|
+
<h3>Languages:</h3>
|
|
21
|
+
<ol>
|
|
22
|
+
<li><a href="CSharp.html">C#</a></li>
|
|
23
|
+
<li><a href="CSS.html">CSS</a></li>
|
|
24
|
+
<li><a href="Cpp.html">C++</a></li>
|
|
25
|
+
<li><a href="Delphi.html">Delphi</a></li>
|
|
26
|
+
<li><a href="Java.html">Java</a></li>
|
|
27
|
+
<li><a href="JavaScript.html">JavaScript</a></li>
|
|
28
|
+
<li><a href="PHP.html">PHP</a></li>
|
|
29
|
+
<li><a href="Python.html">Python</a></li>
|
|
30
|
+
<li><a href="Ruby.html">Ruby</a></li>
|
|
31
|
+
<li><a href="SQL.html">SQL</a></li>
|
|
32
|
+
<li><a href="VB.html">Visual Basic</a></li>
|
|
33
|
+
<li><a href="XML.html">XML / HTML</a></li>
|
|
34
|
+
</ol>
|
|
35
|
+
<h3>Features:</h3>
|
|
36
|
+
<ol>
|
|
37
|
+
<li><a href="SmartTabs.html">Smart tabs</a></li>
|
|
38
|
+
<li><a href="FirstLine.html">First line</a> </li>
|
|
39
|
+
<li><a href="CollapseCode.html">Expand code</a></li>
|
|
40
|
+
<li><a href="ShowColumns.html">Show columns</a></li>
|
|
41
|
+
<li><a href="NoGutter.html">No gutter</a></li>
|
|
42
|
+
<li><a href="NoControls.html">No controls</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="column2">
|
|
47
|
+
Text body before.
|
|
48
|
+
<hr/>
|
|
49
|
+
<!-- InstanceBeginEditable name="Code" -->
|
|
50
|
+
<pre name="code" class="java">
|
|
51
|
+
package us.prokhorenko.jx;
|
|
52
|
+
import us.prokhorenko.jx.Person;
|
|
53
|
+
import org.exolab.castor.xml.*;
|
|
54
|
+
import java.io.*;
|
|
55
|
+
import java.util.*;
|
|
56
|
+
|
|
57
|
+
public class Test {
|
|
58
|
+
public static void main(String args[]) {
|
|
59
|
+
try {
|
|
60
|
+
/***********************************
|
|
61
|
+
** Multiline block comments
|
|
62
|
+
**********************************/
|
|
63
|
+
|
|
64
|
+
string stringWithUrl1 = "http://blog.dreamprojections.com";
|
|
65
|
+
|
|
66
|
+
// Marshalling class to XML
|
|
67
|
+
|
|
68
|
+
// Create the Person class
|
|
69
|
+
Person person = new Person("Mr. White", "mr@white", "626-555-1234");
|
|
70
|
+
|
|
71
|
+
// Marshal and save to XML file
|
|
72
|
+
FileWriter file = new FileWriter("person.xml");
|
|
73
|
+
Marshaller m = new Marshaller(file);
|
|
74
|
+
m.marshal(person);
|
|
75
|
+
file.close();
|
|
76
|
+
|
|
77
|
+
// Unmarshalling XML to class
|
|
78
|
+
|
|
79
|
+
// Read from XML and unmarshal
|
|
80
|
+
FileReader uFile = new FileReader("person.xml");
|
|
81
|
+
Unmarshaller u = new Unmarshaller();
|
|
82
|
+
Person uPerson = (Person)u.unmarshal(Person.class, uFile);
|
|
83
|
+
|
|
84
|
+
// Show name and email
|
|
85
|
+
System.out.println("name: " + uPerson.getName());
|
|
86
|
+
System.out.println("email: " + uPerson.getEmail());
|
|
87
|
+
} catch (Exception e) {
|
|
88
|
+
e.printStackTrace();
|
|
89
|
+
}
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
</pre>
|
|
93
|
+
<!-- InstanceEndEditable -->
|
|
94
|
+
<hr/>
|
|
95
|
+
Text body after.
|
|
96
|
+
</div>
|
|
97
|
+
</div>
|
|
98
|
+
|
|
99
|
+
<div class="footer">
|
|
100
|
+
Copyright 2004-2007 Alex Gorbatchev.<br/>
|
|
101
|
+
</div>
|
|
102
|
+
|
|
103
|
+
<script class="javascript" src="Scripts/shCore.js"></script>
|
|
104
|
+
<script class="javascript" src="Scripts/shBrushCSharp.js"></script>
|
|
105
|
+
<script class="javascript" src="Scripts/shBrushPhp.js"></script>
|
|
106
|
+
<script class="javascript" src="Scripts/shBrushJScript.js"></script>
|
|
107
|
+
<script class="javascript" src="Scripts/shBrushJava.js"></script>
|
|
108
|
+
<script class="javascript" src="Scripts/shBrushVb.js"></script>
|
|
109
|
+
<script class="javascript" src="Scripts/shBrushSql.js"></script>
|
|
110
|
+
<script class="javascript" src="Scripts/shBrushXml.js"></script>
|
|
111
|
+
<script class="javascript" src="Scripts/shBrushDelphi.js"></script>
|
|
112
|
+
<script class="javascript" src="Scripts/shBrushPython.js"></script>
|
|
113
|
+
<script class="javascript" src="Scripts/shBrushRuby.js"></script>
|
|
114
|
+
<script class="javascript" src="Scripts/shBrushCss.js"></script>
|
|
115
|
+
<script class="javascript" src="Scripts/shBrushCpp.js"></script>
|
|
116
|
+
<script class="javascript">
|
|
117
|
+
dp.SyntaxHighlighter.ClipboardSwf = 'Scripts/clipboard.swf';
|
|
118
|
+
dp.SyntaxHighlighter.HighlightAll('code');
|
|
119
|
+
</script>
|
|
120
|
+
|
|
121
|
+
</body>
|
|
122
|
+
<!-- InstanceEnd --></html>
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2
|
+
<html xmlns="http://www.w3.org/1999/xhtml"><!-- InstanceBegin template="/Templates/Test.dwt" codeOutsideHTMLIsLocked="false" -->
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
|
5
|
+
<title>dp.SyntaxHighlighter Tests</title>
|
|
6
|
+
<link type="text/css" rel="stylesheet" href="Styles/SyntaxHighlighter.css"></link>
|
|
7
|
+
<link href="Styles/TestPages.css" rel="stylesheet" type="text/css">
|
|
8
|
+
</head>
|
|
9
|
+
|
|
10
|
+
<body>
|
|
11
|
+
|
|
12
|
+
<h1>dp.SyntaxHighlighter 1.5.0 Tests and Samples</h1>
|
|
13
|
+
<p><a href="http://code.google.com/p/syntaxhighlighter/">http://code.google.com/p/syntaxhighlighter/</a></p>
|
|
14
|
+
|
|
15
|
+
<h2><!-- InstanceBeginEditable name="Title" -->JavaScript<!-- InstanceEndEditable --></h2>
|
|
16
|
+
|
|
17
|
+
<div class="layout">
|
|
18
|
+
|
|
19
|
+
<div class="column1">
|
|
20
|
+
<h3>Languages:</h3>
|
|
21
|
+
<ol>
|
|
22
|
+
<li><a href="CSharp.html">C#</a></li>
|
|
23
|
+
<li><a href="CSS.html">CSS</a></li>
|
|
24
|
+
<li><a href="Cpp.html">C++</a></li>
|
|
25
|
+
<li><a href="Delphi.html">Delphi</a></li>
|
|
26
|
+
<li><a href="Java.html">Java</a></li>
|
|
27
|
+
<li><a href="JavaScript.html">JavaScript</a></li>
|
|
28
|
+
<li><a href="PHP.html">PHP</a></li>
|
|
29
|
+
<li><a href="Python.html">Python</a></li>
|
|
30
|
+
<li><a href="Ruby.html">Ruby</a></li>
|
|
31
|
+
<li><a href="SQL.html">SQL</a></li>
|
|
32
|
+
<li><a href="VB.html">Visual Basic</a></li>
|
|
33
|
+
<li><a href="XML.html">XML / HTML</a></li>
|
|
34
|
+
</ol>
|
|
35
|
+
<h3>Features:</h3>
|
|
36
|
+
<ol>
|
|
37
|
+
<li><a href="SmartTabs.html">Smart tabs</a></li>
|
|
38
|
+
<li><a href="FirstLine.html">First line</a> </li>
|
|
39
|
+
<li><a href="CollapseCode.html">Expand code</a></li>
|
|
40
|
+
<li><a href="ShowColumns.html">Show columns</a></li>
|
|
41
|
+
<li><a href="NoGutter.html">No gutter</a></li>
|
|
42
|
+
<li><a href="NoControls.html">No controls</a></li>
|
|
43
|
+
</ol>
|
|
44
|
+
</div>
|
|
45
|
+
|
|
46
|
+
<div class="column2">
|
|
47
|
+
Text body before.
|
|
48
|
+
<hr/>
|
|
49
|
+
<!-- InstanceBeginEditable name="Code" -->
|
|
50
|
+
<pre name="code" class="js">
|
|
51
|
+
/***********************************
|
|
52
|
+
** Multiline block comments
|
|
53
|
+
**********************************/
|
|
54
|
+
|
|
55
|
+
// Hang test � partir de l`idagence / id type publication ``````
|
|
56
|
+
|
|
57
|
+
var stringWithUrl1 = "http://blog.dreamprojections.com";
|
|
58
|
+
var stringWithUrl2 = 'http://www.dreamprojections.com';
|
|
59
|
+
|
|
60
|
+
// callback for the match sorting
|
|
61
|
+
dpSyntaxHighlighter.prototype.SortCallback = function(m1, m2)
|
|
62
|
+
{
|
|
63
|
+
// sort matches by index first
|
|
64
|
+
if(m1.index < m2.index)
|
|
65
|
+
return -1;
|
|
66
|
+
else if(m1.index > m2.index)
|
|
67
|
+
return 1;
|
|
68
|
+
else
|
|
69
|
+
{
|
|
70
|
+
/*
|
|
71
|
+
// if index is the same, sort by length
|
|
72
|
+
if(m1.length < m2.length)
|
|
73
|
+
return -1;
|
|
74
|
+
else if(m1.length > m2.length)
|
|
75
|
+
return 1;
|
|
76
|
+
*/
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
alert('hello // world');
|
|
80
|
+
return 0;
|
|
81
|
+
}
|
|
82
|
+
</pre>
|
|
83
|
+
<!-- InstanceEndEditable -->
|
|
84
|
+
<hr/>
|
|
85
|
+
Text body after.
|
|
86
|
+
</div>
|
|
87
|
+
</div>
|
|
88
|
+
|
|
89
|
+
<div class="footer">
|
|
90
|
+
Copyright 2004-2007 Alex Gorbatchev.<br/>
|
|
91
|
+
</div>
|
|
92
|
+
|
|
93
|
+
<script class="javascript" src="Scripts/shCore.js"></script>
|
|
94
|
+
<script class="javascript" src="Scripts/shBrushCSharp.js"></script>
|
|
95
|
+
<script class="javascript" src="Scripts/shBrushPhp.js"></script>
|
|
96
|
+
<script class="javascript" src="Scripts/shBrushJScript.js"></script>
|
|
97
|
+
<script class="javascript" src="Scripts/shBrushJava.js"></script>
|
|
98
|
+
<script class="javascript" src="Scripts/shBrushVb.js"></script>
|
|
99
|
+
<script class="javascript" src="Scripts/shBrushSql.js"></script>
|
|
100
|
+
<script class="javascript" src="Scripts/shBrushXml.js"></script>
|
|
101
|
+
<script class="javascript" src="Scripts/shBrushDelphi.js"></script>
|
|
102
|
+
<script class="javascript" src="Scripts/shBrushPython.js"></script>
|
|
103
|
+
<script class="javascript" src="Scripts/shBrushRuby.js"></script>
|
|
104
|
+
<script class="javascript" src="Scripts/shBrushCss.js"></script>
|
|
105
|
+
<script class="javascript" src="Scripts/shBrushCpp.js"></script>
|
|
106
|
+
<script class="javascript">
|
|
107
|
+
dp.SyntaxHighlighter.ClipboardSwf = 'Scripts/clipboard.swf';
|
|
108
|
+
dp.SyntaxHighlighter.HighlightAll('code');
|
|
109
|
+
</script>
|
|
110
|
+
|
|
111
|
+
</body>
|
|
112
|
+
<!-- InstanceEnd --></html>
|