Dashboard sipadu mbip
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

index.js 53KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027
  1. (function( $, undefined ) {
  2. //special click handling to make widget work remove after nav changes in 1.4
  3. var href,
  4. ele = "";
  5. $( document ).on( "click", "a", function( e ) {
  6. href = $( this ).attr( "href" );
  7. var hash = $.mobile.path.parseUrl( href );
  8. if( typeof href !== "undefined" && hash !== "" && href !== href.replace( hash,"" ) && hash.search( "/" ) !== -1 ){
  9. //remove the hash from the link to allow normal loading of the page.
  10. var newHref = href.replace( hash,"" );
  11. $( this ).attr( "href", newHref );
  12. }
  13. ele = $( this );
  14. });
  15. $( document ).on( "pagebeforechange", function( e, f ){
  16. f.originalHref = href;
  17. });
  18. $( document ).on("pagebeforechange", function( e,f ){
  19. var hash = $.mobile.path.parseUrl(f.toPage).hash,
  20. hashEl, hashElInPage;
  21. try {
  22. hashEl = $( hash );
  23. } catch( e ) {
  24. hashEl = $();
  25. }
  26. try {
  27. hashElInPage = $( ".ui-page-active " + hash );
  28. } catch( e ) {
  29. hashElInPage = $();
  30. }
  31. if( typeof hash !== "undefined" &&
  32. hash.search( "/" ) === -1 &&
  33. hash !== "" &&
  34. hashEl.length > 0 &&
  35. !hashEl.hasClass( "ui-page" ) &&
  36. !hashEl.hasClass( "ui-popup" ) &&
  37. hashEl.data('role') !== "page" &&
  38. !hashElInPage.hasClass( "ui-panel" ) &&
  39. !hashElInPage.hasClass( "ui-popup" ) ) {
  40. //scroll to the id
  41. var pos = hashEl.offset().top;
  42. $.mobile.silentScroll( pos );
  43. $.mobile.navigate( hash, '', true );
  44. } else if( typeof f.toPage !== "object" &&
  45. hash !== "" &&
  46. $.mobile.path.parseUrl( href ).hash !== "" &&
  47. !hashEl.hasClass( "ui-page" ) && hashEl.attr('data-role') !== "page" &&
  48. !hashElInPage.hasClass( "ui-panel" ) &&
  49. !hashElInPage.hasClass( "ui-popup" ) ) {
  50. $( ele ).attr( "href", href );
  51. $.mobile.document.one( "pagechange", function() {
  52. if( typeof hash !== "undefined" &&
  53. hash.search( "/" ) === -1 &&
  54. hash !== "" &&
  55. hashEl.length > 0 &&
  56. hashElInPage.length > 0 &&
  57. !hashEl.hasClass( "ui-page" ) &&
  58. hashEl.data('role') !== "page" &&
  59. !hashElInPage.hasClass( "ui-panel" ) &&
  60. !hashElInPage.hasClass( "ui-popup" ) ) {
  61. hash = $.mobile.path.parseUrl( href ).hash;
  62. var pos = hashElInPage.offset().top;
  63. $.mobile.silentScroll( pos );
  64. }
  65. } );
  66. }
  67. });
  68. $( document ).on( "mobileinit", function(){
  69. hash = window.location.hash;
  70. $.mobile.document.one( "pageshow", function(){
  71. var hashEl, hashElInPage;
  72. try {
  73. hashEl = $( hash );
  74. } catch( e ) {
  75. hashEl = $();
  76. }
  77. try {
  78. hashElInPage = $( ".ui-page-active " + hash );
  79. } catch( e ) {
  80. hashElInPage = $();
  81. }
  82. if( hash !== "" &&
  83. hashEl.length > 0 &&
  84. hashElInPage.length > 0 &&
  85. hashEl.attr('data-role') !== "page" &&
  86. !hashEl.hasClass( "ui-page" ) &&
  87. !hashElInPage.hasClass( "ui-panel" ) &&
  88. !hashElInPage.hasClass( "ui-popup" ) &&
  89. !hashEl.is( "body" ) ){
  90. var pos = hashElInPage.offset().top;
  91. setTimeout( function(){
  92. $.mobile.silentScroll( pos );
  93. }, 100 );
  94. }
  95. });
  96. });
  97. //h2 widget
  98. $( document ).on( "mobileinit", function(){
  99. $.widget( "mobile.h2linker", {
  100. options:{
  101. initSelector: ":jqmData(quicklinks='true')"
  102. },
  103. _create:function(){
  104. var self = this,
  105. bodyid = "ui-page-top",
  106. panel = "<div data-role='panel' class='jqm-nav-panel jqm-quicklink-panel' data-position='right' data-display='overlay' data-theme='a'><ul data-role='listview' data-inset='false' data-theme='a' data-divider-theme='a' data-icon='false' class='jqm-list'><li data-role='list-divider'>Quick Links</li></ul></div>",
  107. first = true,
  108. h2dictionary = new Object();
  109. if(typeof $("body").attr("id") === "undefined"){
  110. $("body").attr("id",bodyid);
  111. } else {
  112. bodyid = $("body").attr("id");
  113. }
  114. this.element.find("div.jqm-content>h2").each(function(){
  115. var id, text = $(this).text();
  116. if(typeof $(this).attr("id") === "undefined"){
  117. id = text.replace(/[^\.a-z0-9:_-]+/gi,"");
  118. $(this).attr( "id", id );
  119. } else {
  120. id = $(this).attr("id");
  121. }
  122. h2dictionary[id] = text;
  123. if(!first){
  124. $(this).before( "<a href='#" + bodyid + "' class='jqm-deeplink ui-icon-carat-u ui-alt-icon'>Top</a>");
  125. } else {
  126. $(this).before("<a href='#' data-ajax='false' class='jqm-deeplink jqm-open-quicklink-panel ui-icon-carat-l ui-alt-icon'>Quick Links</a>");
  127. }
  128. first = false;
  129. });
  130. this._on(".jqm-open-quicklink-panel", {
  131. "click": function(){
  132. $(".ui-page-active .jqm-quicklink-panel").panel("open");
  133. return false;
  134. }
  135. });
  136. this._on( document, {
  137. "pagebeforechange": function(){
  138. this.element.find(".jqm-quicklink-panel").panel("close");
  139. this.element.find(".jqm-quicklink-panel .ui-btn-active").removeClass("ui-btn-active");
  140. }
  141. });
  142. if( $(h2dictionary).length > 0 ){
  143. this.element.prepend(panel)
  144. this.element.find(".jqm-quicklink-panel").panel().find("ul").listview();
  145. }
  146. $.each(h2dictionary,function(id,text){
  147. self.element.find(".jqm-quicklink-panel ul").append("<li><a href='#"+id+"'>"+text+"</a></li>");
  148. });
  149. self.element.find(".jqm-quicklink-panel ul").listview("refresh");
  150. }
  151. });
  152. });
  153. $( document ).bind( "pagecreate create", function( e ) {
  154. var initselector = $.mobile.h2linker.prototype.options.initSelector;
  155. if($(e.target).data("quicklinks")){
  156. $(e.target).h2linker();
  157. }
  158. });
  159. })( jQuery );
  160. // Turn off Ajax for local file browsing
  161. if ( location.protocol.substr(0,4) === 'file' ||
  162. location.protocol.substr(0,11) === '*-extension' ||
  163. location.protocol.substr(0,6) === 'widget' ) {
  164. // Start with links with only the trailing slash and that aren't external links
  165. var fixLinks = function() {
  166. $( "a[href$='/'], a[href='.'], a[href='..']" ).not( "[rel='external']" ).each( function() {
  167. if( !$( this ).attr( "href" ).match("http") ){
  168. this.href = $( this ).attr( "href" ).replace( /\/$/, "" ) + "/index.html";
  169. }
  170. });
  171. };
  172. // Fix the links for the initial page
  173. $( fixLinks );
  174. // Fix the links for subsequent ajax page loads
  175. $( document ).on( "pagecreate", fixLinks );
  176. // Check to see if ajax can be used. This does a quick ajax request and blocks the page until its done
  177. $.ajax({
  178. url: '.',
  179. async: false,
  180. isLocal: true
  181. }).error(function() {
  182. // Ajax doesn't work so turn it off
  183. $( document ).on( "mobileinit", function() {
  184. $.mobile.ajaxEnabled = false;
  185. var message = $( '<div>' , {
  186. 'class': "jqm-content",
  187. style: "border:none; padding: 10px 15px; overflow: auto;",
  188. 'data-ajax-warning': true
  189. });
  190. message
  191. .append( "<h3>Note: Navigation may not work if viewed locally</h3>" )
  192. .append( "<p>The Ajax-based navigation used throughout the jQuery Mobile docs may need to be viewed on a web server to work in certain browsers. If you see an error message when you click a link, please try a different browser.</p>" );
  193. $( document ).on( "pagecreate", function( event ) {
  194. $( event.target ).append( message );
  195. });
  196. });
  197. });
  198. }
  199. $( document ).on( "pagecreate", ".jqm-demos", function( event ) {
  200. var search,
  201. page = $( this ),
  202. that = this,
  203. searchUrl = ( $( this ).hasClass( "jqm-home" ) ) ? "_search/" : "../_search/",
  204. searchContents = $( ".jqm-search ul.jqm-list" ).find( "li:not(.ui-collapsible)" ),
  205. version = $.mobile.version || "dev",
  206. words = version.split( "-" ),
  207. ver = words[0],
  208. str = words[1] || "",
  209. text = ver;
  210. // Insert jqm version in header
  211. if ( str.indexOf( "rc" ) == -1 ) {
  212. str = str.charAt( 0 ).toUpperCase() + str.slice( 1 );
  213. } else {
  214. str = str.toUpperCase().replace( ".", "" );
  215. }
  216. if ( $.mobile.version && str ) {
  217. text += " " + str;
  218. }
  219. $( ".jqm-version" ).html( text );
  220. // Global navmenu panel
  221. $( ".jqm-navmenu-panel ul" ).listview();
  222. $( document ).on( "panelopen", ".jqm-search-panel", function() {
  223. $( this ).find( "input" ).focus();
  224. })
  225. $( ".jqm-navmenu-link" ).on( "click", function() {
  226. page.find( ".jqm-navmenu-panel:not(.jqm-panel-page-nav)" ).panel( "open" );
  227. });
  228. // Turn off autocomplete / correct for demos search
  229. $( this ).find( ".jqm-search input" ).attr( "autocomplete", "off" ).attr( "autocorrect", "off" );
  230. // Global search
  231. $( ".jqm-search-link" ).on( "click", function() {
  232. page.find( ".jqm-search-panel" ).panel( "open" );
  233. });
  234. // Initalize search panel list and filter also remove collapsibles
  235. $( this ).find( ".jqm-search ul.jqm-list" ).html( searchContents ).listview({
  236. inset: false,
  237. theme: null,
  238. dividerTheme: null,
  239. icon: false,
  240. autodividers: true,
  241. autodividersSelector: function ( li ) {
  242. return "";
  243. },
  244. arrowKeyNav: true,
  245. enterToNav: true,
  246. highlight: true,
  247. submitTo: searchUrl
  248. }).filterable();
  249. // Initalize search page list and remove collapsibles
  250. $( this ).find( ".jqm-search-results-wrap ul.jqm-list" ).html( searchContents ).listview({
  251. inset: true,
  252. theme: null,
  253. dividerTheme: null,
  254. icon: false,
  255. arrowKeyNav: true,
  256. enterToNav: true,
  257. highlight: true
  258. }).filterable();
  259. // Fix links on homepage to point to sub directories
  260. if ( $( event.target ).hasClass( "jqm-home") ) {
  261. $( this ).find( "a" ).each( function() {
  262. $( this ).attr( "href", $( this ).attr( "href" ).replace( "../", "" ) );
  263. });
  264. }
  265. // Search results page get search query string and enter it into filter then trigger keyup to filter
  266. if ( $( event.target ).hasClass( "jqm-demos-search-results") ) {
  267. search = $.mobile.path.parseUrl( window.location.href ).search.split( "=" )[ 1 ];
  268. setTimeout(function() {
  269. e = $.Event( "keyup" );
  270. e.which = 65;
  271. $( that ).find( ".jqm-content .jqm-search-results-wrap input" ).val( search ).trigger(e).trigger( "change" );
  272. }, 0 );
  273. }
  274. });
  275. // Append keywords list to each list item
  276. $( document ).one( "pagecreate", ".jqm-demos", function( event ) {
  277. $( this ).find( ".jqm-search-results-list li, .jqm-search li" ).each(function() {
  278. var text = $( this ).attr( "data-filtertext" );
  279. $( this )
  280. .find( "a" )
  281. .append( "<span class='jqm-search-results-keywords ui-li-desc'>" + text + "</span>" );
  282. });
  283. });
  284. // Functions for highlighting text used for keywords highlight in search
  285. jQuery.fn.highlight = function( pat ) {
  286. function innerHighlight( node, pat ) {
  287. var skip = 0;
  288. if ( node.nodeType == 3 ) {
  289. var pos = node.data.toUpperCase().indexOf( pat );
  290. if ( pos >= 0 ) {
  291. var spannode = document.createElement( "span" );
  292. spannode.className = "jqm-search-results-highlight";
  293. var middlebit = node.splitText( pos );
  294. var endbit = middlebit.splitText( pat.length );
  295. var middleclone = middlebit.cloneNode( true );
  296. spannode.appendChild( middleclone );
  297. middlebit.parentNode.replaceChild( spannode, middlebit );
  298. skip = 1;
  299. }
  300. } else if ( node.nodeType == 1 && node.childNodes && !/(script|style)/i.test( node.tagName ) ) {
  301. for ( var i = 0; i < node.childNodes.length; ++i ) {
  302. i += innerHighlight( node.childNodes[i], pat );
  303. }
  304. }
  305. return skip;
  306. }
  307. return this.length && pat && pat.length ? this.each(function() {
  308. innerHighlight( this, pat.toUpperCase() );
  309. }) : this;
  310. };
  311. // Function to remove highlights in text
  312. jQuery.fn.removeHighlight = function() {
  313. return this.find( "span.jqm-search-results-highlight" ).each(function() {
  314. this.parentNode.firstChild.nodeName;
  315. with ( this.parentNode ) {
  316. replaceChild( this.firstChild, this );
  317. normalize();
  318. }
  319. }).end();
  320. };
  321. // Extension to listview to add keyboard navigation
  322. $( document ).on( "mobileinit", function() {
  323. (function( $, undefined ) {
  324. $.widget( "mobile.listview", $.mobile.listview, {
  325. options: {
  326. arrowKeyNav: false,
  327. enterToNav: false,
  328. highlight: false,
  329. submitTo: false
  330. },
  331. _create: function() {
  332. this._super();
  333. if ( this.options.arrowKeyNav ) {
  334. this._on( document, { "pageshow": "arrowKeyNav" });
  335. }
  336. if ( this.options.enterToNav ) {
  337. this._on( document, { "pageshow": "enterToNav" });
  338. }
  339. },
  340. submitTo: function() {
  341. var url,
  342. form = this.element.parent().find( "form" );
  343. form.attr( "method", "get" )
  344. .attr( "action", this.options.submitTo );
  345. url = this.options.submitTo + "?search=" + this.element.parent().find( "input" ).val();
  346. window.location = url;
  347. },
  348. enterToNav: function() {
  349. var form = this.element.parent().find( "form" );
  350. form.append( "<button type='submit' data-icon='carat-r' data-inline='true' class='ui-hidden-accessible' data-iconpos='notext'>Submit</button>" )
  351. .parent()
  352. .trigger( "create" );
  353. this.element.parent().find( "form" ).children( ".ui-btn" ).addClass( "ui-hidden-accessible" );
  354. this._on( form, {
  355. "submit": "submitHandler"
  356. });
  357. },
  358. enhanced: false,
  359. arrowKeyNav: function() {
  360. var input = this.element.prev("form").find( "input" );
  361. if ( !this.enhanced ) {
  362. this._on( input, {
  363. "keyup": "handleKeyUp"
  364. });
  365. this.enhanced = true;
  366. }
  367. },
  368. handleKeyUp: function( e ) {
  369. var search,
  370. input = this.element.prev("form").find( "input" );
  371. if ( e.which === $.ui.keyCode.DOWN ) {
  372. if ( this.element.find( "li.ui-btn-active" ).length === 0 ) {
  373. this.element.find( "li:first" ).toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  374. } else {
  375. this.element.find( "li.ui-btn-active a" ).toggleClass( "ui-btn-active");
  376. this.element.find( "li.ui-btn-active" ).toggleClass( "ui-btn-active" ).next().toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  377. }
  378. this.highlightDown();
  379. } else if ( e.which === $.ui.keyCode.UP ) {
  380. if ( this.element.find( "li.ui-btn-active" ).length !== 0 ) {
  381. this.element.find( "li.ui-btn-active a" ).toggleClass( "ui-btn-active");
  382. this.element.find( "li.ui-btn-active" ).toggleClass( "ui-btn-active" ).prev().toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  383. } else {
  384. this.element.find( "li:last" ).toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  385. }
  386. this.highlightUp();
  387. } else if ( typeof e.which !== "undefined" ) {
  388. this.element.find( "li.ui-btn-active" ).removeClass( "ui-btn-active" );
  389. if ( this.options.highlight ) {
  390. search = input.val();
  391. this.element.find( "li" ).each(function() {
  392. $( this ).removeHighlight();
  393. $( this ).highlight( search );
  394. });
  395. }
  396. }
  397. },
  398. submitHandler: function() {
  399. if ( this.element.find( "li.ui-btn-active" ).length !== 0 ) {
  400. var href = this.element.find( "li.ui-btn-active a" ).attr( "href" );
  401. $( ":mobile-pagecontainer" ).pagecontainer( "change", href );
  402. return false;
  403. }
  404. if ( this.options.submitTo ) {
  405. this.submitTo();
  406. }
  407. },
  408. highlightDown: function() {
  409. if ( this.element.find( "li.ui-btn-active" ).hasClass( "ui-screen-hidden" ) ) {
  410. this.element.find( "li.ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  411. this.element.find( "li.ui-btn-active" ).toggleClass( "ui-btn-active" ).next().toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  412. this.highlightDown();
  413. }
  414. return;
  415. },
  416. highlightUp: function() {
  417. if ( this.element.find( "li.ui-btn-active" ).hasClass( "ui-screen-hidden" ) ) {
  418. this.element.find( "li.ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  419. this.element.find( "li.ui-btn-active" ).toggleClass( "ui-btn-active" ).prev().toggleClass( "ui-btn-active" ).find("a").toggleClass( "ui-btn-active" );
  420. this.highlightUp();
  421. }
  422. return;
  423. }
  424. });
  425. })( jQuery );
  426. });
  427. // View demo source code
  428. function attachPopupHandler( popup, sources ) {
  429. popup.one( "popupbeforeposition", function() {
  430. var
  431. collapsibleSet = popup.find( "[data-role='collapsibleset']" ),
  432. collapsible, pre;
  433. $.each( sources, function( idx, options ) {
  434. collapsible = $( "<div data-role='collapsible' data-collapsed='true' data-theme='" + options.theme + "' data-iconpos='right' data-collapsed-icon='carat-l' data-expanded-icon='carat-d' data-content-theme='b'>" +
  435. "<h1>" + options.title + "</h1>" +
  436. "<pre class='brush: " + options.brush + ";'></pre>" +
  437. "</div>" );
  438. pre = collapsible.find( "pre" );
  439. pre.append( options.data.replace( /</gmi, '&lt;' ) );
  440. collapsible
  441. .appendTo( collapsibleSet )
  442. .on( "collapsiblecollapse", function() {
  443. popup.popup( "reposition", { positionTo: "window" } );
  444. })
  445. .on( "collapsibleexpand", function() {
  446. var doReposition = true;
  447. collapsibleSet.find( ":mobile-collapsible" ).not( this ).each( function() {
  448. if ( $( this ).collapsible( "option", "expanded" ) ) {
  449. doReposition = false;
  450. }
  451. });
  452. if ( doReposition ) {
  453. popup.popup( "reposition", { positionTo: "window" } );
  454. }
  455. });
  456. SyntaxHighlighter.highlight( {}, pre[ 0 ] );
  457. });
  458. collapsibleSet.find( "[data-role='collapsible']" ).first().attr( "data-collapsed", "false" );
  459. popup.trigger( "create" );
  460. });
  461. }
  462. function getSnippet( type, selector, source ) {
  463. var text = "", el, absUrl, hash;
  464. if ( selector === "true" ) {
  465. selector = "";
  466. }
  467. // First, try to grab a tag in this document
  468. if ( !$.mobile.path.isPath( selector ) ) {
  469. el = source.find( type + selector );
  470. // If this is not an embedded style, try a stylesheet reference
  471. if ( el.length === 0 && type === "style" ) {
  472. el = source.find( "link[rel='stylesheet']" + selector );
  473. }
  474. text = $( "<div></div>" ).append( el.contents().clone() ).html();
  475. if ( !text ) {
  476. text = "";
  477. selector = el.attr( "href" ) || el.attr( "src" ) || "";
  478. }
  479. }
  480. // If not, try to SJAX in the document referred to by the selector
  481. if ( !text && selector ) {
  482. absUrl = $.mobile.path.makeUrlAbsolute( selector );
  483. hash = $.mobile.path.parseUrl( absUrl ).hash;
  484. // selector is a path to SJAX in
  485. $.ajax( absUrl, { async: false, dataType: "text" } )
  486. .success( function( data, textStatus, jqXHR ) {
  487. text = data;
  488. // If there's a hash we assume this is an HTML document that has a tag
  489. // inside whose ID is the hash
  490. if ( hash ) {
  491. text = $( "<div></div>" ).append( $( data ).find( hash ).contents().clone() ).html();
  492. }
  493. });
  494. }
  495. return text;
  496. }
  497. $( document ).bind( "pagebeforechange", function( e, data ) {
  498. var popup, sources;
  499. if ( data.options && data.options.role === "popup" && data.options.link ) {
  500. sources = data.options.link.jqmData( "sources" );
  501. if ( sources ) {
  502. popup = $( "<div id='jqm-view-source' class='jqm-view-source' data-role='popup' data-theme='none' data-position-to='window'>" +
  503. "<div data-role='collapsibleset' data-inset='true'></div>" +
  504. "</div>" );
  505. attachPopupHandler( popup, sources );
  506. popup
  507. .appendTo( $.mobile.activePage )
  508. .popup()
  509. .bind( "popupafterclose", function() {
  510. popup.remove();
  511. })
  512. .popup( "open" );
  513. e.preventDefault();
  514. }
  515. }
  516. });
  517. function makeButton() {
  518. var d = document.createElement( "div" )
  519. a = document.createElement( "a" ),
  520. txt = document.createTextNode( "View Source" );
  521. a.className = "jqm-view-source-link ui-btn ui-corner-all ui-btn-inline ui-mini";
  522. a.setAttribute( "href", "#popupDemo" );
  523. a.setAttribute( "data-rel", "popup" );
  524. a.appendChild( txt );
  525. d.appendChild( a );
  526. return $( d );
  527. }
  528. $.fn.viewSourceCode = function() {
  529. return $( this ).each( function() {
  530. var button = makeButton(),
  531. self = $( this ),
  532. snippetSource = self.parents( ".ui-page,:jqmData(role='page')" ).add( $( "head" ) ),
  533. fixData = function( data ) {
  534. return data.replace( /\s+$/gm, "" );
  535. },
  536. data,
  537. sources = [];
  538. // Collect source code before it becomes enhanced
  539. if ( self.is( "[data-demo-html]" ) ) {
  540. if ( self.attr( "data-demo-html" ) === "true" ) {
  541. data = self.html();
  542. } else {
  543. data = $( "<div></div>" ).append( $( self.attr( "data-demo-html" ) ).clone() ).html();
  544. }
  545. sources.push( { title: "HTML", theme: "c", brush: "xml", data: fixData( data ) } );
  546. }
  547. if ( self.is( "[data-demo-php]" ) ) {
  548. $.ajax( self.attr( "data-demo-php" ), { async: false } )
  549. .success( function( incoming ) {
  550. data = incoming;
  551. })
  552. .error( function() {
  553. data = "// Failed to retrieve PHP source code";
  554. });
  555. sources.push( { title: "PHP", theme: "d", brush: "php", data: fixData( data ) } );
  556. }
  557. if ( self.is( "[data-demo-js]" ) ) {
  558. data = getSnippet( "script", self.attr( "data-demo-js" ), snippetSource );
  559. sources.push( { title: "JS", theme: "e", brush: "js", data: fixData( data ) } );
  560. }
  561. if ( self.is( "[data-demo-css]" ) ) {
  562. data = getSnippet( "style", self.attr( "data-demo-css" ), snippetSource );
  563. sources.push( { title: "CSS", theme: "f", brush: "css", data: fixData( data ) } );
  564. }
  565. button.insertAfter( this );
  566. button.children().jqmData( "sources", sources );
  567. });
  568. };
  569. $( document ).on( "pagebeforecreate", "[data-role='page']", function() {
  570. $( this ).find( "[data-demo-html], [data-demo-js], [data-demo-css], [data-demo-php]" ).viewSourceCode();
  571. SyntaxHighlighter.defaults['toolbar'] = false;
  572. SyntaxHighlighter.defaults['auto-links'] = false;
  573. });
  574. $( document ).on( "pagecreate", function( e ) {
  575. // prevent page scroll while scrolling source code
  576. $( document ).on( "mousewheel", ".jqm-view-source .ui-collapsible-content", function( event, delta ) {
  577. if ( delta > 0 && $( this ).scrollTop() === 0 ) {
  578. event.preventDefault();
  579. } else if ( delta < 0 && $( this ).scrollTop() === $( this ).get( 0 ).scrollHeight - $( this ).innerHeight() ) {
  580. event.preventDefault();
  581. }
  582. });
  583. // reposition when switching between html / js / css
  584. $( e.target ).delegate( ".jqm-view-source .ui-collapsible", "expand", function() {
  585. $( this ).parents( ":mobile-popup" ).popup( "reposition", { positionTo: "window" } );
  586. });
  587. $( e.target ).delegate( ".jqm-view-source", "popupbeforeposition", function() {
  588. // max height: screen height - tolerance (2*30px) - 42px for each collapsible heading
  589. var x = $( this ).find( ".ui-collapsible" ).length,
  590. maxHeight = $.mobile.getScreenHeight() - 60 - ( x * 42 );
  591. $( this ).find( ".ui-collapsible-content" ).css( "max-height", maxHeight + "px" );
  592. // keep line numbers and code lines in sync
  593. $(".ui-collapsible:not(.ui-collapsible-collapsed) .gutter", this ).find( ".line" ).css( "height", "");
  594. $(".ui-collapsible:not(.ui-collapsible-collapsed) .code", this ).find( ".line" ).each( function() {
  595. if ( $( this ).height() !== 16 ) {
  596. var height = $( this ).height(),
  597. linenumber = ".number" + /number(\w+)/.exec( this.className )[1],
  598. gutter = $( this ).parents( "tr" ).find( "td.gutter" ).first(),
  599. line = $( gutter ).find( linenumber );
  600. $( line ).height( height );
  601. }
  602. });
  603. });
  604. });
  605. /**
  606. * SyntaxHighlighter
  607. * http://alexgorbatchev.com/SyntaxHighlighter
  608. *
  609. * SyntaxHighlighter is donationware. If you are using it, please donate.
  610. * http://alexgorbatchev.com/SyntaxHighlighter/donate.html
  611. *
  612. * @version
  613. * 3.0.83 (July 02 2010)
  614. *
  615. * @copyright
  616. * Copyright (C) 2004-2010 Alex Gorbatchev.
  617. *
  618. * @license
  619. * Dual licensed under the MIT and GPL licenses.
  620. */
  621. eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function() {return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('K M;I(M)1S 2U("2a\'t 4k M 4K 2g 3l 4G 4H");(6(){6 r(f,e){I(!M.1R(f))1S 3m("3s 15 4R");K a=f.1w;f=M(f.1m,t(f)+(e||""));I(a)f.1w={1m:a.1m,19:a.19?a.19.1a(0):N};H f}6 t(f){H(f.1J?"g":"")+(f.4s?"i":"")+(f.4p?"m":"")+(f.4v?"x":"")+(f.3n?"y":"")}6 B(f,e,a,b){K c=u.L,d,h,g;v=R;5K{O(;c--;){g=u[c];I(a&g.3r&&(!g.2p||g.2p.W(b))){g.2q.12=e;I((h=g.2q.X(f))&&h.P===e){d={3k:g.2b.W(b,h,a),1C:h};1N}}}}5v(i){1S i}5q{v=11}H d}6 p(f,e,a){I(3b.Z.1i)H f.1i(e,a);O(a=a||0;a<f.L;a++)I(f[a]===e)H a;H-1}M=6(f,e){K a=[],b=M.1B,c=0,d,h;I(M.1R(f)){I(e!==1d)1S 3m("2a\'t 5r 5I 5F 5B 5C 15 5E 5p");H r(f)}I(v)1S 2U("2a\'t W 3l M 59 5m 5g 5x 5i");e=e||"";O(d={2N:11,19:[],2K:6(g){H e.1i(g)>-1},3d:6(g){e+=g}};c<f.L;)I(h=B(f,c,b,d)){a.U(h.3k);c+=h.1C[0].L||1}Y I(h=n.X.W(z[b],f.1a(c))){a.U(h[0]);c+=h[0].L}Y{h=f.3a(c);I(h==="[")b=M.2I;Y I(h==="]")b=M.1B;a.U(h);c++}a=15(a.1K(""),n.Q.W(e,w,""));a.1w={1m:f,19:d.2N?d.19:N};H a};M.3v="1.5.0";M.2I=1;M.1B=2;K C=/\\$(?:(\\d\\d?|[$&`\'])|{([$\\w]+)})/g,w=/[^5h]+|([\\s\\S])(?=[\\s\\S]*\\1)/g,A=/^(?:[?*+]|{\\d+(?:,\\d*)?})\\??/,v=11,u=[],n={X:15.Z.X,1A:15.Z.1A,1C:1r.Z.1C,Q:1r.Z.Q,1e:1r.Z.1e},x=n.X.W(/()??/,"")[1]===1d,D=6(){K f=/^/g;n.1A.W(f,"");H!f.12}(),y=6(){K f=/x/g;n.Q.W("x",f,"");H!f.12}(),E=15.Z.3n!==1d,z={};z[M.2I]=/^(?:\\\\(?:[0-3][0-7]{0,2}|[4-7][0-7]?|x[\\29-26-f]{2}|u[\\29-26-f]{4}|c[A-3o-z]|[\\s\\S]))/;z[M.1B]=/^(?:\\\\(?:0(?:[0-3][0-7]{0,2}|[4-7][0-7]?)?|[1-9]\\d*|x[\\29-26-f]{2}|u[\\29-26-f]{4}|c[A-3o-z]|[\\s\\S])|\\(\\?[:=!]|[?*+]\\?|{\\d+(?:,\\d*)?}\\??)/;M.1h=6(f,e,a,b){u.U({2q:r(f,"g"+(E?"y":"")),2b:e,3r:a||M.1B,2p:b||N})};M.2n=6(f,e){K a=f+"/"+(e||"");H M.2n[a]||(M.2n[a]=M(f,e))};M.3c=6(f){H r(f,"g")};M.5l=6(f){H f.Q(/[-[\\]{}()*+?.,\\\\^$|#\\s]/g,"\\\\$&")};M.5e=6(f,e,a,b){e=r(e,"g"+(b&&E?"y":""));e.12=a=a||0;f=e.X(f);H b?f&&f.P===a?f:N:f};M.3q=6(){M.1h=6(){1S 2U("2a\'t 55 1h 54 3q")}};M.1R=6(f){H 53.Z.1q.W(f)==="[2m 15]"};M.3p=6(f,e,a,b){O(K c=r(e,"g"),d=-1,h;h=c.X(f);){a.W(b,h,++d,f,c);c.12===h.P&&c.12++}I(e.1J)e.12=0};M.57=6(f,e){H 6 a(b,c){K d=e[c].1I?e[c]:{1I:e[c]},h=r(d.1I,"g"),g=[],i;O(i=0;i<b.L;i++)M.3p(b[i],h,6(k){g.U(d.3j?k[d.3j]||"":k[0])});H c===e.L-1||!g.L?g:a(g,c+1)}([f],0)};15.Z.1p=6(f,e){H J.X(e[0])};15.Z.W=6(f,e){H J.X(e)};15.Z.X=6(f){K e=n.X.1p(J,14),a;I(e){I(!x&&e.L>1&&p(e,"")>-1){a=15(J.1m,n.Q.W(t(J),"g",""));n.Q.W(f.1a(e.P),a,6(){O(K c=1;c<14.L-2;c++)I(14[c]===1d)e[c]=1d})}I(J.1w&&J.1w.19)O(K b=1;b<e.L;b++)I(a=J.1w.19[b-1])e[a]=e[b];!D&&J.1J&&!e[0].L&&J.12>e.P&&J.12--}H e};I(!D)15.Z.1A=6(f){(f=n.X.W(J,f))&&J.1J&&!f[0].L&&J.12>f.P&&J.12--;H!!f};1r.Z.1C=6(f){M.1R(f)||(f=15(f));I(f.1J){K e=n.1C.1p(J,14);f.12=0;H e}H f.X(J)};1r.Z.Q=6(f,e){K a=M.1R(f),b,c;I(a&&1j e.58()==="3f"&&e.1i("${")===-1&&y)H n.Q.1p(J,14);I(a){I(f.1w)b=f.1w.19}Y f+="";I(1j e==="6")c=n.Q.W(J,f,6(){I(b){14[0]=1f 1r(14[0]);O(K d=0;d<b.L;d++)I(b[d])14[0][b[d]]=14[d+1]}I(a&&f.1J)f.12=14[14.L-2]+14[0].L;H e.1p(N,14)});Y{c=J+"";c=n.Q.W(c,f,6(){K d=14;H n.Q.W(e,C,6(h,g,i){I(g)5b(g){24"$":H"$";24"&":H d[0];24"`":H d[d.L-1].1a(0,d[d.L-2]);24"\'":H d[d.L-1].1a(d[d.L-2]+d[0].L);5a:i="";g=+g;I(!g)H h;O(;g>d.L-3;){i=1r.Z.1a.W(g,-1)+i;g=1Q.3i(g/10)}H(g?d[g]||"":"$")+i}Y{g=+i;I(g<=d.L-3)H d[g];g=b?p(b,i):-1;H g>-1?d[g+1]:h}})})}I(a&&f.1J)f.12=0;H c};1r.Z.1e=6(f,e){I(!M.1R(f))H n.1e.1p(J,14);K a=J+"",b=[],c=0,d,h;I(e===1d||+e<0)e=5D;Y{e=1Q.3i(+e);I(!e)H[]}O(f=M.3c(f);d=f.X(a);){I(f.12>c){b.U(a.1a(c,d.P));d.L>1&&d.P<a.L&&3b.Z.U.1p(b,d.1a(1));h=d[0].L;c=f.12;I(b.L>=e)1N}f.12===d.P&&f.12++}I(c===a.L){I(!n.1A.W(f,"")||h)b.U("")}Y b.U(a.1a(c));H b.L>e?b.1a(0,e):b};M.1h(/\\(\\?#[^)]*\\)/,6(f){H n.1A.W(A,f.2S.1a(f.P+f[0].L))?"":"(?:)"});M.1h(/\\((?!\\?)/,6(){J.19.U(N);H"("});M.1h(/\\(\\?<([$\\w]+)>/,6(f){J.19.U(f[1]);J.2N=R;H"("});M.1h(/\\\\k<([\\w$]+)>/,6(f){K e=p(J.19,f[1]);H e>-1?"\\\\"+(e+1)+(3R(f.2S.3a(f.P+f[0].L))?"":"(?:)"):f[0]});M.1h(/\\[\\^?]/,6(f){H f[0]==="[]"?"\\\\b\\\\B":"[\\\\s\\\\S]"});M.1h(/^\\(\\?([5A]+)\\)/,6(f){J.3d(f[1]);H""});M.1h(/(?:\\s+|#.*)+/,6(f){H n.1A.W(A,f.2S.1a(f.P+f[0].L))?"":"(?:)"},M.1B,6(){H J.2K("x")});M.1h(/\\./,6(){H"[\\\\s\\\\S]"},M.1B,6(){H J.2K("s")})})();1j 2e!="1d"&&(2e.M=M);K 1v=6(){6 r(a,b){a.1l.1i(b)!=-1||(a.1l+=" "+b)}6 t(a){H a.1i("3e")==0?a:"3e"+a}6 B(a){H e.1Y.2A[t(a)]}6 p(a,b,c){I(a==N)H N;K d=c!=R?a.3G:[a.2G],h={"#":"1c",".":"1l"}[b.1o(0,1)]||"3h",g,i;g=h!="3h"?b.1o(1):b.5u();I((a[h]||"").1i(g)!=-1)H a;O(a=0;d&&a<d.L&&i==N;a++)i=p(d[a],b,c);H i}6 C(a,b){K c={},d;O(d 2g a)c[d]=a[d];O(d 2g b)c[d]=b[d];H c}6 w(a,b,c,d){6 h(g){g=g||1P.5y;I(!g.1F){g.1F=g.52;g.3N=6(){J.5w=11}}c.W(d||1P,g)}a.3g?a.3g("4U"+b,h):a.4y(b,h,11)}6 A(a,b){K c=e.1Y.2j,d=N;I(c==N){c={};O(K h 2g e.1U){K g=e.1U[h];d=g.4x;I(d!=N){g.1V=h.4w();O(g=0;g<d.L;g++)c[d[g]]=h}}e.1Y.2j=c}d=e.1U[c[a]];d==N&&b!=11&&1P.1X(e.13.1x.1X+(e.13.1x.3E+a));H d}6 v(a,b){O(K c=a.1e("\\n"),d=0;d<c.L;d++)c[d]=b(c[d],d);H c.1K("\\n")}6 u(a,b){I(a==N||a.L==0||a=="\\n")H a;a=a.Q(/</g,"&1y;");a=a.Q(/ {2,}/g,6(c){O(K d="",h=0;h<c.L-1;h++)d+=e.13.1W;H d+" "});I(b!=N)a=v(a,6(c){I(c.L==0)H"";K d="";c=c.Q(/^(&2s;| )+/,6(h){d=h;H""});I(c.L==0)H d;H d+\'<17 1g="\'+b+\'">\'+c+"</17>"});H a}6 n(a,b){a.1e("\\n");O(K c="",d=0;d<50;d++)c+=" ";H a=v(a,6(h){I(h.1i("\\t")==-1)H h;O(K g=0;(g=h.1i("\\t"))!=-1;)h=h.1o(0,g)+c.1o(0,b-g%b)+h.1o(g+1,h.L);H h})}6 x(a){H a.Q(/^\\s+|\\s+$/g,"")}6 D(a,b){I(a.P<b.P)H-1;Y I(a.P>b.P)H 1;Y I(a.L<b.L)H-1;Y I(a.L>b.L)H 1;H 0}6 y(a,b){6 c(k){H k[0]}O(K d=N,h=[],g=b.2D?b.2D:c;(d=b.1I.X(a))!=N;){K i=g(d,b);I(1j i=="3f")i=[1f e.2L(i,d.P,b.23)];h=h.1O(i)}H h}6 E(a){K b=/(.*)((&1G;|&1y;).*)/;H a.Q(e.3A.3M,6(c){K d="",h=N;I(h=b.X(c)){c=h[1];d=h[2]}H\'<a 2h="\'+c+\'">\'+c+"</a>"+d})}6 z(){O(K a=1E.36("1k"),b=[],c=0;c<a.L;c++)a[c].3s=="20"&&b.U(a[c]);H b}6 f(a){a=a.1F;K b=p(a,".20",R);a=p(a,".3O",R);K c=1E.4i("3t");I(!(!a||!b||p(a,"3t"))){B(b.1c);r(b,"1m");O(K d=a.3G,h=[],g=0;g<d.L;g++)h.U(d[g].4z||d[g].4A);h=h.1K("\\r");c.39(1E.4D(h));a.39(c);c.2C();c.4C();w(c,"4u",6(){c.2G.4E(c);b.1l=b.1l.Q("1m","")})}}I(1j 3F!="1d"&&1j M=="1d")M=3F("M").M;K e={2v:{"1g-27":"","2i-1s":1,"2z-1s-2t":11,1M:N,1t:N,"42-45":R,"43-22":4,1u:R,16:R,"3V-17":R,2l:11,"41-40":R,2k:11,"1z-1k":11},13:{1W:"&2s;",2M:R,46:11,44:11,34:"4n",1x:{21:"4o 1m",2P:"?",1X:"1v\\n\\n",3E:"4r\'t 4t 1D O: ",4g:"4m 4B\'t 51 O 1z-1k 4F: ",37:\'<!4T 1z 4S "-//4V//3H 4W 1.0 4Z//4Y" "1Z://2y.3L.3K/4X/3I/3H/3I-4P.4J"><1z 4I="1Z://2y.3L.3K/4L/5L"><3J><4N 1Z-4M="5G-5M" 6K="2O/1z; 6J=6I-8" /><1t>6L 1v</1t></3J><3B 1L="25-6M:6Q,6P,6O,6N-6F;6y-2f:#6x;2f:#6w;25-22:6v;2O-3D:3C;"><T 1L="2O-3D:3C;3w-32:1.6z;"><T 1L="25-22:6A-6E;">1v</T><T 1L="25-22:.6C;3w-6B:6R;"><T>3v 3.0.76 (72 73 3x)</T><T><a 2h="1Z://3u.2w/1v" 1F="38" 1L="2f:#3y">1Z://3u.2w/1v</a></T><T>70 17 6U 71.</T><T>6T 6X-3x 6Y 6D.</T></T><T>6t 61 60 J 1k, 5Z <a 2h="6u://2y.62.2w/63-66/65?64=5X-5W&5P=5O" 1L="2f:#3y">5R</a> 5V <2R/>5U 5T 5S!</T></T></3B></1z>\'}},1Y:{2j:N,2A:{}},1U:{},3A:{6n:/\\/\\*[\\s\\S]*?\\*\\//2c,6m:/\\/\\/.*$/2c,6l:/#.*$/2c,6k:/"([^\\\\"\\n]|\\\\.)*"/g,6o:/\'([^\\\\\'\\n]|\\\\.)*\'/g,6p:1f M(\'"([^\\\\\\\\"]|\\\\\\\\.)*"\',"3z"),6s:1f M("\'([^\\\\\\\\\']|\\\\\\\\.)*\'","3z"),6q:/(&1y;|<)!--[\\s\\S]*?--(&1G;|>)/2c,3M:/\\w+:\\/\\/[\\w-.\\/?%&=:@;]*/g,6a:{18:/(&1y;|<)\\?=?/g,1b:/\\?(&1G;|>)/g},69:{18:/(&1y;|<)%=?/g,1b:/%(&1G;|>)/g},6d:{18:/(&1y;|<)\\s*1k.*?(&1G;|>)/2T,1b:/(&1y;|<)\\/\\s*1k\\s*(&1G;|>)/2T}},16:{1H:6(a){6 b(i,k){H e.16.2o(i,k,e.13.1x[k])}O(K c=\'<T 1g="16">\',d=e.16.2x,h=d.2X,g=0;g<h.L;g++)c+=(d[h[g]].1H||b)(a,h[g]);c+="</T>";H c},2o:6(a,b,c){H\'<2W><a 2h="#" 1g="6e 6h\'+b+" "+b+\'">\'+c+"</a></2W>"},2b:6(a){K b=a.1F,c=b.1l||"";b=B(p(b,".20",R).1c);K d=6(h){H(h=15(h+"6f(\\\\w+)").X(c))?h[1]:N}("6g");b&&d&&e.16.2x[d].2B(b);a.3N()},2x:{2X:["21","2P"],21:{1H:6(a){I(a.V("2l")!=R)H"";K b=a.V("1t");H e.16.2o(a,"21",b?b:e.13.1x.21)},2B:6(a){a=1E.6j(t(a.1c));a.1l=a.1l.Q("47","")}},2P:{2B:6(){K a="68=0";a+=", 18="+(31.30-33)/2+", 32="+(31.2Z-2Y)/2+", 30=33, 2Z=2Y";a=a.Q(/^,/,"");a=1P.6Z("","38",a);a.2C();K b=a.1E;b.6W(e.13.1x.37);b.6V();a.2C()}}}},35:6(a,b){K c;I(b)c=[b];Y{c=1E.36(e.13.34);O(K d=[],h=0;h<c.L;h++)d.U(c[h]);c=d}c=c;d=[];I(e.13.2M)c=c.1O(z());I(c.L===0)H d;O(h=0;h<c.L;h++){O(K g=c[h],i=a,k=c[h].1l,j=3W 0,l={},m=1f M("^\\\\[(?<2V>(.*?))\\\\]$"),s=1f M("(?<27>[\\\\w-]+)\\\\s*:\\\\s*(?<1T>[\\\\w-%#]+|\\\\[.*?\\\\]|\\".*?\\"|\'.*?\')\\\\s*;?","g");(j=s.X(k))!=N;){K o=j.1T.Q(/^[\'"]|[\'"]$/g,"");I(o!=N&&m.1A(o)){o=m.X(o);o=o.2V.L>0?o.2V.1e(/\\s*,\\s*/):[]}l[j.27]=o}g={1F:g,1n:C(i,l)};g.1n.1D!=N&&d.U(g)}H d},1M:6(a,b){K c=J.35(a,b),d=N,h=e.13;I(c.L!==0)O(K g=0;g<c.L;g++){b=c[g];K i=b.1F,k=b.1n,j=k.1D,l;I(j!=N){I(k["1z-1k"]=="R"||e.2v["1z-1k"]==R){d=1f e.4l(j);j="4O"}Y I(d=A(j))d=1f d;Y 6H;l=i.3X;I(h.2M){l=l;K m=x(l),s=11;I(m.1i("<![6G[")==0){m=m.4h(9);s=R}K o=m.L;I(m.1i("]]\\>")==o-3){m=m.4h(0,o-3);s=R}l=s?m:l}I((i.1t||"")!="")k.1t=i.1t;k.1D=j;d.2Q(k);b=d.2F(l);I((i.1c||"")!="")b.1c=i.1c;i.2G.74(b,i)}}},2E:6(a){w(1P,"4k",6(){e.1M(a)})}};e.2E=e.2E;e.1M=e.1M;e.2L=6(a,b,c){J.1T=a;J.P=b;J.L=a.L;J.23=c;J.1V=N};e.2L.Z.1q=6(){H J.1T};e.4l=6(a){6 b(j,l){O(K m=0;m<j.L;m++)j[m].P+=l}K c=A(a),d,h=1f e.1U.5Y,g=J,i="2F 1H 2Q".1e(" ");I(c!=N){d=1f c;O(K k=0;k<i.L;k++)(6(){K j=i[k];g[j]=6(){H h[j].1p(h,14)}})();d.28==N?1P.1X(e.13.1x.1X+(e.13.1x.4g+a)):h.2J.U({1I:d.28.17,2D:6(j){O(K l=j.17,m=[],s=d.2J,o=j.P+j.18.L,F=d.28,q,G=0;G<s.L;G++){q=y(l,s[G]);b(q,o);m=m.1O(q)}I(F.18!=N&&j.18!=N){q=y(j.18,F.18);b(q,j.P);m=m.1O(q)}I(F.1b!=N&&j.1b!=N){q=y(j.1b,F.1b);b(q,j.P+j[0].5Q(j.1b));m=m.1O(q)}O(j=0;j<m.L;j++)m[j].1V=c.1V;H m}})}};e.4j=6(){};e.4j.Z={V:6(a,b){K c=J.1n[a];c=c==N?b:c;K d={"R":R,"11":11}[c];H d==N?c:d},3Y:6(a){H 1E.4i(a)},4c:6(a,b){K c=[];I(a!=N)O(K d=0;d<a.L;d++)I(1j a[d]=="2m")c=c.1O(y(b,a[d]));H J.4e(c.6b(D))},4e:6(a){O(K b=0;b<a.L;b++)I(a[b]!==N)O(K c=a[b],d=c.P+c.L,h=b+1;h<a.L&&a[b]!==N;h++){K g=a[h];I(g!==N)I(g.P>d)1N;Y I(g.P==c.P&&g.L>c.L)a[b]=N;Y I(g.P>=c.P&&g.P<d)a[h]=N}H a},4d:6(a){K b=[],c=2u(J.V("2i-1s"));v(a,6(d,h){b.U(h+c)});H b},3U:6(a){K b=J.V("1M",[]);I(1j b!="2m"&&b.U==N)b=[b];a:{a=a.1q();K c=3W 0;O(c=c=1Q.6c(c||0,0);c<b.L;c++)I(b[c]==a){b=c;1N a}b=-1}H b!=-1},2r:6(a,b,c){a=["1s","6i"+b,"P"+a,"6r"+(b%2==0?1:2).1q()];J.3U(b)&&a.U("67");b==0&&a.U("1N");H\'<T 1g="\'+a.1K(" ")+\'">\'+c+"</T>"},3Q:6(a,b){K c="",d=a.1e("\\n").L,h=2u(J.V("2i-1s")),g=J.V("2z-1s-2t");I(g==R)g=(h+d-1).1q().L;Y I(3R(g)==R)g=0;O(K i=0;i<d;i++){K k=b?b[i]:h+i,j;I(k==0)j=e.13.1W;Y{j=g;O(K l=k.1q();l.L<j;)l="0"+l;j=l}a=j;c+=J.2r(i,k,a)}H c},49:6(a,b){a=x(a);K c=a.1e("\\n");J.V("2z-1s-2t");K d=2u(J.V("2i-1s"));a="";O(K h=J.V("1D"),g=0;g<c.L;g++){K i=c[g],k=/^(&2s;|\\s)+/.X(i),j=N,l=b?b[g]:d+g;I(k!=N){j=k[0].1q();i=i.1o(j.L);j=j.Q(" ",e.13.1W)}i=x(i);I(i.L==0)i=e.13.1W;a+=J.2r(g,l,(j!=N?\'<17 1g="\'+h+\' 5N">\'+j+"</17>":"")+i)}H a},4f:6(a){H a?"<4a>"+a+"</4a>":""},4b:6(a,b){6 c(l){H(l=l?l.1V||g:g)?l+" ":""}O(K d=0,h="",g=J.V("1D",""),i=0;i<b.L;i++){K k=b[i],j;I(!(k===N||k.L===0)){j=c(k);h+=u(a.1o(d,k.P-d),j+"48")+u(k.1T,j+k.23);d=k.P+k.L+(k.75||0)}}h+=u(a.1o(d),c()+"48");H h},1H:6(a){K b="",c=["20"],d;I(J.V("2k")==R)J.1n.16=J.1n.1u=11;1l="20";J.V("2l")==R&&c.U("47");I((1u=J.V("1u"))==11)c.U("6S");c.U(J.V("1g-27"));c.U(J.V("1D"));a=a.Q(/^[ ]*[\\n]+|[\\n]*[ ]*$/g,"").Q(/\\r/g," ");b=J.V("43-22");I(J.V("42-45")==R)a=n(a,b);Y{O(K h="",g=0;g<b;g++)h+=" ";a=a.Q(/\\t/g,h)}a=a;a:{b=a=a;h=/<2R\\s*\\/?>|&1y;2R\\s*\\/?&1G;/2T;I(e.13.46==R)b=b.Q(h,"\\n");I(e.13.44==R)b=b.Q(h,"");b=b.1e("\\n");h=/^\\s*/;g=4Q;O(K i=0;i<b.L&&g>0;i++){K k=b[i];I(x(k).L!=0){k=h.X(k);I(k==N){a=a;1N a}g=1Q.4q(k[0].L,g)}}I(g>0)O(i=0;i<b.L;i++)b[i]=b[i].1o(g);a=b.1K("\\n")}I(1u)d=J.4d(a);b=J.4c(J.2J,a);b=J.4b(a,b);b=J.49(b,d);I(J.V("41-40"))b=E(b);1j 2H!="1d"&&2H.3S&&2H.3S.1C(/5s/)&&c.U("5t");H b=\'<T 1c="\'+t(J.1c)+\'" 1g="\'+c.1K(" ")+\'">\'+(J.V("16")?e.16.1H(J):"")+\'<3Z 5z="0" 5H="0" 5J="0">\'+J.4f(J.V("1t"))+"<3T><3P>"+(1u?\'<2d 1g="1u">\'+J.3Q(a)+"</2d>":"")+\'<2d 1g="17"><T 1g="3O">\'+b+"</T></2d></3P></3T></3Z></T>"},2F:6(a){I(a===N)a="";J.17=a;K b=J.3Y("T");b.3X=J.1H(a);J.V("16")&&w(p(b,".16"),"5c",e.16.2b);J.V("3V-17")&&w(p(b,".17"),"56",f);H b},2Q:6(a){J.1c=""+1Q.5d(1Q.5n()*5k).1q();e.1Y.2A[t(J.1c)]=J;J.1n=C(e.2v,a||{});I(J.V("2k")==R)J.1n.16=J.1n.1u=11},5j:6(a){a=a.Q(/^\\s+|\\s+$/g,"").Q(/\\s+/g,"|");H"\\\\b(?:"+a+")\\\\b"},5f:6(a){J.28={18:{1I:a.18,23:"1k"},1b:{1I:a.1b,23:"1k"},17:1f M("(?<18>"+a.18.1m+")(?<17>.*?)(?<1b>"+a.1b.1m+")","5o")}}};H e}();1j 2e!="1d"&&(2e.1v=1v);',62,441,'||||||function|||||||||||||||||||||||||||||||||||||return|if|this|var|length|XRegExp|null|for|index|replace|true||div|push|getParam|call|exec|else|prototype||false|lastIndex|config|arguments|RegExp|toolbar|code|left|captureNames|slice|right|id|undefined|split|new|class|addToken|indexOf|typeof|script|className|source|params|substr|apply|toString|String|line|title|gutter|SyntaxHighlighter|_xregexp|strings|lt|html|test|OUTSIDE_CLASS|match|brush|document|target|gt|getHtml|regex|global|join|style|highlight|break|concat|window|Math|isRegExp|throw|value|brushes|brushName|space|alert|vars|http|syntaxhighlighter|expandSource|size|css|case|font|Fa|name|htmlScript|dA|can|handler|gm|td|exports|color|in|href|first|discoveredBrushes|light|collapse|object|cache|getButtonHtml|trigger|pattern|getLineHtml|nbsp|numbers|parseInt|defaults|com|items|www|pad|highlighters|execute|focus|func|all|getDiv|parentNode|navigator|INSIDE_CLASS|regexList|hasFlag|Match|useScriptTags|hasNamedCapture|text|help|init|br|input|gi|Error|values|span|list|250|height|width|screen|top|500|tagName|findElements|getElementsByTagName|aboutDialog|_blank|appendChild|charAt|Array|copyAsGlobal|setFlag|highlighter_|string|attachEvent|nodeName|floor|backref|output|the|TypeError|sticky|Za|iterate|freezeTokens|scope|type|textarea|alexgorbatchev|version|margin|2010|005896|gs|regexLib|body|center|align|noBrush|require|childNodes|DTD|xhtml1|head|org|w3|url|preventDefault|container|tr|getLineNumbersHtml|isNaN|userAgent|tbody|isLineHighlighted|quick|void|innerHTML|create|table|links|auto|smart|tab|stripBrs|tabs|bloggerMode|collapsed|plain|getCodeLinesHtml|caption|getMatchesHtml|findMatches|figureOutLineNumbers|removeNestedMatches|getTitleHtml|brushNotHtmlScript|substring|createElement|Highlighter|load|HtmlScript|Brush|pre|expand|multiline|min|Can|ignoreCase|find|blur|extended|toLowerCase|aliases|addEventListener|innerText|textContent|wasn|select|createTextNode|removeChild|option|same|frame|xmlns|dtd|twice|1999|equiv|meta|htmlscript|transitional|1E3|expected|PUBLIC|DOCTYPE|on|W3C|XHTML|TR|EN|Transitional||configured|srcElement|Object|after|run|dblclick|matchChain|valueOf|constructor|default|switch|click|round|execAt|forHtmlScript|token|gimy|functions|getKeywords|1E6|escape|within|random|sgi|another|finally|supply|MSIE|ie|toUpperCase|catch|returnValue|definition|event|border|imsx|constructing|one|Infinity|from|when|Content|cellpadding|flags|cellspacing|try|xhtml|Type|spaces|2930402|hosted_button_id|lastIndexOf|donate|active|development|keep|to|xclick|_s|Xml|please|like|you|paypal|cgi|cmd|webscr|bin|highlighted|scrollbars|aspScriptTags|phpScriptTags|sort|max|scriptScriptTags|toolbar_item|_|command|command_|number|getElementById|doubleQuotedString|singleLinePerlComments|singleLineCComments|multiLineCComments|singleQuotedString|multiLineDoubleQuotedString|xmlComments|alt|multiLineSingleQuotedString|If|https|1em|000|fff|background|5em|xx|bottom|75em|Gorbatchev|large|serif|CDATA|continue|utf|charset|content|About|family|sans|Helvetica|Arial|Geneva|3em|nogutter|Copyright|syntax|close|write|2004|Alex|open|JavaScript|highlighter|July|02|replaceChild|offset|83'.split('|'),0,{}))
  622. ;(function()
  623. {
  624. // CommonJS
  625. typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
  626. function Brush()
  627. {
  628. function process(match, regexInfo)
  629. {
  630. var constructor = SyntaxHighlighter.Match,
  631. code = match[0],
  632. tag = new XRegExp('(&lt;|<)[\\s\\/\\?]*(?<name>[:\\w-\\.]+)', 'xg').exec(code),
  633. result = []
  634. ;
  635. if (match.attributes != null)
  636. {
  637. var attributes,
  638. regex = new XRegExp('(?<name> [\\w:\\-\\.]+)' +
  639. '\\s*=\\s*' +
  640. '(?<value> ".*?"|\'.*?\'|\\w+)',
  641. 'xg');
  642. while ((attributes = regex.exec(code)) != null)
  643. {
  644. result.push(new constructor(attributes.name, match.index + attributes.index, 'color1'));
  645. result.push(new constructor(attributes.value, match.index + attributes.index + attributes[0].indexOf(attributes.value), 'string'));
  646. }
  647. }
  648. if (tag != null)
  649. result.push(
  650. new constructor(tag.name, match.index + tag[0].indexOf(tag.name), 'keyword')
  651. );
  652. return result;
  653. }
  654. this.regexList = [
  655. { regex: new XRegExp('(\\&lt;|<)\\!\\[[\\w\\s]*?\\[(.|\\s)*?\\]\\](\\&gt;|>)', 'gm'), css: 'color2' }, // <![ ... [ ... ]]>
  656. { regex: SyntaxHighlighter.regexLib.xmlComments, css: 'comments' }, // <!-- ... -->
  657. { regex: new XRegExp('(&lt;|<)[\\s\\/\\?]*(\\w+)(?<attributes>.*?)[\\s\\/\\?]*(&gt;|>)', 'sg'), func: process }
  658. ];
  659. };
  660. Brush.prototype = new SyntaxHighlighter.Highlighter();
  661. Brush.aliases = ['xml', 'xhtml', 'xslt', 'html'];
  662. SyntaxHighlighter.brushes.Xml = Brush;
  663. // CommonJS
  664. typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
  665. })();
  666. ;(function()
  667. {
  668. // CommonJS
  669. typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
  670. function Brush()
  671. {
  672. var keywords = 'break case catch continue ' +
  673. 'default delete do else false ' +
  674. 'for function if in instanceof ' +
  675. 'new null return super switch ' +
  676. 'this throw true try typeof var while with'
  677. ;
  678. var r = SyntaxHighlighter.regexLib;
  679. this.regexList = [
  680. { regex: r.multiLineDoubleQuotedString, css: 'string' }, // double quoted strings
  681. { regex: r.multiLineSingleQuotedString, css: 'string' }, // single quoted strings
  682. { regex: r.singleLineCComments, css: 'comments' }, // one line comments
  683. { regex: r.multiLineCComments, css: 'comments' }, // multiline comments
  684. { regex: /\s*#.*/gm, css: 'preprocessor' }, // preprocessor tags like #region and #endregion
  685. { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keywords
  686. ];
  687. this.forHtmlScript(r.scriptScriptTags);
  688. };
  689. Brush.prototype = new SyntaxHighlighter.Highlighter();
  690. Brush.aliases = ['js', 'jscript', 'javascript'];
  691. SyntaxHighlighter.brushes.JScript = Brush;
  692. // CommonJS
  693. typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
  694. })();
  695. ;(function()
  696. {
  697. // CommonJS
  698. typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
  699. function Brush()
  700. {
  701. function getKeywordsCSS(str)
  702. {
  703. return '\\b([a-z_]|)' + str.replace(/ /g, '(?=:)\\b|\\b([a-z_\\*]|\\*|)') + '(?=:)\\b';
  704. };
  705. function getValuesCSS(str)
  706. {
  707. return '\\b' + str.replace(/ /g, '(?!-)(?!:)\\b|\\b()') + '\:\\b';
  708. };
  709. var keywords = 'ascent azimuth background-attachment background-color background-image background-position ' +
  710. 'background-repeat background baseline bbox border-collapse border-color border-spacing border-style border-top ' +
  711. 'border-right border-bottom border-left border-top-color border-right-color border-bottom-color border-left-color ' +
  712. 'border-top-style border-right-style border-bottom-style border-left-style border-top-width border-right-width ' +
  713. 'border-bottom-width border-left-width border-width border bottom cap-height caption-side centerline clear clip color ' +
  714. 'content counter-increment counter-reset cue-after cue-before cue cursor definition-src descent direction display ' +
  715. 'elevation empty-cells float font-size-adjust font-family font-size font-stretch font-style font-variant font-weight font ' +
  716. 'height left letter-spacing line-height list-style-image list-style-position list-style-type list-style margin-top ' +
  717. 'margin-right margin-bottom margin-left margin marker-offset marks mathline max-height max-width min-height min-width opacity orphans ' +
  718. 'outline-color outline-style outline-width outline overflow padding-top padding-right padding-bottom padding-left padding page ' +
  719. 'page-break-after page-break-before page-break-inside pause pause-after pause-before pitch pitch-range play-during position ' +
  720. 'quotes right richness size slope src speak-header speak-numeral speak-punctuation speak speech-rate stemh stemv stress ' +
  721. 'table-layout text-align top text-decoration text-indent text-shadow text-transform unicode-bidi unicode-range units-per-em ' +
  722. 'vertical-align visibility voice-family volume white-space widows width widths word-spacing x-height z-index';
  723. var values = 'above absolute all always aqua armenian attr aural auto avoid baseline behind below bidi-override black blink block blue bold bolder '+
  724. 'both bottom braille capitalize caption center center-left center-right circle close-quote code collapse compact condensed '+
  725. 'continuous counter counters crop cross crosshair cursive dashed decimal decimal-leading-zero default digits disc dotted double '+
  726. 'embed embossed e-resize expanded extra-condensed extra-expanded fantasy far-left far-right fast faster fixed format fuchsia '+
  727. 'gray green groove handheld hebrew help hidden hide high higher icon inline-table inline inset inside invert italic '+
  728. 'justify landscape large larger left-side left leftwards level lighter lime line-through list-item local loud lower-alpha '+
  729. 'lowercase lower-greek lower-latin lower-roman lower low ltr marker maroon medium message-box middle mix move narrower '+
  730. 'navy ne-resize no-close-quote none no-open-quote no-repeat normal nowrap n-resize nw-resize oblique olive once open-quote outset '+
  731. 'outside overline pointer portrait pre print projection purple red relative repeat repeat-x repeat-y rgb ridge right right-side '+
  732. 'rightwards rtl run-in screen scroll semi-condensed semi-expanded separate se-resize show silent silver slower slow '+
  733. 'small small-caps small-caption smaller soft solid speech spell-out square s-resize static status-bar sub super sw-resize '+
  734. 'table-caption table-cell table-column table-column-group table-footer-group table-header-group table-row table-row-group teal '+
  735. 'text-bottom text-top thick thin top transparent tty tv ultra-condensed ultra-expanded underline upper-alpha uppercase upper-latin '+
  736. 'upper-roman url visible wait white wider w-resize x-fast x-high x-large x-loud x-low x-slow x-small x-soft xx-large xx-small yellow';
  737. var fonts = '[mM]onospace [tT]ahoma [vV]erdana [aA]rial [hH]elvetica [sS]ans-serif [sS]erif [cC]ourier mono sans serif';
  738. this.regexList = [
  739. { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
  740. { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
  741. { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
  742. { regex: /\#[a-fA-F0-9]{3,6}/g, css: 'value' }, // html colors
  743. { regex: /(-?\d+)(\.\d+)?(px|em|pt|\:|\%|)/g, css: 'value' }, // sizes
  744. { regex: /!important/g, css: 'color3' }, // !important
  745. { regex: new RegExp(getKeywordsCSS(keywords), 'gm'), css: 'keyword' }, // keywords
  746. { regex: new RegExp(getValuesCSS(values), 'g'), css: 'value' }, // values
  747. { regex: new RegExp(this.getKeywords(fonts), 'g'), css: 'color1' } // fonts
  748. ];
  749. this.forHtmlScript({
  750. left: /(&lt;|<)\s*style.*?(&gt;|>)/gi,
  751. right: /(&lt;|<)\/\s*style\s*(&gt;|>)/gi
  752. });
  753. };
  754. Brush.prototype = new SyntaxHighlighter.Highlighter();
  755. Brush.aliases = ['css'];
  756. SyntaxHighlighter.brushes.CSS = Brush;
  757. // CommonJS
  758. typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
  759. })();
  760. ;(function()
  761. {
  762. // CommonJS
  763. typeof(require) != 'undefined' ? SyntaxHighlighter = require('shCore').SyntaxHighlighter : null;
  764. function Brush()
  765. {
  766. var funcs = 'abs acos acosh addcslashes addslashes ' +
  767. 'array_change_key_case array_chunk array_combine array_count_values array_diff '+
  768. 'array_diff_assoc array_diff_key array_diff_uassoc array_diff_ukey array_fill '+
  769. 'array_filter array_flip array_intersect array_intersect_assoc array_intersect_key '+
  770. 'array_intersect_uassoc array_intersect_ukey array_key_exists array_keys array_map '+
  771. 'array_merge array_merge_recursive array_multisort array_pad array_pop array_product '+
  772. 'array_push array_rand array_reduce array_reverse array_search array_shift '+
  773. 'array_slice array_splice array_sum array_udiff array_udiff_assoc '+
  774. 'array_udiff_uassoc array_uintersect array_uintersect_assoc '+
  775. 'array_uintersect_uassoc array_unique array_unshift array_values array_walk '+
  776. 'array_walk_recursive atan atan2 atanh base64_decode base64_encode base_convert '+
  777. 'basename bcadd bccomp bcdiv bcmod bcmul bindec bindtextdomain bzclose bzcompress '+
  778. 'bzdecompress bzerrno bzerror bzerrstr bzflush bzopen bzread bzwrite ceil chdir '+
  779. 'checkdate checkdnsrr chgrp chmod chop chown chr chroot chunk_split class_exists '+
  780. 'closedir closelog copy cos cosh count count_chars date decbin dechex decoct '+
  781. 'deg2rad delete ebcdic2ascii echo empty end ereg ereg_replace eregi eregi_replace error_log '+
  782. 'error_reporting escapeshellarg escapeshellcmd eval exec exit exp explode extension_loaded '+
  783. 'feof fflush fgetc fgetcsv fgets fgetss file_exists file_get_contents file_put_contents '+
  784. 'fileatime filectime filegroup fileinode filemtime fileowner fileperms filesize filetype '+
  785. 'floatval flock floor flush fmod fnmatch fopen fpassthru fprintf fputcsv fputs fread fscanf '+
  786. 'fseek fsockopen fstat ftell ftok getallheaders getcwd getdate getenv gethostbyaddr gethostbyname '+
  787. 'gethostbynamel getimagesize getlastmod getmxrr getmygid getmyinode getmypid getmyuid getopt '+
  788. 'getprotobyname getprotobynumber getrandmax getrusage getservbyname getservbyport gettext '+
  789. 'gettimeofday gettype glob gmdate gmmktime ini_alter ini_get ini_get_all ini_restore ini_set '+
  790. 'interface_exists intval ip2long is_a is_array is_bool is_callable is_dir is_double '+
  791. 'is_executable is_file is_finite is_float is_infinite is_int is_integer is_link is_long '+
  792. 'is_nan is_null is_numeric is_object is_readable is_real is_resource is_scalar is_soap_fault '+
  793. 'is_string is_subclass_of is_uploaded_file is_writable is_writeable mkdir mktime nl2br '+
  794. 'parse_ini_file parse_str parse_url passthru pathinfo print readlink realpath rewind rewinddir rmdir '+
  795. 'round str_ireplace str_pad str_repeat str_replace str_rot13 str_shuffle str_split '+
  796. 'str_word_count strcasecmp strchr strcmp strcoll strcspn strftime strip_tags stripcslashes '+
  797. 'stripos stripslashes stristr strlen strnatcasecmp strnatcmp strncasecmp strncmp strpbrk '+
  798. 'strpos strptime strrchr strrev strripos strrpos strspn strstr strtok strtolower strtotime '+
  799. 'strtoupper strtr strval substr substr_compare';
  800. var keywords = 'abstract and array as break case catch cfunction class clone const continue declare default die do ' +
  801. 'else elseif enddeclare endfor endforeach endif endswitch endwhile extends final for foreach ' +
  802. 'function include include_once global goto if implements interface instanceof namespace new ' +
  803. 'old_function or private protected public return require require_once static switch ' +
  804. 'throw try use var while xor ';
  805. var constants = '__FILE__ __LINE__ __METHOD__ __FUNCTION__ __CLASS__';
  806. this.regexList = [
  807. { regex: SyntaxHighlighter.regexLib.singleLineCComments, css: 'comments' }, // one line comments
  808. { regex: SyntaxHighlighter.regexLib.multiLineCComments, css: 'comments' }, // multiline comments
  809. { regex: SyntaxHighlighter.regexLib.doubleQuotedString, css: 'string' }, // double quoted strings
  810. { regex: SyntaxHighlighter.regexLib.singleQuotedString, css: 'string' }, // single quoted strings
  811. { regex: /\$\w+/g, css: 'variable' }, // variables
  812. { regex: new RegExp(this.getKeywords(funcs), 'gmi'), css: 'functions' }, // common functions
  813. { regex: new RegExp(this.getKeywords(constants), 'gmi'), css: 'constants' }, // constants
  814. { regex: new RegExp(this.getKeywords(keywords), 'gm'), css: 'keyword' } // keyword
  815. ];
  816. this.forHtmlScript(SyntaxHighlighter.regexLib.phpScriptTags);
  817. };
  818. Brush.prototype = new SyntaxHighlighter.Highlighter();
  819. Brush.aliases = ['php'];
  820. SyntaxHighlighter.brushes.Php = Brush;
  821. // CommonJS
  822. typeof(exports) != 'undefined' ? exports.Brush = Brush : null;
  823. })();
  824. /*! Copyright (c) 2011 Brandon Aaron (http://brandonaaron.net)
  825. * Licensed under the MIT License (LICENSE.txt).
  826. *
  827. * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
  828. * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
  829. * Thanks to: Seamus Leahy for adding deltaX and deltaY
  830. *
  831. * Version: 3.0.6
  832. *
  833. * Requires: 1.2.2+
  834. */
  835. (function($) {
  836. var types = ['DOMMouseScroll', 'mousewheel'];
  837. if ($.event.fixHooks) {
  838. for ( var i=types.length; i; ) {
  839. $.event.fixHooks[ types[--i] ] = $.event.mouseHooks;
  840. }
  841. }
  842. $.event.special.mousewheel = {
  843. setup: function() {
  844. if ( this.addEventListener ) {
  845. for ( var i=types.length; i; ) {
  846. this.addEventListener( types[--i], handler, false );
  847. }
  848. } else {
  849. this.onmousewheel = handler;
  850. }
  851. },
  852. teardown: function() {
  853. if ( this.removeEventListener ) {
  854. for ( var i=types.length; i; ) {
  855. this.removeEventListener( types[--i], handler, false );
  856. }
  857. } else {
  858. this.onmousewheel = null;
  859. }
  860. }
  861. };
  862. $.fn.extend({
  863. mousewheel: function(fn) {
  864. return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel");
  865. },
  866. unmousewheel: function(fn) {
  867. return this.unbind("mousewheel", fn);
  868. }
  869. });
  870. function handler(event) {
  871. var orgEvent = event || window.event, args = [].slice.call( arguments, 1 ), delta = 0, returnValue = true, deltaX = 0, deltaY = 0;
  872. event = $.event.fix(orgEvent);
  873. event.type = "mousewheel";
  874. // Old school scrollwheel delta
  875. if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta/120; }
  876. if ( orgEvent.detail ) { delta = -orgEvent.detail/3; }
  877. // New school multidimensional scroll (touchpads) deltas
  878. deltaY = delta;
  879. // Gecko
  880. if ( orgEvent.axis !== undefined && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) {
  881. deltaY = 0;
  882. deltaX = -1*delta;
  883. }
  884. // Webkit
  885. if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY/120; }
  886. if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = -1*orgEvent.wheelDeltaX/120; }
  887. // Add event and delta to the front of the arguments
  888. args.unshift(event, delta, deltaX, deltaY);
  889. return ($.event.dispatch || $.event.handle).apply(this, args);
  890. }
  891. })(jQuery);