Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
backup /
extensions /
WikiEditor /
modules /
Delete
Unzip
Name
Size
Permission
Date
Action
images
[ DIR ]
drwxr-xr-x
2012-03-22 16:23
contentCollector.js
11.48
KB
-rw-r--r--
2010-12-06 23:51
ext.wikiEditor.css
483
B
-rw-r--r--
2010-09-20 22:06
ext.wikiEditor.dialogs.js
385
B
-rw-r--r--
2011-02-25 01:01
ext.wikiEditor.highlight.js
174
B
-rw-r--r--
2010-09-20 22:06
ext.wikiEditor.js
136
B
-rw-r--r--
2010-09-20 22:06
ext.wikiEditor.preview.js
180
B
-rw-r--r--
2011-06-07 01:18
ext.wikiEditor.previewDialog.js
186
B
-rw-r--r--
2010-09-20 22:06
ext.wikiEditor.publish.js
172
B
-rw-r--r--
2011-06-07 01:18
ext.wikiEditor.templateEditor.js
300
B
-rw-r--r--
2011-06-26 21:25
ext.wikiEditor.templates.js
276
B
-rw-r--r--
2011-06-26 21:25
ext.wikiEditor.tests.toolbar.js
5.42
KB
-rw-r--r--
2011-07-02 11:09
ext.wikiEditor.toc.js
181
B
-rw-r--r--
2010-09-20 22:06
ext.wikiEditor.toolbar.hideSig.js
598
B
-rw-r--r--
2011-11-09 15:51
ext.wikiEditor.toolbar.js
453
B
-rw-r--r--
2011-02-24 02:45
jquery.wikiEditor.css
2.02
KB
-rw-r--r--
2011-01-12 01:06
jquery.wikiEditor.dialogs.config.css
5.32
KB
-rw-r--r--
2011-04-21 10:59
jquery.wikiEditor.dialogs.config.js
45.15
KB
-rw-r--r--
2011-11-09 17:12
jquery.wikiEditor.dialogs.css
1.31
KB
-rw-r--r--
2010-09-16 23:44
jquery.wikiEditor.dialogs.js
7.59
KB
-rw-r--r--
2011-08-28 17:32
jquery.wikiEditor.highlight.js
12.42
KB
-rw-r--r--
2010-09-15 05:08
jquery.wikiEditor.html
3.78
KB
-rw-r--r--
2011-01-04 13:03
jquery.wikiEditor.iframe.js
50.21
KB
-rw-r--r--
2011-06-26 21:25
jquery.wikiEditor.js
21.04
KB
-rw-r--r--
2011-06-26 21:25
jquery.wikiEditor.preview.css
522
B
-rw-r--r--
2010-09-16 00:40
jquery.wikiEditor.preview.js
4.81
KB
-rw-r--r--
2011-07-08 20:00
jquery.wikiEditor.previewDialog.css
826
B
-rw-r--r--
2010-09-17 00:57
jquery.wikiEditor.previewDialog.js
3.78
KB
-rw-r--r--
2011-06-26 21:25
jquery.wikiEditor.publish.js
4.92
KB
-rw-r--r--
2011-06-07 01:18
jquery.wikiEditor.templateEditor.js
28.4
KB
-rw-r--r--
2011-01-04 13:53
jquery.wikiEditor.templates.js
1.8
KB
-rw-r--r--
2010-09-15 05:08
jquery.wikiEditor.toc.css
3.38
KB
-rw-r--r--
2011-01-12 01:06
jquery.wikiEditor.toc.js
24.09
KB
-rw-r--r--
2011-06-26 21:25
jquery.wikiEditor.toolbar.config.js
45.44
KB
-rw-r--r--
2011-10-20 23:36
jquery.wikiEditor.toolbar.css
6.88
KB
-rw-r--r--
2011-02-19 16:02
jquery.wikiEditor.toolbar.js
24.43
KB
-rw-r--r--
2011-11-14 18:59
Save
Rename
/* Templates Module for wikiEditor */ ( function( $ ) { $.wikiEditor.modules.templates = { /** * Core Requirements */ 'req': [ 'iframe' ], /** * Object Templates */ 'tpl': { 'marker': { 'type': 'template', 'anchor': 'wrap', 'skipDivision': 'realchange', 'afterWrap': function( node ) { $( node ).addClass( 'wikiEditor-template' ); }, 'getAnchor': function( ca1, ca2 ) { return $( ca1.parentNode ).is( '.wikiEditor-template' ) ? ca1.parentNode : null; } } }, /** * Event handlers */ 'evt': { 'mark': function( context, event ) { // The markers returned by this function are skipped on realchange, so don't regenerate them in that case if ( context.modules.highlight.currentScope == 'realchange' ) { return; } // Get references to the markers and tokens from the current context var markers = context.modules.highlight.markers; var tokens = context.modules.highlight.tokenArray; // Use depth-tracking to extract top-level templates from tokens var depth = 0, bias, start; for ( var i in tokens ) { depth += ( bias = tokens[i].label == 'TEMPLATE_BEGIN' ? 1 : ( tokens[i].label == 'TEMPLATE_END' ? -1 : 0 ) ); if ( bias > 0 && depth == 1 ) { // Top-level opening - use offset as start start = tokens[i].offset; } else if ( bias < 0 && depth == 0 ) { // Top-level closing - use offset as end markers[markers.length] = $.extend( { 'context': context, 'start': start, 'end': tokens[i].offset }, $.wikiEditor.modules.templates.tpl.marker ); } if ( depth < 0 ) { depth = 0; } } } }, 'exp': [ { 'regex': /{{/, 'label': "TEMPLATE_BEGIN" }, { 'regex': /}}/, 'label': "TEMPLATE_END", 'markAfter': true } ], /** * Internally used functions */ 'fn': { 'create': function( context, config ) { // Do some stuff here... } } }; } ) ( jQuery );