├── examples ├── donate.gif ├── config.php ├── XXX │ └── index.php ├── index.php └── index.css ├── shared ├── SyntaxHighlighter │ ├── styles │ │ ├── help.png │ │ ├── printer.png │ │ ├── magnifier.png │ │ ├── wrapping.png │ │ ├── page_white_code.png │ │ ├── page_white_copy.png │ │ ├── shThemeEmacs.css │ │ ├── shThemeMidnight.css │ │ ├── shThemeDjango.css │ │ ├── shThemeRDark.css │ │ ├── shThemeFadeToGrey.css │ │ ├── shThemeDefault.css │ │ └── shCore.css │ ├── scripts │ │ ├── clipboard.swf │ │ ├── shBrushPlain.js │ │ ├── shBrushDiff.js │ │ ├── shBrushJScript.js │ │ ├── shBrushPython.js │ │ ├── shBrushScala.js │ │ ├── shBrushJava.js │ │ ├── shBrushXml.js │ │ ├── shBrushRuby.js │ │ ├── shLegacy.js │ │ ├── shBrushJavaFX.js │ │ ├── shBrushCSharp.js │ │ ├── shBrushVb.js │ │ ├── shBrushDelphi.js │ │ ├── shBrushAS3.js │ │ ├── shBrushBash.js │ │ ├── shBrushGroovy.js │ │ ├── shBrushSql.js │ │ ├── shBrushPerl.js │ │ ├── shBrushPowerShell.js │ │ ├── shBrushPhp.js │ │ ├── shBrushCpp.js │ │ ├── shBrushCss.js │ │ └── shCore.js │ ├── test.html │ ├── src │ │ └── shLegacy.js │ └── LGPLv3.txt └── ba-debug.js ├── unit ├── unit.js ├── jquery-1.3.2.html ├── index.html └── qunit.css ├── LICENSE-MIT ├── package.json ├── README.markdown ├── jquery.ba-XXX.js └── LICENSE-GPL /examples/donate.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/examples/donate.gif -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/help.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/printer.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/scripts/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/scripts/clipboard.swf -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/magnifier.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/wrapping.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/page_white_code.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/jquery-plugin/HEAD/shared/SyntaxHighlighter/styles/page_white_copy.png -------------------------------------------------------------------------------- /unit/unit.js: -------------------------------------------------------------------------------- 1 | // Not sure why this isn't set by default in qunit.js.. 2 | QUnit.jsDump.HTML = false; 3 | 4 | $(function(){ // START CLOSURE 5 | 6 | $('#jq_version').html( $.fn.jquery ); 7 | 8 | 9 | module( 'foo' ); 10 | 11 | test( 'bar', function() { 12 | expect( 1 ); 13 | 14 | var result = 1; 15 | equals( result, 1, 'result should be 1' ); 16 | }); 17 | 18 | 19 | }); // END CLOSURE 20 | -------------------------------------------------------------------------------- /examples/config.php: -------------------------------------------------------------------------------- 1 | 8 | Project Home, 9 | Documentation, 10 | Source 11 | 12 | $shell['h3'] = ob_get_contents(); 13 | ob_end_clean(); 14 | 15 | $shell['jquery'] = 'jquery-1.4.2.js'; 16 | //$shell['jquery'] = 'jquery-1.3.2.js'; 17 | 18 | $shell['shBrush'] = array( 'JScript' ); 19 | 20 | ?> 21 | -------------------------------------------------------------------------------- /unit/jquery-1.3.2.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |23 | These unit tests include jQuery .... To view the unit tests using 24 | jQuery 1.4.2, click here 25 |
26 |23 | These unit tests include jQuery .... To view the unit tests using 24 | jQuery 1.3.2, click here 25 |
26 |73 | With jQuery PLUGIN you can... 74 |
75 | 76 |CONTENT
79 | 80 |85 | = htmlspecialchars( $shell['script'] ); ?> 86 |87 | 88 | 89 | $shell['html_body'] = ob_get_contents(); 90 | ob_end_clean(); 91 | 92 | // ========================================================================== // 93 | // DRAW SHELL 94 | // ========================================================================== // 95 | 96 | draw_shell(); 97 | 98 | ?> 99 | -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |
This is a test file to insure that everything is working well.
35 | 36 |
37 | function test() : String
38 | {
39 | return 10;
40 | }
41 |
42 |
43 |
--------------------------------------------------------------------------------
/shared/SyntaxHighlighter/scripts/shBrushJScript.js:
--------------------------------------------------------------------------------
1 | /**
2 | * SyntaxHighlighter
3 | * http://alexgorbatchev.com/
4 | *
5 | * SyntaxHighlighter is donationware. If you are using it, please donate.
6 | * http://alexgorbatchev.com/wiki/SyntaxHighlighter:Donate
7 | *
8 | * @version
9 | * 2.0.320 (May 03 2009)
10 | *
11 | * @copyright
12 | * Copyright (C) 2004-2009 Alex Gorbatchev.
13 | *
14 | * @license
15 | * This file is part of SyntaxHighlighter.
16 | *
17 | * SyntaxHighlighter is free software: you can redistribute it and/or modify
18 | * it under the terms of the GNU Lesser General Public License as published by
19 | * the Free Software Foundation, either version 3 of the License, or
20 | * (at your option) any later version.
21 | *
22 | * SyntaxHighlighter is distributed in the hope that it will be useful,
23 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 | * GNU General Public License for more details.
26 | *
27 | * You should have received a copy of the GNU General Public License
28 | * along with SyntaxHighlighter. If not, see Your generous donation allows me to continue developing and updating my code!
15 | 21 | 22 |