├── docs ├── nd │ ├── Data │ │ ├── ClassHierarchy.nd │ │ ├── ImageFileInfo.nd │ │ ├── ImageReferenceTable.nd │ │ ├── ConfigFileInfo.nd │ │ ├── PreviousSettings.nd │ │ ├── IndexInfo.nd │ │ ├── PreviousMenuState.nd │ │ ├── FileInfo.nd │ │ └── SymbolTable.nd │ ├── Menu.txt │ ├── Topics.txt │ └── Languages.txt ├── styles │ ├── main.css │ └── 2.css ├── index.html ├── search │ ├── NoResults.html │ ├── FunctionsL.html │ ├── GeneralE.html │ ├── GeneralF.html │ ├── GeneralR.html │ ├── GeneralS.html │ ├── FilesJ.html │ ├── GeneralJ.html │ └── GeneralL.html ├── javascript │ └── searchdata.js ├── index │ ├── Functions.html │ ├── Files.html │ └── General.html └── files │ └── ba-linkify-js.html ├── shared ├── SyntaxHighlighter │ ├── styles │ │ ├── help.png │ │ ├── magnifier.png │ │ ├── printer.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 │ ├── test.html │ ├── src │ │ └── shLegacy.js │ └── LGPLv3.txt └── ba-debug.js ├── examples ├── config.php ├── index.php └── linkify │ └── index.php ├── LICENSE-MIT ├── README.markdown ├── ba-linkify.min.js └── ba-linkify.js /docs/nd/Data/ClassHierarchy.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/nd/Data/ImageFileInfo.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/nd/Data/ImageReferenceTable.nd: -------------------------------------------------------------------------------- 1 | ( -------------------------------------------------------------------------------- /docs/styles/main.css: -------------------------------------------------------------------------------- 1 | @import URL("1.css"); 2 | @import URL("2.css"); 3 | -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- 1 |
-------------------------------------------------------------------------------- /docs/nd/Data/ConfigFileInfo.nd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/docs/nd/Data/ConfigFileInfo.nd -------------------------------------------------------------------------------- /docs/nd/Data/PreviousSettings.nd: -------------------------------------------------------------------------------- 1 | ( /srv/projects/javascript-linkify 1 %/srv/projects/javascript-linkify/docs HTML -------------------------------------------------------------------------------- /docs/nd/Data/IndexInfo.nd: -------------------------------------------------------------------------------- 1 | ( General Function File -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/help.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/magnifier.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/magnifier.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/printer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/printer.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/wrapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/wrapping.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/scripts/clipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/scripts/clipboard.swf -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/page_white_code.png -------------------------------------------------------------------------------- /shared/SyntaxHighlighter/styles/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cowboy/javascript-linkify/master/shared/SyntaxHighlighter/styles/page_white_copy.png -------------------------------------------------------------------------------- /docs/nd/Data/PreviousMenuState.nd: -------------------------------------------------------------------------------- 1 | ( *JavaScript Linkify: Process links in text! ./srv/projects/javascript-linkify/ba-linkify.js Index 2 | Everything general Files file Functions function -------------------------------------------------------------------------------- /docs/nd/Data/FileInfo.nd: -------------------------------------------------------------------------------- 1 | 1.4 2 | JavaScript 3 | /srv/projects/javascript-linkify/ba-linkify.js 1258421513 1 JavaScript Linkify: Process links in text! 4 | /srv/projects/javascript-linkify/ba-linkify.min.js 1258421525 0 /srv/projects/javascript-linkify/ba-linkify.min.js 5 | -------------------------------------------------------------------------------- /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.3.2.js'; 16 | 17 | $shell['shBrush'] = array( 'JScript' ); 18 | 19 | ?> 20 | -------------------------------------------------------------------------------- /docs/nd/Data/SymbolTable.nd: -------------------------------------------------------------------------------- 1 | ( Examples ./srv/projects/javascript-linkify/ba-linkify.js generic mThis working example, complete with fully commented code, illustrates one way in which this code can be used. )JavaScript Linkify:Process links in text! ./srv/projects/javascript-linkify/ba-linkify.js file ,Version: 0.3, Last updated: 6/27/2009 Functions ./srv/projects/javascript-linkify/ba-linkify.js group Release History ./srv/projects/javascript-linkify/ba-linkify.js generic License ./srv/projects/javascript-linkify/ba-linkify.js generic _Copyright (c) 2009 "Cowboy" Ben Alman, Dual licensed under the MIT and GPL licenses. Support and Testing ./srv/projects/javascript-linkify/ba-linkify.js generic =Information about what browsers this code has been tested in. linkify ./srv/projects/javascript-linkify/ba-linkify.js function Turn text into linkified html. -------------------------------------------------------------------------------- /docs/search/NoResults.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 |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 | J | |
| JavaScript Linkify: |
| E | |
| Examples | |
| F | |
| Functions | |
| J | |
| JavaScript Linkify: | |
| L | |
| License | |
| linkify | |
| R | |
| Release History | |
| S | |
| Support and Testing |
Version: 0.3, Last updated: 6/27/2009
| JavaScript Linkify: Process links in text! | Version: 0.3, Last updated: 6/27/2009 |
| License | Copyright © 2009 “Cowboy” Ben Alman, Dual licensed under the MIT and GPL licenses. |
| Examples | This working example, complete with fully commented code, illustrates one way in which this code can be used. |
| Support and Testing | Information about what browsers this code has been tested in. |
| Release History | |
| Functions | |
| linkify | Turn text into linkified html. |
Copyright © 2009 “Cowboy” Ben Alman, Dual licensed under the MIT and GPL licenses. http://benalman.com/about/license/
This working example, complete with fully commented code, illustrates one way in which this code can be used.
| Linkify | http://benalman.com |
Turn text into linkified html.
var html = linkify( text [, options ] );
| text | (String) Non-HTML text containing links to be parsed. |
| options | (Object) An optional object containing linkify parse options. |
| callback (Function) | If specified, this will be called once for each link- or non-link-chunk with two arguments, text and href. If the chunk is non-link, href will be omitted. If unspecified, the default linkification callback is used. |
| punct_regexp (RegExp) | A RegExp that will be used to trim trailing punctuation from links, instead of the default. If set to null, trailing punctuation will not be trimmed. |
(String) An HTML string containing links.
298 | = htmlspecialchars( $shell['script'] ); ?> 299 |300 | 301 | 302 | $shell['html_body'] = ob_get_contents(); 303 | ob_end_clean(); 304 | 305 | // ========================================================================== // 306 | // DRAW SHELL 307 | // ========================================================================== // 308 | 309 | draw_shell(); 310 | 311 | ?> 312 | --------------------------------------------------------------------------------