File manager - Edit - /home/newsbmcs.com/public_html/static/img/logo/test.js.tar
Back
usr/local/CyberCP/cyberpanel/static/filemanager/mode/dockerfile/test.js 0000644 00000012156 15030016715 0022176 0 ustar 00 // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE (function() { var mode = CodeMirror.getMode({indentUnit: 2}, "text/x-dockerfile"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } MT("simple_nodejs_dockerfile", "[keyword FROM] node:carbon", "[comment # Create app directory]", "[keyword WORKDIR] /usr/src/app", "[comment # Install app dependencies]", "[comment # A wildcard is used to ensure both package.json AND package-lock.json are copied]", "[comment # where available (npm@5+)]", "[keyword COPY] package*.json ./", "[keyword RUN] npm install", "[keyword COPY] . .", "[keyword EXPOSE] [number 8080] [number 3000]", "[keyword ENV] NODE_ENV development", "[keyword CMD] [[ [string \"npm\"], [string \"start\"] ]]"); // Ideally the last space should not be highlighted. MT("instruction_without_args_1", "[keyword CMD] "); MT("instruction_without_args_2", "[comment # An instruction without args...]", "[keyword ARG] [error #...is an error]"); MT("multiline", "[keyword RUN] apt-get update && apt-get install -y \\", " mercurial \\", " subversion \\", " && apt-get clean \\", " && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*"); MT("from_comment", " [keyword FROM] debian:stretch # I tend to use stable as that is more stable", " [keyword FROM] debian:stretch [keyword AS] stable # I am even more stable", " [keyword FROM] [error # this is an error]"); MT("from_as", "[keyword FROM] golang:1.9.2-alpine3.6 [keyword AS] build", "[keyword COPY] --from=build /bin/project /bin/project", "[keyword ENTRYPOINT] [[ [string \"/bin/project\"] ]]", "[keyword CMD] [[ [string \"--help\"] ]]"); MT("arg", "[keyword ARG] VERSION=latest", "[keyword FROM] busybox:$VERSION", "[keyword ARG] VERSION", "[keyword RUN] echo $VERSION > image_version"); MT("label", "[keyword LABEL] com.example.label-with-value=[string \"foo\"]"); MT("label_multiline", "[keyword LABEL] description=[string \"This text illustrates ]\\", "[string that label-values can span multiple lines.\"]"); MT("maintainer", "[keyword MAINTAINER] Foo Bar [string \"foo@bar.com\"] ", "[keyword MAINTAINER] Bar Baz <bar@baz.com>"); MT("env", "[keyword ENV] BUNDLE_PATH=[string \"$GEM_HOME\"] \\", " BUNDLE_APP_CONFIG=[string \"$GEM_HOME\"]"); MT("verify_keyword", "[keyword RUN] add-apt-repository ppa:chris-lea/node.js"); MT("scripts", "[comment # Set an entrypoint, to automatically install node modules]", "[keyword ENTRYPOINT] [[ [string \"/bin/bash\"], [string \"-c\"], [string \"if [[ ! -d node_modules ]]; then npm install; fi; exec \\\"${@:0}\\\";\"] ]]", "[keyword CMD] npm start", "[keyword RUN] npm run build && \\", "[comment # a comment between the shell commands]", " npm run test"); MT("strings_single", "[keyword FROM] buildpack-deps:stretch", "[keyword RUN] { \\", " echo [string 'install: --no-document']; \\", " echo [string 'update: --no-document']; \\", " } >> /usr/local/etc/gemrc"); MT("strings_single_multiline", "[keyword RUN] set -ex \\", " \\", " && buildDeps=[string ' ]\\", "[string bison ]\\", "[string dpkg-dev ]\\", "[string libgdbm-dev ]\\", "[string ruby ]\\", "[string '] \\", " && apt-get update"); MT("strings_single_multiline_2", "[keyword RUN] echo [string 'say \\' ]\\", "[string it works'] "); MT("strings_double", "[keyword RUN] apt-get install -y --no-install-recommends $buildDeps \\", " \\", " && wget -O ruby.tar.xz [string \"https://cache.ruby-lang.org/pub/ruby/${RUBY_MAJOR%-rc}/ruby-$RUBY_VERSION.tar.xz\"] \\", " && echo [string \"$RUBY_DOWNLOAD_SHA256 *ruby.tar.xz\"] | sha256sum -c - "); MT("strings_double_multiline", "[keyword RUN] echo [string \"say \\\" ]\\", "[string it works\"] "); MT("escape", "[comment # escape=`]", "[keyword FROM] microsoft/windowsservercore", "[keyword RUN] powershell.exe -Command `", " $ErrorActionPreference = [string 'Stop']; `", " wget https://www.python.org/ftp/python/3.5.1/python-3.5.1.exe -OutFile c:\python-3.5.1.exe ; `", " Start-Process c:\python-3.5.1.exe -ArgumentList [string '/quiet InstallAllUsers=1 PrependPath=1'] -Wait ; `", " Remove-Item c:\python-3.5.1.exe -Force)"); MT("escape_strings", "[comment # escape=`]", "[keyword FROM] python:3.6-windowsservercore [keyword AS] python", "[keyword RUN] $env:PATH = [string 'C:\\Python;C:\\Python\\Scripts;{0}'] -f $env:PATH ; `", // It should not consider \' as escaped. // " Set-ItemProperty -Path [string 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\\'] -Name Path -Value $env:PATH ;"); " Set-ItemProperty -Path [string 'HKLM:\\SYSTEM\\CurrentControlSet\\Control\\Session Manager\\Environment\\' -Name Path -Value $env:PATH ;]"); })(); usr/local/CyberCP/cyberpanel/static/filemanager/mode/css/test.js 0000644 00000016541 15030037271 0020661 0 ustar 00 // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE (function() { var mode = CodeMirror.getMode({indentUnit: 2}, "css"); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } // Error, because "foobarhello" is neither a known type or property, but // property was expected (after "and"), and it should be in parentheses. MT("atMediaUnknownType", "[def @media] [attribute screen] [keyword and] [error foobarhello] { }"); // Soft error, because "foobarhello" is not a known property or type. MT("atMediaUnknownProperty", "[def @media] [attribute screen] [keyword and] ([error foobarhello]) { }"); // Make sure nesting works with media queries MT("atMediaMaxWidthNested", "[def @media] [attribute screen] [keyword and] ([property max-width]: [number 25px]) { [tag foo] { } }"); MT("atMediaFeatureValueKeyword", "[def @media] ([property orientation]: [keyword landscape]) { }"); MT("atMediaUnknownFeatureValueKeyword", "[def @media] ([property orientation]: [error upsidedown]) { }"); MT("atMediaUppercase", "[def @MEDIA] ([property orienTAtion]: [keyword landScape]) { }"); MT("tagSelector", "[tag foo] { }"); MT("classSelector", "[qualifier .foo-bar_hello] { }"); MT("idSelector", "[builtin #foo] { [error #foo] }"); MT("tagSelectorUnclosed", "[tag foo] { [property margin]: [number 0] } [tag bar] { }"); MT("tagStringNoQuotes", "[tag foo] { [property font-family]: [variable hello] [variable world]; }"); MT("tagStringDouble", "[tag foo] { [property font-family]: [string \"hello world\"]; }"); MT("tagStringSingle", "[tag foo] { [property font-family]: [string 'hello world']; }"); MT("tagColorKeyword", "[tag foo] {", " [property color]: [keyword black];", " [property color]: [keyword navy];", " [property color]: [keyword yellow];", "}"); MT("tagColorHex3", "[tag foo] { [property background]: [atom #fff]; }"); MT("tagColorHex4", "[tag foo] { [property background]: [atom #ffff]; }"); MT("tagColorHex6", "[tag foo] { [property background]: [atom #ffffff]; }"); MT("tagColorHex8", "[tag foo] { [property background]: [atom #ffffffff]; }"); MT("tagColorHex5Invalid", "[tag foo] { [property background]: [atom&error #fffff]; }"); MT("tagColorHexInvalid", "[tag foo] { [property background]: [atom&error #ffg]; }"); MT("tagNegativeNumber", "[tag foo] { [property margin]: [number -5px]; }"); MT("tagPositiveNumber", "[tag foo] { [property padding]: [number 5px]; }"); MT("tagVendor", "[tag foo] { [meta -foo-][property box-sizing]: [meta -foo-][atom border-box]; }"); MT("tagBogusProperty", "[tag foo] { [property&error barhelloworld]: [number 0]; }"); MT("tagTwoProperties", "[tag foo] { [property margin]: [number 0]; [property padding]: [number 0]; }"); MT("tagTwoPropertiesURL", "[tag foo] { [property background]: [variable&callee url]([string //example.com/foo.png]); [property padding]: [number 0]; }"); MT("indent_tagSelector", "[tag strong], [tag em] {", " [property background]: [variable&callee rgba](", " [number 255], [number 255], [number 0], [number .2]", " );", "}"); MT("indent_atMedia", "[def @media] {", " [tag foo] {", " [property color]:", " [keyword yellow];", " }", "}"); MT("indent_comma", "[tag foo] {", " [property font-family]: [variable verdana],", " [atom sans-serif];", "}"); MT("indent_parentheses", "[tag foo]:[variable-3 before] {", " [property background]: [variable&callee url](", "[string blahblah]", "[string etc]", "[string ]) [keyword !important];", "}"); MT("font_face", "[def @font-face] {", " [property font-family]: [string 'myfont'];", " [error nonsense]: [string 'abc'];", " [property src]: [variable&callee url]([string http://blah]),", " [variable&callee url]([string http://foo]);", "}"); MT("empty_url", "[def @import] [variable&callee url]() [attribute screen];"); MT("parens", "[qualifier .foo] {", " [property background-image]: [variable&callee fade]([atom #000], [number 20%]);", " [property border-image]: [variable&callee linear-gradient](", " [atom to] [atom bottom],", " [variable&callee fade]([atom #000], [number 20%]) [number 0%],", " [variable&callee fade]([atom #000], [number 20%]) [number 100%]", " );", "}"); MT("css_variable", ":[variable-3 root] {", " [variable-2 --main-color]: [atom #06c];", "}", "[tag h1][builtin #foo] {", " [property color]: [variable&callee var]([variable-2 --main-color]);", "}"); MT("blank_css_variable", ":[variable-3 root] {", " [variable-2 --]: [atom #06c];", "}", "[tag h1][builtin #foo] {", " [property color]: [variable&callee var]([variable-2 --]);", "}"); MT("supports", "[def @supports] ([keyword not] (([property text-align-last]: [atom justify]) [keyword or] ([meta -moz-][property text-align-last]: [atom justify])) {", " [property text-align-last]: [atom justify];", "}"); MT("document", "[def @document] [variable&callee url]([string http://blah]),", " [variable&callee url-prefix]([string https://]),", " [variable&callee domain]([string blah.com]),", " [variable&callee regexp]([string \".*blah.+\"]) {", " [builtin #id] {", " [property background-color]: [keyword white];", " }", " [tag foo] {", " [property font-family]: [variable Verdana], [atom sans-serif];", " }", "}"); MT("document_url", "[def @document] [variable&callee url]([string http://blah]) { [qualifier .class] { } }"); MT("document_urlPrefix", "[def @document] [variable&callee url-prefix]([string https://]) { [builtin #id] { } }"); MT("document_domain", "[def @document] [variable&callee domain]([string blah.com]) { [tag foo] { } }"); MT("document_regexp", "[def @document] [variable&callee regexp]([string \".*blah.+\"]) { [builtin #id] { } }"); MT("counter-style", "[def @counter-style] [variable binary] {", " [property system]: [atom numeric];", " [property symbols]: [number 0] [number 1];", " [property suffix]: [string \".\"];", " [property range]: [atom infinite];", " [property speak-as]: [atom numeric];", "}"); MT("counter-style-additive-symbols", "[def @counter-style] [variable simple-roman] {", " [property system]: [atom additive];", " [property additive-symbols]: [number 10] [variable X], [number 5] [variable V], [number 1] [variable I];", " [property range]: [number 1] [number 49];", "}"); MT("counter-style-use", "[tag ol][qualifier .roman] { [property list-style]: [variable simple-roman]; }"); MT("counter-style-symbols", "[tag ol] { [property list-style]: [variable&callee symbols]([atom cyclic] [string \"*\"] [string \"\\2020\"] [string \"\\2021\"] [string \"\\A7\"]); }"); MT("comment-does-not-disrupt", "[def @font-face] [comment /* foo */] {", " [property src]: [variable&callee url]([string x]);", " [property font-family]: [variable One];", "}") })(); usr/local/CyberCP/cyberpanel/static/filemanager/mode/python/test.js 0000644 00000003736 15030044136 0021412 0 ustar 00 // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE (function() { var mode = CodeMirror.getMode({indentUnit: 4}, {name: "python", version: 3, singleLineStringErrors: false}); function MT(name) { test.mode(name, mode, Array.prototype.slice.call(arguments, 1)); } // Error, because "foobarhello" is neither a known type or property, but // property was expected (after "and"), and it should be in parentheses. MT("decoratorStartOfLine", "[meta @dec]", "[keyword def] [def function]():", " [keyword pass]"); MT("decoratorIndented", "[keyword class] [def Foo]:", " [meta @dec]", " [keyword def] [def function]():", " [keyword pass]"); MT("matmulWithSpace:", "[variable a] [operator @] [variable b]"); MT("matmulWithoutSpace:", "[variable a][operator @][variable b]"); MT("matmulSpaceBefore:", "[variable a] [operator @][variable b]"); var before_equal_sign = ["+", "-", "*", "/", "=", "!", ">", "<"]; for (var i = 0; i < before_equal_sign.length; ++i) { var c = before_equal_sign[i] MT("before_equal_sign_" + c, "[variable a] [operator " + c + "=] [variable b]"); } MT("fValidStringPrefix", "[string f'this is a]{[variable formatted]}[string string']"); MT("fValidExpressioninFString", "[string f'expression ]{[number 100][operator *][number 5]}[string string']"); MT("fInvalidFString", "[error f'this is wrong}]"); MT("fNestedFString", "[string f'expression ]{[number 100] [operator +] [string f'inner]{[number 5]}[string ']}[string string']"); MT("uValidStringPrefix", "[string u'this is an unicode string']"); MT("nestedString", "[string f']{[variable b][[ [string \"c\"] ]]}[string f'] [comment # oops]") MT("bracesInFString", "[string f']{[variable x] [operator +] {}}[string !']") MT("nestedFString", "[string f']{[variable b][[ [string f\"c\"] ]]}[string f'] [comment # oops]") })();
| ver. 1.4 |
Github
|
.
| PHP 8.2.28 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings