aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel Lange <DLange@git.local>2023-01-11 18:37:50 +0100
committerDaniel Lange <DLange@git.local>2023-01-11 18:37:50 +0100
commit905ff727e387ac6a86245d3d1500e435c99c2415 (patch)
tree75e124f92fae51fed8f1b29cfda40fa33038ba2d
parentba8e410b3e20c4001cd49e537dd27acb5296b391 (diff)
downloadstikked-fit-905ff727e387ac6a86245d3d1500e435c99c2415.tar.gz
stikked-fit-905ff727e387ac6a86245d3d1500e435c99c2415.tar.bz2
stikked-fit-905ff727e387ac6a86245d3d1500e435c99c2415.zip
Remove stray julia.php.bak file (came in via 67351dbd817ffb22ea7d0fcba296d6636113a7c0)
-rw-r--r--htdocs/application/libraries/geshi/geshi/julia.php.bak172
1 files changed, 0 insertions, 172 deletions
diff --git a/htdocs/application/libraries/geshi/geshi/julia.php.bak b/htdocs/application/libraries/geshi/geshi/julia.php.bak
deleted file mode 100644
index 8c717c0..0000000
--- a/htdocs/application/libraries/geshi/geshi/julia.php.bak
+++ /dev/null
@@ -1,172 +0,0 @@
-<?php
-/*************************************************************************************
- * julia.php
- * -----------
- * Author: John Lynch (john.lynch@iname.com)
- * Copyright: (c) 2013 John Lynch
- * Release Version: 1.0.8.12
- * Date Started: 2013/11/06
- *
- * Julia language file for GeSHi.
- *
- * CHANGES
- * -------
- *
- * 2013/11/?? (1.0.0)
- * - First Release
- *
- *
- *************************************************************************************
- *
- * This file is part of GeSHi.
- *
- * GeSHi is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * GeSHi is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with GeSHi; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- *
- ************************************************************************************/
-
-$language_data = array (
- 'LANG_NAME' => 'Julia',
- 'COMMENT_SINGLE' => array(1 => '#'),
- 'COMMENT_MULTI' => array(),
- 'CASE_KEYWORDS' => GESHI_CAPS_NO_CHANGE,
- //Longest quotemarks ALWAYS first
- 'QUOTEMARKS' => array('"""', '"', "'"),
- 'ESCAPE_CHAR' => '\\',
- 'KEYWORDS' => array(
-
- /*
- ** reserved words
- */
- 1 => array(
- 'function', 'global', 'for', 'end', 'while', 'if', 'else', 'elseif', 'break',
- 'switch', 'case', 'otherwise', 'try', 'catch', 'end', 'const', 'immutable',
- 'import', 'importall', 'export', 'type', 'typealias', 'return', 'true',
- 'false', 'macro', 'quote', 'in', 'abstract', 'module', 'using', 'continue',
- 'ifelse', 'do', 'eval', 'let', 'finally', 'throw'
- ),
-
- /*
- ** builtins
- */
- 2 => array(
- 'Array', 'String', 'Bool', 'Number', 'Int', 'Integer', 'Real', 'Complex',
- 'FloatingPoint', 'Float64', 'Float32', 'Int8', 'Int16', 'Int32', 'Int64',
- 'Rational', 'AbstractArray', 'Unsigned', 'Signed', 'Uint', 'Uint8', 'Uint16',
- 'Uint32', 'Uint64', 'Vector', 'AbstractVector', 'Matrix', 'AbstractMatrix',
- 'Type', 'IO', 'Any', 'ASCIIString', 'Union', 'Dict', 'Function', 'SubArray',
- 'Range', 'Range1', 'Symbol', 'Expr',
-
- 'cell', 'collect', 'filter', 'merge', 'divrem', 'hex', 'dec', 'oct', 'base',
- 'int', 'round', 'cmp', 'float', 'linspace', 'fill', 'start', 'done', 'tuple',
- 'minimum', 'maximum', 'count', 'index', 'append', 'push', 'pop', 'shift',
- 'unshift', 'insert', 'splice', 'reverse', 'sort', 'zip', 'length', 'delete',
- 'copy', 'haskey', 'keys', 'values', 'get', 'getkey', 'Set', 'isa', 'issubset',
- 'intersect', 'setdiff', 'symdiff', 'complement', 'print', 'printf', 'println',
- 'sprintf', 'join', 'utf8', 'char', 'search', 'rsearch', 'beginswith', 'endswith',
- 'replace', 'lowercase', 'uppercase', 'ucfirst', 'lcfirst', 'union',
- 'split', 'rsplit', 'chop', 'chomp', 'lpad', 'rpad', 'lstrip', 'rstrip',
- 'strip', 'isalnum', 'isalpha', 'isascii', 'isblank', 'iscntrl', 'isdigit',
- 'isgraph', 'islower', 'isprint', 'ispunct', 'isspace', 'isupper', 'isxdigit',
- 'match', 'captures', 'offset', 'offsets', 'matchall', 'eachmatch', 'hcat',
- 'vcat', 'hvcat', 'reshape', 'deepcopy', 'similar', 'reinterpret', 'map',
- 'reduce', 'mapreduce', 'DataArray', 'DataFrame', 'removeNA', 'replaceNA',
- 'colnames', 'head', 'tail', 'describe', 'join', 'groupby', 'by', 'stack',
- 'readtable', 'readcsv', 'readdlm', 'writetable', 'writecsv', 'writedlm',
- 'require', 'reload', 'include', 'evalfile', 'cd', 'open', 'write', 'close',
- 'position', 'seek', 'seekstart', 'seekend', 'skip', 'isopen', 'eof',
- 'isreadonly', 'ltoh', 'htol', 'serialize', 'deserialize', 'download',
- 'in', 'isequal', 'getindex', 'setindex', 'eachline', 'beginswith', 'endswith',
- 'parsefloat', 'parseint', 'seekend', 'findnz', 'DivideError', 'addprocs',
- 'scale', 'issubnormal', 'readdir', 'mapslices'
- ),
-
- /*
- ** system interaction
- */
- 3 => array(
- 'run', 'spawn', 'success', 'process_running', 'process_exited', 'kill',
- 'readsfrom', 'writesto', 'readsandwrite', 'detach', 'setenv', 'ENV', 'getpid',
- 'clipboard', 'strftime', 'time', 'cd', 'gethostname', 'getipaddr', 'pwd',
- 'mkdir', 'mkpath', 'rmdir', 'ignorestatus'
- ),
- /*
- ** prompt
- */
- 4 => array(
- 'julia>'
- )
- ),
- 'SYMBOLS' => array(
- '(', ')', '[', ']', '{', '}', '*', '&', '|', '%', '!', ';', '<', '>', '?', '`'
- ),
- 'CASE_SENSITIVE' => array(
- GESHI_COMMENTS => false,
- 1 => true,
- 2 => true,
- 3 => true,
- 4 => true
- ),
- 'STYLES' => array(
- 'KEYWORDS' => array(
- 1 => 'color: #4266d5;font-weight:bold;', // Reserved
- 2 => 'color: #0000A8;font-weight:bold;', // Built-ins
- 3 => 'color: #0000A8;font-weight:bold;', // System Interaction
- 4 => 'color: #3b972e;font-weight:bold;' // Prompt
- ),
- 'COMMENTS' => array(
- 1 => 'color: #888888;',
- 'MULTI' => 'color: #888888;'
- ),
- 'ESCAPE_CHAR' => array(
- 0 => 'color: #000099; font-weight: bold;'
- ),
- 'BRACKETS' => array(
- 0 => 'color: #3b972e;'
- ),
- 'STRINGS' => array(
- 0 => 'color: #c93d39;'
- ),
- 'NUMBERS' => array(
- 0 => 'color: black;'
- ),
- 'METHODS' => array(
- 1 => 'color: black;'
- ),
- 'SYMBOLS' => array(
- 0 => 'color: #6bab5b;'
- ),
- 'REGEXPS' => array(
- ),
- 'SCRIPT' => array(
- )
- ),
- 'URLS' => array(
- 1 => '',
- 2 => '',
- 3 => '',
- 4 => ''
- ),
- 'OOLANG' => true,
- 'OBJECT_SPLITTERS' => array(
- 1 => '.'
- ),
- 'REGEXPS' => array(
- ),
- 'STRICT_MODE_APPLIES' => GESHI_NEVER,
- 'SCRIPT_DELIMITERS' => array(
- ),
- 'HIGHLIGHT_STRICT_BLOCK' => array(
- )
-);

© 2014-2024 Faster IT GmbH | imprint | privacy policy