A PHP Error was encountered

Severity: 8192

Message: Function create_function() is deprecated

Filename: geshi/geshi.php

Line Number: 4698

Backtrace:

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4698
Function: _error_handler

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 4621
Function: _optimize_regexp_list_tokens_to_string

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 1655
Function: optimize_regexp_list

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2029
Function: optimize_keyword_group

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/geshi/geshi.php
Line: 2168
Function: build_parse_cache

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/libraries/Process.php
Line: 45
Function: parse_code

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/models/Pastes.php
Line: 517
Function: syntax

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/application/controllers/Main.php
Line: 693
Function: getPaste

File: /home/httpd/vhosts/scratchbook.ch/geopaste.scratchbook.ch/index.php
Line: 315
Function: require_once

Untitled - Stikked
From Botched Cassowary, 13 Years ago, written in JavaScript.
Embed
  1. SC.mixin(SC.StatechartManager, SC.DelegateSupport, SC.StatechartDelegate);
  2.  
  3. /**
  4.   The default name given to a statechart's root state
  5. */
  6. SC.ROOT_STATE_NAME = "__ROOT_STATE__";
  7.  
  8. /**
  9.   Constants used during the state transition process
  10. */
  11. SC.EXIT_STATE = 0;
  12. SC.ENTER_STATE = 1;
  13.  
  14. /**
  15.   A Startchart class.
  16. */
  17. SC.Statechart = SC.Object.extend(SC.StatechartManager, {
  18.   autoInitStatechart: false
  19. });
  20.  
  21. })({});
  22.  
  23.  
  24. (function(exports) {
  25. // ==========================================================================
  26. // Project:   SproutCore Statechart
  27. // Copyright: ©2006-2011 Strobe Inc. and contributors.
  28. //            Portions ©2008-2011 Apple Inc. All rights reserved.
  29. // License:   Licensed under MIT license (see license.js)
  30. // ==========================================================================
  31. })({});
  32.