@ -0,0 +1,201 @@ |
||||
# Javascript Node CircleCI 2.0 configuration file |
||||
# |
||||
# Check https://circleci.com/docs/2.0/language-javascript/ for more details |
||||
# |
||||
version: 2 |
||||
jobs: |
||||
remix-ide-chrome: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:10.18.0-browsers |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
resource_class: xlarge |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "apps/remix-ide/assets apps/remix-ide/background.js apps/remix-ide/build apps/remix-ide/icon.png apps/remix-ide/index.html apps/remix-ide/manifest.json apps/remix-ide/README.md apps/remix-ide/soljson.js apps/remix-ide/package.json" |
||||
working_directory: ~/remix-project |
||||
|
||||
parallelism: 20 |
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: |
||||
name: Download Compatible JAVA Version for Selenium |
||||
command: | |
||||
java -version |
||||
sudo apt-get purge --auto-remove java-common |
||||
sudo apt-get update |
||||
sudo apt-get install openjdk-8-jdk |
||||
java -version |
||||
- run: |
||||
name: Download Selenium |
||||
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
- run: |
||||
name: Start Selenium |
||||
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
background: true |
||||
- run: ./apps/remix-ide/ci/browser_tests_chrome.sh |
||||
- store_test_results: |
||||
path: ./apps/remix-ide/reports/tests |
||||
- store_artifacts: |
||||
path: ./apps/remix-ide/reports/screenshots |
||||
|
||||
remix-ide-firefox: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:10.18.0-browsers |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
resource_class: xlarge |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "apps/remix-ide/assets apps/remix-ide/background.js apps/remix-ide/build apps/remix-ide/icon.png apps/remix-ide/index.html apps/remix-ide/manifest.json apps/remix-ide/README.md apps/remix-ide/soljson.js apps/remix-ide/package.json" |
||||
working_directory: ~/remix-project |
||||
|
||||
parallelism: 20 |
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: |
||||
name: Download Selenium |
||||
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
- run: |
||||
name: Start Selenium |
||||
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
background: true |
||||
- run: |
||||
name: Download Latest Firefox |
||||
command: sudo apt-get purge -y firefox && wget https://sourceforge.net/projects/ubuntuzilla/files/mozilla/apt/pool/main/f/firefox-mozilla-build/firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb |
||||
- run: |
||||
name: Install Firefox |
||||
command: sudo dpkg -i firefox-mozilla-build_73.0.1-0ubuntu1_amd64.deb |
||||
- run: ./apps/remix-ide/ci/browser_tests_firefox.sh |
||||
- store_test_results: |
||||
path: ./apps/remix-ide/reports/tests |
||||
- store_artifacts: |
||||
path: ./apps/remix-ide/reports/screenshots |
||||
|
||||
remix-ide-run-deploy: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:10.18.0-browsers |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
resource_class: xlarge |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "apps/remix-ide/assets apps/remix-ide/background.js apps/remix-ide/build apps/remix-ide/icon.png apps/remix-ide/index.html apps/remix-ide/manifest.json apps/remix-ide/README.md apps/remix-ide/soljson.js apps/remix-ide/package.json" |
||||
working_directory: ~/remix-project |
||||
|
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: |
||||
name: Download Selenium |
||||
command: ./node_modules/.bin/selenium-standalone install --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
- run: |
||||
name: Start Selenium |
||||
command: ./node_modules/.bin/selenium-standalone start --config=../remix-project/apps/remix-ide/seleniumConfig.js |
||||
background: true |
||||
- run: ./apps/remix-ide/ci/browser_tests_run_deploy.sh |
||||
- store_artifacts: |
||||
path: ./apps/remix-ide/reports/screenshots |
||||
|
||||
|
||||
deploy-remix-live: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:10.18.0-browsers |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
resource_class: xlarge |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "apps/remix-ide/assets apps/remix-ide/background.js apps/remix-ide/build apps/remix-ide/icon.png apps/remix-ide/index.html apps/remix-ide/manifest.json apps/remix-ide/README.md apps/remix-ide/soljson.js apps/remix-ide/package.json" |
||||
working_directory: ~/remix-project |
||||
|
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: |
||||
name: Deploy |
||||
command: | |
||||
if [ "${CIRCLE_BRANCH}" == "remix_live" ]; then |
||||
./apps/remix-ide/ci/deploy_from_travis_remix-live.sh; |
||||
fi |
||||
- store_artifacts: |
||||
path: ./apps/remix-ide/reports/screenshots |
||||
|
||||
deploy-remix-alpha: |
||||
docker: |
||||
# specify the version you desire here |
||||
- image: circleci/node:10.18.0-browsers |
||||
|
||||
# Specify service dependencies here if necessary |
||||
# CircleCI maintains a library of pre-built images |
||||
resource_class: xlarge |
||||
# documented at https://circleci.com/docs/2.0/circleci-images/ |
||||
# - image: circleci/mongo:3.4.4 |
||||
environment: |
||||
- COMMIT_AUTHOR_EMAIL: "yann@ethereum.org" |
||||
- COMMIT_AUTHOR: "Circle CI" |
||||
- FILES_TO_PACKAGE: "apps/remix-ide/assets apps/remix-ide/background.js apps/remix-ide/build apps/remix-ide/icon.png apps/remix-ide/index.html apps/remix-ide/manifest.json apps/remix-ide/README.md apps/remix-ide/soljson.js apps/remix-ide/package.json" |
||||
working_directory: ~/remix-project |
||||
|
||||
steps: |
||||
- checkout |
||||
- run: npm install |
||||
- run: npm run lint |
||||
- run: |
||||
name: Deploy |
||||
command: | |
||||
if [ "${CIRCLE_BRANCH}" == "master" ]; then |
||||
./apps/remix-ide/ci/deploy_from_travis_remix-alpha.sh; |
||||
fi |
||||
- store_artifacts: |
||||
path: ./apps/remix-ide/reports/screenshots |
||||
|
||||
workflows: |
||||
version: 2 |
||||
build_all: |
||||
jobs: |
||||
- remix-ide-chrome |
||||
- remix-ide-firefox |
||||
- remix-ide-run-deploy |
||||
- deploy-remix-live: |
||||
requires: |
||||
- remix-ide-chrome |
||||
- remix-ide-firefox |
||||
- remix-ide-run-deploy |
||||
filters: |
||||
branches: |
||||
only: remix_live |
||||
- deploy-remix-alpha: |
||||
requires: |
||||
- remix-ide-chrome |
||||
- remix-ide-firefox |
||||
- remix-ide-run-deploy |
||||
filters: |
||||
branches: |
||||
only: master |
@ -0,0 +1,13 @@ |
||||
# Editor configuration, see http://editorconfig.org |
||||
root = true |
||||
|
||||
[*] |
||||
charset = utf-8 |
||||
indent_style = space |
||||
indent_size = 2 |
||||
insert_final_newline = true |
||||
trim_trailing_whitespace = true |
||||
|
||||
[*.md] |
||||
max_line_length = off |
||||
trim_trailing_whitespace = false |
@ -0,0 +1,3 @@ |
||||
gist_token=<token> |
||||
account_passphrase=<passphrase> |
||||
account_password=<password> |
@ -0,0 +1,41 @@ |
||||
{ |
||||
"root": true, |
||||
"parser": "@typescript-eslint/parser", |
||||
"parserOptions": { |
||||
"ecmaVersion": 2018, |
||||
"sourceType": "module", |
||||
"project": "./tsconfig.json" |
||||
}, |
||||
"ignorePatterns": ["**/*"], |
||||
"plugins": ["@typescript-eslint", "@nrwl/nx"], |
||||
"extends": [ |
||||
"eslint:recommended", |
||||
"plugin:@typescript-eslint/eslint-recommended", |
||||
"plugin:@typescript-eslint/recommended", |
||||
"prettier", |
||||
"prettier/@typescript-eslint" |
||||
], |
||||
"rules": { |
||||
"@typescript-eslint/explicit-member-accessibility": "off", |
||||
"@typescript-eslint/explicit-function-return-type": "off", |
||||
"@typescript-eslint/no-parameter-properties": "off", |
||||
"@nrwl/nx/enforce-module-boundaries": [ |
||||
"error", |
||||
{ |
||||
"enforceBuildableLibDependency": true, |
||||
"allow": [], |
||||
"depConstraints": [ |
||||
{ "sourceTag": "*", "onlyDependOnLibsWithTags": ["*"] } |
||||
] |
||||
} |
||||
] |
||||
}, |
||||
"overrides": [ |
||||
{ |
||||
"files": ["*.tsx"], |
||||
"rules": { |
||||
"@typescript-eslint/no-unused-vars": "off" |
||||
} |
||||
} |
||||
] |
||||
} |
@ -0,0 +1,39 @@ |
||||
# See http://help.github.com/ignore-files/ for more about ignoring files. |
||||
|
||||
# compiled output |
||||
/dist |
||||
/tmp |
||||
/out-tsc |
||||
|
||||
# dependencies |
||||
/node_modules |
||||
|
||||
# IDEs and editors |
||||
/.idea |
||||
.project |
||||
.classpath |
||||
.c9/ |
||||
*.launch |
||||
.settings/ |
||||
*.sublime-workspace |
||||
|
||||
# IDE - VSCode |
||||
.vscode/* |
||||
!.vscode/settings.json |
||||
!.vscode/tasks.json |
||||
!.vscode/launch.json |
||||
!.vscode/extensions.json |
||||
|
||||
# misc |
||||
/.sass-cache |
||||
/connect.lock |
||||
/coverage |
||||
/libpeerconnection.log |
||||
npm-debug.log |
||||
yarn-error.log |
||||
testem.log |
||||
/typings |
||||
|
||||
# System Files |
||||
.DS_Store |
||||
Thumbs.db |
@ -0,0 +1,4 @@ |
||||
# Add files here to ignore them from prettier formatting |
||||
|
||||
/dist |
||||
/coverage |
@ -0,0 +1,3 @@ |
||||
{ |
||||
"singleQuote": true |
||||
} |
@ -0,0 +1,6 @@ |
||||
{ |
||||
"recommendations": [ |
||||
"ms-vscode.vscode-typescript-tslint-plugin", |
||||
"esbenp.prettier-vscode" |
||||
] |
||||
} |
@ -0,0 +1 @@ |
||||
|
@ -0,0 +1,315 @@ |
||||
{ |
||||
"env": { |
||||
"browser": true, |
||||
"es6": true |
||||
}, |
||||
"extends": "eslint:recommended", |
||||
"globals": { |
||||
"Atomics": "readonly", |
||||
"SharedArrayBuffer": "readonly" |
||||
}, |
||||
"parserOptions": { |
||||
"ecmaVersion": 11, |
||||
"sourceType": "module" |
||||
}, |
||||
"rules": { |
||||
"accessor-pairs": "error", |
||||
"array-bracket-newline": "off", |
||||
"array-bracket-spacing": [ |
||||
"off", |
||||
"never" |
||||
], |
||||
"array-callback-return": "off", |
||||
"array-element-newline": "off", |
||||
"arrow-body-style": "off", |
||||
"arrow-parens": [ |
||||
"off", |
||||
"always" |
||||
], |
||||
"arrow-spacing": [ |
||||
"error", |
||||
{ |
||||
"after": true, |
||||
"before": true |
||||
} |
||||
], |
||||
"block-scoped-var": "off", |
||||
"block-spacing": "error", |
||||
"brace-style": [ |
||||
"off", |
||||
"1tbs" |
||||
], |
||||
"callback-return": "off", |
||||
"camelcase": "off", |
||||
"capitalized-comments": "off", |
||||
"class-methods-use-this": "off", |
||||
"comma-dangle": "off", |
||||
"comma-spacing": [ |
||||
"error", |
||||
{ |
||||
"after": true, |
||||
"before": false |
||||
} |
||||
], |
||||
"comma-style": [ |
||||
"error", |
||||
"last" |
||||
], |
||||
"complexity": "off", |
||||
"computed-property-spacing": [ |
||||
"off", |
||||
"never" |
||||
], |
||||
"consistent-return": "off", |
||||
"consistent-this": "off", |
||||
"curly": "off", |
||||
"default-case": "error", |
||||
"default-case-last": "off", |
||||
"default-param-last": "off", |
||||
"dot-location": "off", |
||||
"dot-notation": "off", |
||||
"eol-last": "error", |
||||
"eqeqeq": "off", |
||||
"func-call-spacing": "error", |
||||
"func-name-matching": "error", |
||||
"func-names": "off", |
||||
"func-style": [ |
||||
"off", |
||||
"declaration" |
||||
], |
||||
"function-call-argument-newline": [ |
||||
"off", |
||||
"consistent" |
||||
], |
||||
"function-paren-newline": "off", |
||||
"generator-star-spacing": "error", |
||||
"global-require": "off", |
||||
"grouped-accessor-pairs": "error", |
||||
"guard-for-in": "off", |
||||
"handle-callback-err": "error", |
||||
"id-blacklist": "error", |
||||
"id-length": "off", |
||||
"id-match": "error", |
||||
"implicit-arrow-linebreak": [ |
||||
"off", |
||||
"beside" |
||||
], |
||||
"indent": "off", |
||||
"indent-legacy": "off", |
||||
"init-declarations": "off", |
||||
"jsx-quotes": "error", |
||||
"key-spacing": "error", |
||||
"keyword-spacing": [ |
||||
"error", |
||||
{ |
||||
"after": true, |
||||
"before": true |
||||
} |
||||
], |
||||
"line-comment-position": "off", |
||||
"linebreak-style": [ |
||||
"error", |
||||
"unix" |
||||
], |
||||
"lines-around-comment": "off", |
||||
"lines-around-directive": "off", |
||||
"lines-between-class-members": [ |
||||
"off", |
||||
"always" |
||||
], |
||||
"max-classes-per-file": "off", |
||||
"max-depth": "off", |
||||
"max-len": "off", |
||||
"max-lines": "off", |
||||
"max-lines-per-function": "off", |
||||
"max-nested-callbacks": "error", |
||||
"max-params": "off", |
||||
"max-statements": "off", |
||||
"max-statements-per-line": "off", |
||||
"multiline-comment-style": [ |
||||
"off", |
||||
"separate-lines" |
||||
], |
||||
"new-cap": "off", |
||||
"new-parens": "error", |
||||
"newline-after-var": "off", |
||||
"newline-before-return": "off", |
||||
"newline-per-chained-call": "off", |
||||
"no-alert": "error", |
||||
"no-array-constructor": "error", |
||||
"no-await-in-loop": "off", |
||||
"no-bitwise": "off", |
||||
"no-buffer-constructor": "error", |
||||
"no-caller": "error", |
||||
"no-catch-shadow": "error", |
||||
"no-confusing-arrow": "off", |
||||
"no-console": "off", |
||||
"no-constructor-return": "error", |
||||
"no-continue": "error", |
||||
"no-div-regex": "error", |
||||
"no-duplicate-imports": "error", |
||||
"no-else-return": "off", |
||||
"no-empty-function": "off", |
||||
"no-eq-null": "off", |
||||
"no-eval": "error", |
||||
"no-extend-native": "error", |
||||
"no-extra-bind": "error", |
||||
"no-extra-label": "error", |
||||
"no-extra-parens": "off", |
||||
"no-floating-decimal": "error", |
||||
"no-implicit-coercion": "off", |
||||
"no-implicit-globals": "error", |
||||
"no-implied-eval": "error", |
||||
"no-inline-comments": "off", |
||||
"no-invalid-this": "off", |
||||
"no-iterator": "error", |
||||
"no-label-var": "error", |
||||
"no-labels": "error", |
||||
"no-lone-blocks": "off", |
||||
"no-lonely-if": "off", |
||||
"no-loop-func": "off", |
||||
"no-magic-numbers": "off", |
||||
"no-mixed-operators": "off", |
||||
"no-mixed-requires": "error", |
||||
"no-multi-assign": "off", |
||||
"no-multi-spaces": "off", |
||||
"no-multi-str": "error", |
||||
"no-multiple-empty-lines": "error", |
||||
"no-native-reassign": "error", |
||||
"no-negated-condition": "off", |
||||
"no-negated-in-lhs": "error", |
||||
"no-nested-ternary": "off", |
||||
"no-new": "error", |
||||
"no-new-func": "error", |
||||
"no-new-object": "error", |
||||
"no-new-require": "error", |
||||
"no-new-wrappers": "error", |
||||
"no-octal-escape": "error", |
||||
"no-param-reassign": "off", |
||||
"no-path-concat": "error", |
||||
"no-plusplus": "off", |
||||
"no-process-env": "off", |
||||
"no-process-exit": "off", |
||||
"no-proto": "error", |
||||
"no-restricted-exports": "off", |
||||
"no-restricted-globals": "error", |
||||
"no-restricted-imports": "error", |
||||
"no-restricted-modules": "error", |
||||
"no-restricted-properties": "error", |
||||
"no-restricted-syntax": "error", |
||||
"no-return-assign": "error", |
||||
"no-return-await": "off", |
||||
"no-script-url": "error", |
||||
"no-self-compare": "error", |
||||
"no-sequences": "error", |
||||
"no-shadow": "off", |
||||
"no-spaced-func": "error", |
||||
"no-sync": "off", |
||||
"no-tabs": "error", |
||||
"no-template-curly-in-string": "error", |
||||
"no-ternary": "off", |
||||
"no-throw-literal": "error", |
||||
"no-trailing-spaces": "error", |
||||
"no-undef-init": "error", |
||||
"no-undefined": "off", |
||||
"no-underscore-dangle": "off", |
||||
"no-unmodified-loop-condition": "error", |
||||
"no-unneeded-ternary": "error", |
||||
"no-unused-expressions": "off", |
||||
"no-use-before-define": "off", |
||||
"no-useless-backreference": "off", |
||||
"no-useless-call": "error", |
||||
"no-useless-computed-key": "error", |
||||
"no-useless-concat": "off", |
||||
"no-useless-constructor": "error", |
||||
"no-useless-rename": "error", |
||||
"no-useless-return": "off", |
||||
"no-var": "off", |
||||
"no-void": "off", |
||||
"no-warning-comments": "off", |
||||
"no-whitespace-before-property": "error", |
||||
"nonblock-statement-body-position": "error", |
||||
"object-curly-newline": "off", |
||||
"object-curly-spacing": "off", |
||||
"object-shorthand": "off", |
||||
"one-var": "off", |
||||
"one-var-declaration-per-line": "error", |
||||
"operator-assignment": "off", |
||||
"operator-linebreak": "error", |
||||
"padded-blocks": "off", |
||||
"padding-line-between-statements": "error", |
||||
"prefer-arrow-callback": "off", |
||||
"prefer-const": "off", |
||||
"prefer-destructuring": "off", |
||||
"prefer-exponentiation-operator": "error", |
||||
"prefer-named-capture-group": "off", |
||||
"prefer-numeric-literals": "error", |
||||
"prefer-object-spread": "error", |
||||
"prefer-promise-reject-errors": "off", |
||||
"prefer-reflect": "off", |
||||
"prefer-regex-literals": "error", |
||||
"prefer-rest-params": "off", |
||||
"prefer-spread": "off", |
||||
"prefer-template": "off", |
||||
"quote-props": "off", |
||||
"quotes": "off", |
||||
"radix": "off", |
||||
"require-atomic-updates": "off", |
||||
"require-await": "off", |
||||
"require-jsdoc": "off", |
||||
"require-unicode-regexp": "off", |
||||
"rest-spread-spacing": "error", |
||||
"semi": "off", |
||||
"semi-spacing": "error", |
||||
"semi-style": "off", |
||||
"sort-keys": [ |
||||
"off", |
||||
"asc" |
||||
], |
||||
"sort-vars": "off", |
||||
"space-before-blocks": "error", |
||||
"space-before-function-paren": "error", |
||||
"space-in-parens": [ |
||||
"error", |
||||
"never" |
||||
], |
||||
"space-infix-ops": "error", |
||||
"space-unary-ops": "error", |
||||
"spaced-comment": [ |
||||
"off", |
||||
"always" |
||||
], |
||||
"strict": "off", |
||||
"switch-colon-spacing": "off", |
||||
"symbol-description": "error", |
||||
"template-curly-spacing": [ |
||||
"error", |
||||
"never" |
||||
], |
||||
"template-tag-spacing": [ |
||||
"off", |
||||
"never" |
||||
], |
||||
"unicode-bom": [ |
||||
"error", |
||||
"never" |
||||
], |
||||
"valid-jsdoc": "off", |
||||
"vars-on-top": "off", |
||||
"wrap-iife": "error", |
||||
"wrap-regex": "off", |
||||
"yield-star-spacing": "error", |
||||
"yoda": [ |
||||
"error", |
||||
"never" |
||||
], |
||||
"no-unused-vars": "off", |
||||
"no-redeclare": "off", |
||||
"no-empty": "off", |
||||
"no-constant-condition": "off", |
||||
"no-async-promise-executor": "off", |
||||
"no-useless-catch": "off", |
||||
"no-extra-semi": "off", |
||||
"no-undef": "off" |
||||
} |
||||
} |
@ -0,0 +1,69 @@ |
||||
.highlight { background: #ffffff; } |
||||
.highlight .c { color: #999988; font-style: italic } /* Comment */ |
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ |
||||
.highlight .k { font-weight: bold } /* Keyword */ |
||||
.highlight .o { font-weight: bold } /* Operator */ |
||||
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ |
||||
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ |
||||
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ |
||||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ |
||||
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ |
||||
.highlight .ge { font-style: italic } /* Generic.Emph */ |
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */ |
||||
.highlight .gh { color: #999999 } /* Generic.Heading */ |
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ |
||||
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ |
||||
.highlight .go { color: #888888 } /* Generic.Output */ |
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */ |
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */ |
||||
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */ |
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */ |
||||
.highlight .kc { font-weight: bold } /* Keyword.Constant */ |
||||
.highlight .kd { font-weight: bold } /* Keyword.Declaration */ |
||||
.highlight .kn { font-weight: bold } /* Keyword.Namespace */ |
||||
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ |
||||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */ |
||||
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ |
||||
.highlight .m { color: #009999 } /* Literal.Number */ |
||||
.highlight .s { color: #d14 } /* Literal.String */ |
||||
.highlight .na { color: #008080 } /* Name.Attribute */ |
||||
.highlight .nb { color: #0086B3 } /* Name.Builtin */ |
||||
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ |
||||
.highlight .no { color: #008080 } /* Name.Constant */ |
||||
.highlight .ni { color: #800080 } /* Name.Entity */ |
||||
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ |
||||
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ |
||||
.highlight .nn { color: #555555 } /* Name.Namespace */ |
||||
.highlight .nt { color: #000080 } /* Name.Tag */ |
||||
.highlight .nv { color: #008080 } /* Name.Variable */ |
||||
.highlight .ow { font-weight: bold } /* Operator.Word */ |
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ |
||||
.highlight .mf { color: #009999 } /* Literal.Number.Float */ |
||||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */ |
||||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */ |
||||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */ |
||||
.highlight .sb { color: #d14 } /* Literal.String.Backtick */ |
||||
.highlight .sc { color: #d14 } /* Literal.String.Char */ |
||||
.highlight .sd { color: #d14 } /* Literal.String.Doc */ |
||||
.highlight .s2 { color: #d14 } /* Literal.String.Double */ |
||||
.highlight .se { color: #d14 } /* Literal.String.Escape */ |
||||
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ |
||||
.highlight .si { color: #d14 } /* Literal.String.Interpol */ |
||||
.highlight .sx { color: #d14 } /* Literal.String.Other */ |
||||
.highlight .sr { color: #009926 } /* Literal.String.Regex */ |
||||
.highlight .s1 { color: #d14 } /* Literal.String.Single */ |
||||
.highlight .ss { color: #990073 } /* Literal.String.Symbol */ |
||||
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ |
||||
.highlight .vc { color: #008080 } /* Name.Variable.Class */ |
||||
.highlight .vg { color: #008080 } /* Name.Variable.Global */ |
||||
.highlight .vi { color: #008080 } /* Name.Variable.Instance */ |
||||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ |
||||
|
||||
.type-csharp .highlight .k { color: #0000FF } |
||||
.type-csharp .highlight .kt { color: #0000FF } |
||||
.type-csharp .highlight .nf { color: #000000; font-weight: normal } |
||||
.type-csharp .highlight .nc { color: #2B91AF } |
||||
.type-csharp .highlight .nn { color: #000000 } |
||||
.type-csharp .highlight .s { color: #A31515 } |
||||
.type-csharp .highlight .sc { color: #A31515 } |
@ -0,0 +1,69 @@ |
||||
.highlight { background: #ffffff; } |
||||
.highlight .c { color: #999988; font-style: italic } /* Comment */ |
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ |
||||
.highlight .k { font-weight: bold } /* Keyword */ |
||||
.highlight .o { font-weight: bold } /* Operator */ |
||||
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ |
||||
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ |
||||
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ |
||||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ |
||||
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ |
||||
.highlight .ge { font-style: italic } /* Generic.Emph */ |
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */ |
||||
.highlight .gh { color: #999999 } /* Generic.Heading */ |
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ |
||||
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ |
||||
.highlight .go { color: #888888 } /* Generic.Output */ |
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */ |
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */ |
||||
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */ |
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */ |
||||
.highlight .kc { font-weight: bold } /* Keyword.Constant */ |
||||
.highlight .kd { font-weight: bold } /* Keyword.Declaration */ |
||||
.highlight .kn { font-weight: bold } /* Keyword.Namespace */ |
||||
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ |
||||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */ |
||||
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ |
||||
.highlight .m { color: #009999 } /* Literal.Number */ |
||||
.highlight .s { color: #d14 } /* Literal.String */ |
||||
.highlight .na { color: #008080 } /* Name.Attribute */ |
||||
.highlight .nb { color: #0086B3 } /* Name.Builtin */ |
||||
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ |
||||
.highlight .no { color: #008080 } /* Name.Constant */ |
||||
.highlight .ni { color: #800080 } /* Name.Entity */ |
||||
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ |
||||
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ |
||||
.highlight .nn { color: #555555 } /* Name.Namespace */ |
||||
.highlight .nt { color: #000080 } /* Name.Tag */ |
||||
.highlight .nv { color: #008080 } /* Name.Variable */ |
||||
.highlight .ow { font-weight: bold } /* Operator.Word */ |
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ |
||||
.highlight .mf { color: #009999 } /* Literal.Number.Float */ |
||||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */ |
||||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */ |
||||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */ |
||||
.highlight .sb { color: #d14 } /* Literal.String.Backtick */ |
||||
.highlight .sc { color: #d14 } /* Literal.String.Char */ |
||||
.highlight .sd { color: #d14 } /* Literal.String.Doc */ |
||||
.highlight .s2 { color: #d14 } /* Literal.String.Double */ |
||||
.highlight .se { color: #d14 } /* Literal.String.Escape */ |
||||
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ |
||||
.highlight .si { color: #d14 } /* Literal.String.Interpol */ |
||||
.highlight .sx { color: #d14 } /* Literal.String.Other */ |
||||
.highlight .sr { color: #009926 } /* Literal.String.Regex */ |
||||
.highlight .s1 { color: #d14 } /* Literal.String.Single */ |
||||
.highlight .ss { color: #990073 } /* Literal.String.Symbol */ |
||||
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ |
||||
.highlight .vc { color: #008080 } /* Name.Variable.Class */ |
||||
.highlight .vg { color: #008080 } /* Name.Variable.Global */ |
||||
.highlight .vi { color: #008080 } /* Name.Variable.Instance */ |
||||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ |
||||
|
||||
.type-csharp .highlight .k { color: #0000FF } |
||||
.type-csharp .highlight .kt { color: #0000FF } |
||||
.type-csharp .highlight .nf { color: #000000; font-weight: normal } |
||||
.type-csharp .highlight .nc { color: #2B91AF } |
||||
.type-csharp .highlight .nn { color: #000000 } |
||||
.type-csharp .highlight .s { color: #A31515 } |
||||
.type-csharp .highlight .sc { color: #A31515 } |
After Width: | Height: | Size: 434 KiB |
After Width: | Height: | Size: 434 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 960 B |
After Width: | Height: | Size: 960 B |
After Width: | Height: | Size: 423 KiB |
After Width: | Height: | Size: 423 KiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 1.4 MiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 2.6 KiB |
After Width: | Height: | Size: 668 B |
After Width: | Height: | Size: 668 B |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 3.4 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 12 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 8.3 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 30 KiB |
After Width: | Height: | Size: 3.7 KiB |
After Width: | Height: | Size: 3.7 KiB |
@ -0,0 +1,69 @@ |
||||
.highlight { background: #ffffff; } |
||||
.highlight .c { color: #999988; font-style: italic } /* Comment */ |
||||
.highlight .err { color: #a61717; background-color: #e3d2d2 } /* Error */ |
||||
.highlight .k { font-weight: bold } /* Keyword */ |
||||
.highlight .o { font-weight: bold } /* Operator */ |
||||
.highlight .cm { color: #999988; font-style: italic } /* Comment.Multiline */ |
||||
.highlight .cp { color: #999999; font-weight: bold } /* Comment.Preproc */ |
||||
.highlight .c1 { color: #999988; font-style: italic } /* Comment.Single */ |
||||
.highlight .cs { color: #999999; font-weight: bold; font-style: italic } /* Comment.Special */ |
||||
.highlight .gd { color: #000000; background-color: #ffdddd } /* Generic.Deleted */ |
||||
.highlight .gd .x { color: #000000; background-color: #ffaaaa } /* Generic.Deleted.Specific */ |
||||
.highlight .ge { font-style: italic } /* Generic.Emph */ |
||||
.highlight .gr { color: #aa0000 } /* Generic.Error */ |
||||
.highlight .gh { color: #999999 } /* Generic.Heading */ |
||||
.highlight .gi { color: #000000; background-color: #ddffdd } /* Generic.Inserted */ |
||||
.highlight .gi .x { color: #000000; background-color: #aaffaa } /* Generic.Inserted.Specific */ |
||||
.highlight .go { color: #888888 } /* Generic.Output */ |
||||
.highlight .gp { color: #555555 } /* Generic.Prompt */ |
||||
.highlight .gs { font-weight: bold } /* Generic.Strong */ |
||||
.highlight .gu { color: #800080; font-weight: bold; } /* Generic.Subheading */ |
||||
.highlight .gt { color: #aa0000 } /* Generic.Traceback */ |
||||
.highlight .kc { font-weight: bold } /* Keyword.Constant */ |
||||
.highlight .kd { font-weight: bold } /* Keyword.Declaration */ |
||||
.highlight .kn { font-weight: bold } /* Keyword.Namespace */ |
||||
.highlight .kp { font-weight: bold } /* Keyword.Pseudo */ |
||||
.highlight .kr { font-weight: bold } /* Keyword.Reserved */ |
||||
.highlight .kt { color: #445588; font-weight: bold } /* Keyword.Type */ |
||||
.highlight .m { color: #009999 } /* Literal.Number */ |
||||
.highlight .s { color: #d14 } /* Literal.String */ |
||||
.highlight .na { color: #008080 } /* Name.Attribute */ |
||||
.highlight .nb { color: #0086B3 } /* Name.Builtin */ |
||||
.highlight .nc { color: #445588; font-weight: bold } /* Name.Class */ |
||||
.highlight .no { color: #008080 } /* Name.Constant */ |
||||
.highlight .ni { color: #800080 } /* Name.Entity */ |
||||
.highlight .ne { color: #990000; font-weight: bold } /* Name.Exception */ |
||||
.highlight .nf { color: #990000; font-weight: bold } /* Name.Function */ |
||||
.highlight .nn { color: #555555 } /* Name.Namespace */ |
||||
.highlight .nt { color: #000080 } /* Name.Tag */ |
||||
.highlight .nv { color: #008080 } /* Name.Variable */ |
||||
.highlight .ow { font-weight: bold } /* Operator.Word */ |
||||
.highlight .w { color: #bbbbbb } /* Text.Whitespace */ |
||||
.highlight .mf { color: #009999 } /* Literal.Number.Float */ |
||||
.highlight .mh { color: #009999 } /* Literal.Number.Hex */ |
||||
.highlight .mi { color: #009999 } /* Literal.Number.Integer */ |
||||
.highlight .mo { color: #009999 } /* Literal.Number.Oct */ |
||||
.highlight .sb { color: #d14 } /* Literal.String.Backtick */ |
||||
.highlight .sc { color: #d14 } /* Literal.String.Char */ |
||||
.highlight .sd { color: #d14 } /* Literal.String.Doc */ |
||||
.highlight .s2 { color: #d14 } /* Literal.String.Double */ |
||||
.highlight .se { color: #d14 } /* Literal.String.Escape */ |
||||
.highlight .sh { color: #d14 } /* Literal.String.Heredoc */ |
||||
.highlight .si { color: #d14 } /* Literal.String.Interpol */ |
||||
.highlight .sx { color: #d14 } /* Literal.String.Other */ |
||||
.highlight .sr { color: #009926 } /* Literal.String.Regex */ |
||||
.highlight .s1 { color: #d14 } /* Literal.String.Single */ |
||||
.highlight .ss { color: #990073 } /* Literal.String.Symbol */ |
||||
.highlight .bp { color: #999999 } /* Name.Builtin.Pseudo */ |
||||
.highlight .vc { color: #008080 } /* Name.Variable.Class */ |
||||
.highlight .vg { color: #008080 } /* Name.Variable.Global */ |
||||
.highlight .vi { color: #008080 } /* Name.Variable.Instance */ |
||||
.highlight .il { color: #009999 } /* Literal.Number.Integer.Long */ |
||||
|
||||
.type-csharp .highlight .k { color: #0000FF } |
||||
.type-csharp .highlight .kt { color: #0000FF } |
||||
.type-csharp .highlight .nf { color: #000000; font-weight: normal } |
||||
.type-csharp .highlight .nc { color: #2B91AF } |
||||
.type-csharp .highlight .nn { color: #000000 } |
||||
.type-csharp .highlight .s { color: #A31515 } |
||||
.type-csharp .highlight .sc { color: #A31515 } |
After Width: | Height: | Size: 434 KiB |
After Width: | Height: | Size: 19 KiB |
After Width: | Height: | Size: 32 KiB |
After Width: | Height: | Size: 12 KiB |