├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── OWNERS ├── README.md ├── RELEASE.md ├── SECURITY_CONTACTS ├── cluster-registry-crd.yaml ├── code-of-conduct.md ├── docs ├── README.md ├── _config.yml ├── api_design.md ├── api_reference.md ├── development.md ├── reference │ ├── build │ │ ├── LICENSE │ │ ├── README.md │ │ ├── actions.js │ │ ├── brodoc.js │ │ ├── index.html │ │ ├── jsconfig.json │ │ ├── manifest.json │ │ ├── markedDecorations.js │ │ ├── navData.js │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── marked │ │ │ │ ├── mime │ │ │ │ └── static │ │ │ ├── bootstrap │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ ├── grunt │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── bs-commonjs-generator.js │ │ │ │ │ ├── bs-glyphicons-data-generator.js │ │ │ │ │ ├── bs-lessdoc-parser.js │ │ │ │ │ ├── bs-raw-files-generator.js │ │ │ │ │ ├── change-version.js │ │ │ │ │ ├── configBridge.json │ │ │ │ │ ├── npm-shrinkwrap.json │ │ │ │ │ └── sauce_browsers.yml │ │ │ │ ├── js │ │ │ │ │ ├── affix.js │ │ │ │ │ ├── alert.js │ │ │ │ │ ├── button.js │ │ │ │ │ ├── carousel.js │ │ │ │ │ ├── collapse.js │ │ │ │ │ ├── dropdown.js │ │ │ │ │ ├── modal.js │ │ │ │ │ ├── popover.js │ │ │ │ │ ├── scrollspy.js │ │ │ │ │ ├── tab.js │ │ │ │ │ ├── tooltip.js │ │ │ │ │ └── transition.js │ │ │ │ ├── less │ │ │ │ │ ├── alerts.less │ │ │ │ │ ├── badges.less │ │ │ │ │ ├── bootstrap.less │ │ │ │ │ ├── breadcrumbs.less │ │ │ │ │ ├── button-groups.less │ │ │ │ │ ├── buttons.less │ │ │ │ │ ├── carousel.less │ │ │ │ │ ├── close.less │ │ │ │ │ ├── code.less │ │ │ │ │ ├── component-animations.less │ │ │ │ │ ├── dropdowns.less │ │ │ │ │ ├── forms.less │ │ │ │ │ ├── glyphicons.less │ │ │ │ │ ├── grid.less │ │ │ │ │ ├── input-groups.less │ │ │ │ │ ├── jumbotron.less │ │ │ │ │ ├── labels.less │ │ │ │ │ ├── list-group.less │ │ │ │ │ ├── media.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── mixins │ │ │ │ │ │ ├── alerts.less │ │ │ │ │ │ ├── background-variant.less │ │ │ │ │ │ ├── border-radius.less │ │ │ │ │ │ ├── buttons.less │ │ │ │ │ │ ├── center-block.less │ │ │ │ │ │ ├── clearfix.less │ │ │ │ │ │ ├── forms.less │ │ │ │ │ │ ├── gradients.less │ │ │ │ │ │ ├── grid-framework.less │ │ │ │ │ │ ├── grid.less │ │ │ │ │ │ ├── hide-text.less │ │ │ │ │ │ ├── image.less │ │ │ │ │ │ ├── labels.less │ │ │ │ │ │ ├── list-group.less │ │ │ │ │ │ ├── nav-divider.less │ │ │ │ │ │ ├── nav-vertical-align.less │ │ │ │ │ │ ├── opacity.less │ │ │ │ │ │ ├── pagination.less │ │ │ │ │ │ ├── panels.less │ │ │ │ │ │ ├── progress-bar.less │ │ │ │ │ │ ├── reset-filter.less │ │ │ │ │ │ ├── reset-text.less │ │ │ │ │ │ ├── resize.less │ │ │ │ │ │ ├── responsive-visibility.less │ │ │ │ │ │ ├── size.less │ │ │ │ │ │ ├── tab-focus.less │ │ │ │ │ │ ├── table-row.less │ │ │ │ │ │ ├── text-emphasis.less │ │ │ │ │ │ ├── text-overflow.less │ │ │ │ │ │ └── vendor-prefixes.less │ │ │ │ │ ├── modals.less │ │ │ │ │ ├── navbar.less │ │ │ │ │ ├── navs.less │ │ │ │ │ ├── normalize.less │ │ │ │ │ ├── pager.less │ │ │ │ │ ├── pagination.less │ │ │ │ │ ├── panels.less │ │ │ │ │ ├── popovers.less │ │ │ │ │ ├── print.less │ │ │ │ │ ├── progress-bars.less │ │ │ │ │ ├── responsive-embed.less │ │ │ │ │ ├── responsive-utilities.less │ │ │ │ │ ├── scaffolding.less │ │ │ │ │ ├── tables.less │ │ │ │ │ ├── theme.less │ │ │ │ │ ├── thumbnails.less │ │ │ │ │ ├── tooltip.less │ │ │ │ │ ├── type.less │ │ │ │ │ ├── utilities.less │ │ │ │ │ ├── variables.less │ │ │ │ │ └── wells.less │ │ │ │ └── package.json │ │ │ ├── colors │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── normal-usage.js │ │ │ │ │ └── safe-string.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── lib │ │ │ │ │ ├── colors.js │ │ │ │ │ ├── custom │ │ │ │ │ │ ├── trap.js │ │ │ │ │ │ └── zalgo.js │ │ │ │ │ ├── extendStringPrototype.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── maps │ │ │ │ │ │ ├── america.js │ │ │ │ │ │ ├── rainbow.js │ │ │ │ │ │ ├── random.js │ │ │ │ │ │ └── zebra.js │ │ │ │ │ ├── styles.js │ │ │ │ │ └── system │ │ │ │ │ │ ├── has-flag.js │ │ │ │ │ │ └── supports-colors.js │ │ │ │ ├── package.json │ │ │ │ ├── safe.d.ts │ │ │ │ ├── safe.js │ │ │ │ └── themes │ │ │ │ │ └── generic-logging.js │ │ │ ├── ejs │ │ │ │ ├── Jakefile │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── ejs.js │ │ │ │ ├── ejs.min.js │ │ │ │ ├── lib │ │ │ │ │ ├── ejs.js │ │ │ │ │ └── utils.js │ │ │ │ └── package.json │ │ │ ├── font-awesome │ │ │ │ ├── .npmignore │ │ │ │ ├── HELP-US-OUT.txt │ │ │ │ ├── README.md │ │ │ │ ├── css │ │ │ │ │ ├── font-awesome.css │ │ │ │ │ ├── font-awesome.css.map │ │ │ │ │ └── font-awesome.min.css │ │ │ │ ├── fonts │ │ │ │ │ ├── FontAwesome.otf │ │ │ │ │ ├── fontawesome-webfont.eot │ │ │ │ │ ├── fontawesome-webfont.svg │ │ │ │ │ ├── fontawesome-webfont.ttf │ │ │ │ │ ├── fontawesome-webfont.woff │ │ │ │ │ └── fontawesome-webfont.woff2 │ │ │ │ ├── less │ │ │ │ │ ├── animated.less │ │ │ │ │ ├── bordered-pulled.less │ │ │ │ │ ├── core.less │ │ │ │ │ ├── fixed-width.less │ │ │ │ │ ├── font-awesome.less │ │ │ │ │ ├── icons.less │ │ │ │ │ ├── larger.less │ │ │ │ │ ├── list.less │ │ │ │ │ ├── mixins.less │ │ │ │ │ ├── path.less │ │ │ │ │ ├── rotated-flipped.less │ │ │ │ │ ├── screen-reader.less │ │ │ │ │ ├── stacked.less │ │ │ │ │ └── variables.less │ │ │ │ ├── package.json │ │ │ │ └── scss │ │ │ │ │ ├── _animated.scss │ │ │ │ │ ├── _bordered-pulled.scss │ │ │ │ │ ├── _core.scss │ │ │ │ │ ├── _fixed-width.scss │ │ │ │ │ ├── _icons.scss │ │ │ │ │ ├── _larger.scss │ │ │ │ │ ├── _list.scss │ │ │ │ │ ├── _mixins.scss │ │ │ │ │ ├── _path.scss │ │ │ │ │ ├── _rotated-flipped.scss │ │ │ │ │ ├── _screen-reader.scss │ │ │ │ │ ├── _stacked.scss │ │ │ │ │ ├── _variables.scss │ │ │ │ │ └── font-awesome.scss │ │ │ ├── highlight.js │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── docs │ │ │ │ │ ├── api.rst │ │ │ │ │ ├── building-testing.rst │ │ │ │ │ ├── css-classes-reference.rst │ │ │ │ │ ├── index.rst │ │ │ │ │ ├── language-contribution.rst │ │ │ │ │ ├── language-guide.rst │ │ │ │ │ ├── language-requests.rst │ │ │ │ │ ├── line-numbers.rst │ │ │ │ │ ├── reference.rst │ │ │ │ │ ├── release-process.rst │ │ │ │ │ └── style-guide.rst │ │ │ │ ├── lib │ │ │ │ │ ├── highlight.js │ │ │ │ │ ├── index.js │ │ │ │ │ └── languages │ │ │ │ │ │ ├── 1c.js │ │ │ │ │ │ ├── abnf.js │ │ │ │ │ │ ├── accesslog.js │ │ │ │ │ │ ├── actionscript.js │ │ │ │ │ │ ├── ada.js │ │ │ │ │ │ ├── apache.js │ │ │ │ │ │ ├── applescript.js │ │ │ │ │ │ ├── arduino.js │ │ │ │ │ │ ├── armasm.js │ │ │ │ │ │ ├── asciidoc.js │ │ │ │ │ │ ├── aspectj.js │ │ │ │ │ │ ├── autohotkey.js │ │ │ │ │ │ ├── autoit.js │ │ │ │ │ │ ├── avrasm.js │ │ │ │ │ │ ├── awk.js │ │ │ │ │ │ ├── axapta.js │ │ │ │ │ │ ├── bash.js │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ ├── bnf.js │ │ │ │ │ │ ├── brainfuck.js │ │ │ │ │ │ ├── cal.js │ │ │ │ │ │ ├── capnproto.js │ │ │ │ │ │ ├── ceylon.js │ │ │ │ │ │ ├── clean.js │ │ │ │ │ │ ├── clojure-repl.js │ │ │ │ │ │ ├── clojure.js │ │ │ │ │ │ ├── cmake.js │ │ │ │ │ │ ├── coffeescript.js │ │ │ │ │ │ ├── coq.js │ │ │ │ │ │ ├── cos.js │ │ │ │ │ │ ├── cpp.js │ │ │ │ │ │ ├── crmsh.js │ │ │ │ │ │ ├── crystal.js │ │ │ │ │ │ ├── cs.js │ │ │ │ │ │ ├── csp.js │ │ │ │ │ │ ├── css.js │ │ │ │ │ │ ├── d.js │ │ │ │ │ │ ├── dart.js │ │ │ │ │ │ ├── delphi.js │ │ │ │ │ │ ├── diff.js │ │ │ │ │ │ ├── django.js │ │ │ │ │ │ ├── dns.js │ │ │ │ │ │ ├── dockerfile.js │ │ │ │ │ │ ├── dos.js │ │ │ │ │ │ ├── dsconfig.js │ │ │ │ │ │ ├── dts.js │ │ │ │ │ │ ├── dust.js │ │ │ │ │ │ ├── ebnf.js │ │ │ │ │ │ ├── elixir.js │ │ │ │ │ │ ├── elm.js │ │ │ │ │ │ ├── erb.js │ │ │ │ │ │ ├── erlang-repl.js │ │ │ │ │ │ ├── erlang.js │ │ │ │ │ │ ├── excel.js │ │ │ │ │ │ ├── fix.js │ │ │ │ │ │ ├── flix.js │ │ │ │ │ │ ├── fortran.js │ │ │ │ │ │ ├── fsharp.js │ │ │ │ │ │ ├── gams.js │ │ │ │ │ │ ├── gauss.js │ │ │ │ │ │ ├── gcode.js │ │ │ │ │ │ ├── gherkin.js │ │ │ │ │ │ ├── glsl.js │ │ │ │ │ │ ├── go.js │ │ │ │ │ │ ├── golo.js │ │ │ │ │ │ ├── gradle.js │ │ │ │ │ │ ├── groovy.js │ │ │ │ │ │ ├── haml.js │ │ │ │ │ │ ├── handlebars.js │ │ │ │ │ │ ├── haskell.js │ │ │ │ │ │ ├── haxe.js │ │ │ │ │ │ ├── hsp.js │ │ │ │ │ │ ├── htmlbars.js │ │ │ │ │ │ ├── http.js │ │ │ │ │ │ ├── hy.js │ │ │ │ │ │ ├── inform7.js │ │ │ │ │ │ ├── ini.js │ │ │ │ │ │ ├── irpf90.js │ │ │ │ │ │ ├── java.js │ │ │ │ │ │ ├── javascript.js │ │ │ │ │ │ ├── jboss-cli.js │ │ │ │ │ │ ├── json.js │ │ │ │ │ │ ├── julia-repl.js │ │ │ │ │ │ ├── julia.js │ │ │ │ │ │ ├── kotlin.js │ │ │ │ │ │ ├── lasso.js │ │ │ │ │ │ ├── ldif.js │ │ │ │ │ │ ├── leaf.js │ │ │ │ │ │ ├── less.js │ │ │ │ │ │ ├── lisp.js │ │ │ │ │ │ ├── livecodeserver.js │ │ │ │ │ │ ├── livescript.js │ │ │ │ │ │ ├── llvm.js │ │ │ │ │ │ ├── lsl.js │ │ │ │ │ │ ├── lua.js │ │ │ │ │ │ ├── makefile.js │ │ │ │ │ │ ├── markdown.js │ │ │ │ │ │ ├── mathematica.js │ │ │ │ │ │ ├── matlab.js │ │ │ │ │ │ ├── maxima.js │ │ │ │ │ │ ├── mel.js │ │ │ │ │ │ ├── mercury.js │ │ │ │ │ │ ├── mipsasm.js │ │ │ │ │ │ ├── mizar.js │ │ │ │ │ │ ├── mojolicious.js │ │ │ │ │ │ ├── monkey.js │ │ │ │ │ │ ├── moonscript.js │ │ │ │ │ │ ├── n1ql.js │ │ │ │ │ │ ├── nginx.js │ │ │ │ │ │ ├── nimrod.js │ │ │ │ │ │ ├── nix.js │ │ │ │ │ │ ├── nsis.js │ │ │ │ │ │ ├── objectivec.js │ │ │ │ │ │ ├── ocaml.js │ │ │ │ │ │ ├── openscad.js │ │ │ │ │ │ ├── oxygene.js │ │ │ │ │ │ ├── parser3.js │ │ │ │ │ │ ├── perl.js │ │ │ │ │ │ ├── pf.js │ │ │ │ │ │ ├── php.js │ │ │ │ │ │ ├── pony.js │ │ │ │ │ │ ├── powershell.js │ │ │ │ │ │ ├── processing.js │ │ │ │ │ │ ├── profile.js │ │ │ │ │ │ ├── prolog.js │ │ │ │ │ │ ├── protobuf.js │ │ │ │ │ │ ├── puppet.js │ │ │ │ │ │ ├── purebasic.js │ │ │ │ │ │ ├── python.js │ │ │ │ │ │ ├── q.js │ │ │ │ │ │ ├── qml.js │ │ │ │ │ │ ├── r.js │ │ │ │ │ │ ├── rib.js │ │ │ │ │ │ ├── roboconf.js │ │ │ │ │ │ ├── routeros.js │ │ │ │ │ │ ├── rsl.js │ │ │ │ │ │ ├── ruby.js │ │ │ │ │ │ ├── ruleslanguage.js │ │ │ │ │ │ ├── rust.js │ │ │ │ │ │ ├── scala.js │ │ │ │ │ │ ├── scheme.js │ │ │ │ │ │ ├── scilab.js │ │ │ │ │ │ ├── scss.js │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ ├── smali.js │ │ │ │ │ │ ├── smalltalk.js │ │ │ │ │ │ ├── sml.js │ │ │ │ │ │ ├── sqf.js │ │ │ │ │ │ ├── sql.js │ │ │ │ │ │ ├── stan.js │ │ │ │ │ │ ├── stata.js │ │ │ │ │ │ ├── step21.js │ │ │ │ │ │ ├── stylus.js │ │ │ │ │ │ ├── subunit.js │ │ │ │ │ │ ├── swift.js │ │ │ │ │ │ ├── taggerscript.js │ │ │ │ │ │ ├── tap.js │ │ │ │ │ │ ├── tcl.js │ │ │ │ │ │ ├── tex.js │ │ │ │ │ │ ├── thrift.js │ │ │ │ │ │ ├── tp.js │ │ │ │ │ │ ├── twig.js │ │ │ │ │ │ ├── typescript.js │ │ │ │ │ │ ├── vala.js │ │ │ │ │ │ ├── vbnet.js │ │ │ │ │ │ ├── vbscript-html.js │ │ │ │ │ │ ├── vbscript.js │ │ │ │ │ │ ├── verilog.js │ │ │ │ │ │ ├── vhdl.js │ │ │ │ │ │ ├── vim.js │ │ │ │ │ │ ├── x86asm.js │ │ │ │ │ │ ├── xl.js │ │ │ │ │ │ ├── xml.js │ │ │ │ │ │ ├── xquery.js │ │ │ │ │ │ ├── yaml.js │ │ │ │ │ │ └── zephir.js │ │ │ │ ├── package.json │ │ │ │ └── styles │ │ │ │ │ ├── agate.css │ │ │ │ │ ├── androidstudio.css │ │ │ │ │ ├── arduino-light.css │ │ │ │ │ ├── arta.css │ │ │ │ │ ├── ascetic.css │ │ │ │ │ ├── atelier-cave-dark.css │ │ │ │ │ ├── atelier-cave-light.css │ │ │ │ │ ├── atelier-dune-dark.css │ │ │ │ │ ├── atelier-dune-light.css │ │ │ │ │ ├── atelier-estuary-dark.css │ │ │ │ │ ├── atelier-estuary-light.css │ │ │ │ │ ├── atelier-forest-dark.css │ │ │ │ │ ├── atelier-forest-light.css │ │ │ │ │ ├── atelier-heath-dark.css │ │ │ │ │ ├── atelier-heath-light.css │ │ │ │ │ ├── atelier-lakeside-dark.css │ │ │ │ │ ├── atelier-lakeside-light.css │ │ │ │ │ ├── atelier-plateau-dark.css │ │ │ │ │ ├── atelier-plateau-light.css │ │ │ │ │ ├── atelier-savanna-dark.css │ │ │ │ │ ├── atelier-savanna-light.css │ │ │ │ │ ├── atelier-seaside-dark.css │ │ │ │ │ ├── atelier-seaside-light.css │ │ │ │ │ ├── atelier-sulphurpool-dark.css │ │ │ │ │ ├── atelier-sulphurpool-light.css │ │ │ │ │ ├── atom-one-dark.css │ │ │ │ │ ├── atom-one-light.css │ │ │ │ │ ├── brown-paper.css │ │ │ │ │ ├── brown-papersq.png │ │ │ │ │ ├── codepen-embed.css │ │ │ │ │ ├── color-brewer.css │ │ │ │ │ ├── darcula.css │ │ │ │ │ ├── dark.css │ │ │ │ │ ├── darkula.css │ │ │ │ │ ├── default.css │ │ │ │ │ ├── docco.css │ │ │ │ │ ├── dracula.css │ │ │ │ │ ├── far.css │ │ │ │ │ ├── foundation.css │ │ │ │ │ ├── github-gist.css │ │ │ │ │ ├── github.css │ │ │ │ │ ├── googlecode.css │ │ │ │ │ ├── grayscale.css │ │ │ │ │ ├── gruvbox-dark.css │ │ │ │ │ ├── gruvbox-light.css │ │ │ │ │ ├── hopscotch.css │ │ │ │ │ ├── hybrid.css │ │ │ │ │ ├── idea.css │ │ │ │ │ ├── ir-black.css │ │ │ │ │ ├── kimbie.dark.css │ │ │ │ │ ├── kimbie.light.css │ │ │ │ │ ├── magula.css │ │ │ │ │ ├── mono-blue.css │ │ │ │ │ ├── monokai-sublime.css │ │ │ │ │ ├── monokai.css │ │ │ │ │ ├── obsidian.css │ │ │ │ │ ├── ocean.css │ │ │ │ │ ├── paraiso-dark.css │ │ │ │ │ ├── paraiso-light.css │ │ │ │ │ ├── pojoaque.css │ │ │ │ │ ├── pojoaque.jpg │ │ │ │ │ ├── purebasic.css │ │ │ │ │ ├── qtcreator_dark.css │ │ │ │ │ ├── qtcreator_light.css │ │ │ │ │ ├── railscasts.css │ │ │ │ │ ├── rainbow.css │ │ │ │ │ ├── routeros.css │ │ │ │ │ ├── school-book.css │ │ │ │ │ ├── school-book.png │ │ │ │ │ ├── solarized-dark.css │ │ │ │ │ ├── solarized-light.css │ │ │ │ │ ├── sunburst.css │ │ │ │ │ ├── tomorrow-night-blue.css │ │ │ │ │ ├── tomorrow-night-bright.css │ │ │ │ │ ├── tomorrow-night-eighties.css │ │ │ │ │ ├── tomorrow-night.css │ │ │ │ │ ├── tomorrow.css │ │ │ │ │ ├── vs.css │ │ │ │ │ ├── vs2015.css │ │ │ │ │ ├── xcode.css │ │ │ │ │ ├── xt256.css │ │ │ │ │ └── zenburn.css │ │ │ ├── jquery.scrollto │ │ │ │ ├── .jscsrc │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── composer.json │ │ │ │ ├── demo │ │ │ │ │ ├── css │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ └── style.old.css │ │ │ │ │ ├── index.html │ │ │ │ │ └── index.old.html │ │ │ │ ├── jquery.scrollTo.js │ │ │ │ ├── jquery.scrollTo.min.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ ├── ElemMaxY-compat.html │ │ │ │ │ ├── ElemMaxY-quirks.html │ │ │ │ │ ├── WinMaxY-compat.html │ │ │ │ │ ├── WinMaxY-quirks.html │ │ │ │ │ ├── WinMaxY-to-iframe-compat.html │ │ │ │ │ ├── WinMaxY-to-iframe-quirks.html │ │ │ │ │ ├── WinMaxY-with-iframe-compat.html │ │ │ │ │ ├── WinMaxY-with-iframe-quirks.html │ │ │ │ │ ├── index.html │ │ │ │ │ └── test.js │ │ │ ├── jquery │ │ │ │ ├── AUTHORS.txt │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── bower.json │ │ │ │ ├── dist │ │ │ │ │ ├── core.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ └── jquery.slim.min.map │ │ │ │ ├── external │ │ │ │ │ └── sizzle │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── dist │ │ │ │ │ │ ├── sizzle.js │ │ │ │ │ │ ├── sizzle.min.js │ │ │ │ │ │ └── sizzle.min.map │ │ │ │ ├── package.json │ │ │ │ └── src │ │ │ │ │ ├── .eslintrc.json │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── ajax │ │ │ │ │ ├── jsonp.js │ │ │ │ │ ├── load.js │ │ │ │ │ ├── parseXML.js │ │ │ │ │ ├── script.js │ │ │ │ │ ├── var │ │ │ │ │ │ ├── location.js │ │ │ │ │ │ ├── nonce.js │ │ │ │ │ │ └── rquery.js │ │ │ │ │ └── xhr.js │ │ │ │ │ ├── attributes.js │ │ │ │ │ ├── attributes │ │ │ │ │ ├── attr.js │ │ │ │ │ ├── classes.js │ │ │ │ │ ├── prop.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── val.js │ │ │ │ │ ├── callbacks.js │ │ │ │ │ ├── core.js │ │ │ │ │ ├── core │ │ │ │ │ ├── DOMEval.js │ │ │ │ │ ├── access.js │ │ │ │ │ ├── camelCase.js │ │ │ │ │ ├── init.js │ │ │ │ │ ├── nodeName.js │ │ │ │ │ ├── parseHTML.js │ │ │ │ │ ├── ready-no-deferred.js │ │ │ │ │ ├── ready.js │ │ │ │ │ ├── readyException.js │ │ │ │ │ ├── stripAndCollapse.js │ │ │ │ │ ├── support.js │ │ │ │ │ ├── toType.js │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── css.js │ │ │ │ │ ├── css │ │ │ │ │ ├── addGetHookIf.js │ │ │ │ │ ├── adjustCSS.js │ │ │ │ │ ├── curCSS.js │ │ │ │ │ ├── hiddenVisibleSelectors.js │ │ │ │ │ ├── showHide.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── var │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ ├── getStyles.js │ │ │ │ │ │ ├── isHiddenWithinTree.js │ │ │ │ │ │ ├── rboxStyle.js │ │ │ │ │ │ ├── rnumnonpx.js │ │ │ │ │ │ └── swap.js │ │ │ │ │ ├── data.js │ │ │ │ │ ├── data │ │ │ │ │ ├── Data.js │ │ │ │ │ └── var │ │ │ │ │ │ ├── acceptData.js │ │ │ │ │ │ ├── dataPriv.js │ │ │ │ │ │ └── dataUser.js │ │ │ │ │ ├── deferred.js │ │ │ │ │ ├── deferred │ │ │ │ │ └── exceptionHook.js │ │ │ │ │ ├── deprecated.js │ │ │ │ │ ├── dimensions.js │ │ │ │ │ ├── effects.js │ │ │ │ │ ├── effects │ │ │ │ │ ├── Tween.js │ │ │ │ │ └── animatedSelector.js │ │ │ │ │ ├── event.js │ │ │ │ │ ├── event │ │ │ │ │ ├── ajax.js │ │ │ │ │ ├── alias.js │ │ │ │ │ ├── focusin.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── trigger.js │ │ │ │ │ ├── exports │ │ │ │ │ ├── amd.js │ │ │ │ │ └── global.js │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── manipulation.js │ │ │ │ │ ├── manipulation │ │ │ │ │ ├── _evalUrl.js │ │ │ │ │ ├── buildFragment.js │ │ │ │ │ ├── getAll.js │ │ │ │ │ ├── setGlobalEval.js │ │ │ │ │ ├── support.js │ │ │ │ │ ├── var │ │ │ │ │ │ ├── rcheckableType.js │ │ │ │ │ │ ├── rscriptType.js │ │ │ │ │ │ └── rtagName.js │ │ │ │ │ └── wrapMap.js │ │ │ │ │ ├── offset.js │ │ │ │ │ ├── queue.js │ │ │ │ │ ├── queue │ │ │ │ │ └── delay.js │ │ │ │ │ ├── selector-native.js │ │ │ │ │ ├── selector-sizzle.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── serialize.js │ │ │ │ │ ├── traversing.js │ │ │ │ │ ├── traversing │ │ │ │ │ ├── findFilter.js │ │ │ │ │ └── var │ │ │ │ │ │ ├── dir.js │ │ │ │ │ │ ├── rneedsContext.js │ │ │ │ │ │ └── siblings.js │ │ │ │ │ ├── var │ │ │ │ │ ├── ObjectFunctionString.js │ │ │ │ │ ├── arr.js │ │ │ │ │ ├── class2type.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── document.js │ │ │ │ │ ├── documentElement.js │ │ │ │ │ ├── fnToString.js │ │ │ │ │ ├── getProto.js │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── isFunction.js │ │ │ │ │ ├── isWindow.js │ │ │ │ │ ├── pnum.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── rcssNum.js │ │ │ │ │ ├── rnothtmlwhite.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── support.js │ │ │ │ │ └── toString.js │ │ │ │ │ └── wrap.js │ │ │ ├── marked │ │ │ │ ├── .editorconfig │ │ │ │ ├── .eslintrc.json │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE.md │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── marked │ │ │ │ ├── bower.json │ │ │ │ ├── component.json │ │ │ │ ├── index.js │ │ │ │ ├── jasmine.json │ │ │ │ ├── lib │ │ │ │ │ └── marked.js │ │ │ │ ├── man │ │ │ │ │ ├── marked.1 │ │ │ │ │ └── marked.1.txt │ │ │ │ ├── marked.min.js │ │ │ │ ├── package.json │ │ │ │ └── www │ │ │ │ │ ├── demo.css │ │ │ │ │ ├── demo.html │ │ │ │ │ └── demo.js │ │ │ ├── mime │ │ │ │ ├── .npmignore │ │ │ │ ├── CHANGELOG.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── cli.js │ │ │ │ ├── mime.js │ │ │ │ ├── package.json │ │ │ │ ├── src │ │ │ │ │ ├── build.js │ │ │ │ │ └── test.js │ │ │ │ └── types.json │ │ │ ├── minimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ └── parse.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── bool.js │ │ │ │ │ ├── dash.js │ │ │ │ │ ├── default_bool.js │ │ │ │ │ ├── dotted.js │ │ │ │ │ ├── long.js │ │ │ │ │ ├── num.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── parse_modified.js │ │ │ │ │ ├── short.js │ │ │ │ │ └── whitespace.js │ │ │ ├── node-static │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── benchmark │ │ │ │ │ └── node-static-0.3.0.txt │ │ │ │ ├── bin │ │ │ │ │ └── cli.js │ │ │ │ ├── examples │ │ │ │ │ └── file-server.js │ │ │ │ ├── lib │ │ │ │ │ ├── node-static.js │ │ │ │ │ └── node-static │ │ │ │ │ │ └── util.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── empty.css │ │ │ │ │ ├── hello.txt │ │ │ │ │ ├── index.html │ │ │ │ │ └── there │ │ │ │ │ │ └── index.html │ │ │ │ │ └── integration │ │ │ │ │ └── node-static-test.js │ │ │ ├── optimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── example │ │ │ │ │ ├── bool.js │ │ │ │ │ ├── boolean_double.js │ │ │ │ │ ├── boolean_single.js │ │ │ │ │ ├── default_hash.js │ │ │ │ │ ├── default_singles.js │ │ │ │ │ ├── divide.js │ │ │ │ │ ├── line_count.js │ │ │ │ │ ├── line_count_options.js │ │ │ │ │ ├── line_count_wrap.js │ │ │ │ │ ├── nonopt.js │ │ │ │ │ ├── reflect.js │ │ │ │ │ ├── short.js │ │ │ │ │ ├── string.js │ │ │ │ │ ├── usage-options.js │ │ │ │ │ └── xup.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ ├── readme.markdown │ │ │ │ └── test │ │ │ │ │ ├── _.js │ │ │ │ │ ├── _ │ │ │ │ │ ├── argv.js │ │ │ │ │ └── bin.js │ │ │ │ │ ├── dash.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── parse_modified.js │ │ │ │ │ ├── short.js │ │ │ │ │ ├── usage.js │ │ │ │ │ └── whitespace.js │ │ │ └── wordwrap │ │ │ │ ├── LICENSE │ │ │ │ ├── README.markdown │ │ │ │ ├── example │ │ │ │ ├── center.js │ │ │ │ └── meat.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ ├── break.js │ │ │ │ ├── idleness.txt │ │ │ │ └── wrap.js │ │ ├── package.json │ │ ├── scroll.js │ │ ├── server.js │ │ ├── stylesheet.css │ │ └── tabvisibility.js │ ├── config.yaml │ ├── openapi-spec │ │ └── swagger.json │ └── static_includes │ │ ├── _clusterregistry.md │ │ ├── _definitions.md │ │ ├── _oldversions.md │ │ └── _overview.md ├── release.md └── userguide.md ├── examples ├── cluster-two.yaml ├── cluster.yaml └── slackcontroller │ ├── README.md │ ├── main.go │ └── slackcontroller.go ├── hack ├── boilerplate.go.txt ├── go-tools │ ├── verify-gofmt.sh │ └── verify-govet.sh ├── imports.go ├── update-licenses.sh ├── verify-all-gensrc.sh ├── verify-go-src.sh └── verify-licenses.sh ├── pkg ├── apis │ ├── clusterregistry │ │ ├── doc.go │ │ └── v1alpha1 │ │ │ ├── doc.go │ │ │ ├── types.go │ │ │ ├── zz_generated.deepcopy.go │ │ │ └── zz_generated.kubebuilder.go │ └── doc.go ├── client │ ├── clientset │ │ └── versioned │ │ │ ├── clientset.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── clientset_generated.go │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ ├── scheme │ │ │ ├── doc.go │ │ │ └── register.go │ │ │ └── typed │ │ │ └── clusterregistry │ │ │ └── v1alpha1 │ │ │ ├── cluster.go │ │ │ ├── clusterregistry_client.go │ │ │ ├── doc.go │ │ │ ├── fake │ │ │ ├── doc.go │ │ │ ├── fake_cluster.go │ │ │ └── fake_clusterregistry_client.go │ │ │ └── generated_expansion.go │ ├── informers │ │ └── externalversions │ │ │ ├── clusterregistry │ │ │ ├── interface.go │ │ │ └── v1alpha1 │ │ │ │ ├── cluster.go │ │ │ │ └── interface.go │ │ │ ├── factory.go │ │ │ ├── generic.go │ │ │ └── internalinterfaces │ │ │ └── factory_interfaces.go │ └── listers │ │ └── clusterregistry │ │ └── v1alpha1 │ │ ├── cluster.go │ │ └── expansion_generated.go ├── controller │ └── doc.go └── inject │ └── doc.go └── test └── integration ├── doc.go └── server_test.go /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | /sig multicluster 4 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | /sig multicluster 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bazel-* 2 | examples/samplecontainer/contents/clusterregistry 3 | examples/samplecontainer/contents/slackcontroller 4 | 5 | vendor/ 6 | Gopkg.lock 7 | Gopkg.toml 8 | -------------------------------------------------------------------------------- /OWNERS: -------------------------------------------------------------------------------- 1 | reviewers: 2 | - font 3 | - madhusudancs 4 | - perotinus 5 | - pmorie 6 | approvers: 7 | - font 8 | - madhusudancs 9 | - perotinus 10 | - pmorie 11 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Cluster Registry (archived) 2 | 3 | This repository has been archived and is no longer active development. Please 4 | see the [current subprojects](https://github.com/kubernetes/community/tree/master/sig-multicluster#subprojects) 5 | of SIG Multicluster to track ongoing work. 6 | -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- 1 | # Release Process 2 | 3 | Refer to [docs/release.md](docs/release.md) for information on the cluster 4 | registry release process. 5 | -------------------------------------------------------------------------------- /SECURITY_CONTACTS: -------------------------------------------------------------------------------- 1 | # Defined below are the security contacts for this repo. 2 | # 3 | # They are the contact point for the Product Security Committee to reach out 4 | # to for triaging and handling of incoming issues. 5 | # 6 | # The below names agree to abide by the 7 | # [Embargo Policy](https://git.k8s.io/security/private-distributors-list.md#embargo-policy) 8 | # and will be removed and replaced if they violate that agreement. 9 | # 10 | # DO NOT REPORT SECURITY VULNERABILITIES DIRECTLY TO THESE NAMES, FOLLOW THE 11 | # INSTRUCTIONS AT https://kubernetes.io/security/ 12 | 13 | font 14 | perotinus 15 | -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- 1 | # Kubernetes Community Code of Conduct 2 | 3 | Please refer to our [Kubernetes Community Code of Conduct](https://git.k8s.io/community/code-of-conduct.md) 4 | -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- 1 | ### cluster-registry docs 2 | 3 | - [API Design](api_design.md) 4 | - [API Reference](api_reference.md) 5 | - [Development](development.md) 6 | - [Release](release.md) 7 | - [User Guide](userguide.md) 8 | -------------------------------------------------------------------------------- /docs/_config.yml: -------------------------------------------------------------------------------- 1 | theme: jekyll-theme-cayman -------------------------------------------------------------------------------- /docs/api_design.md: -------------------------------------------------------------------------------- 1 | # Cluster API design 2 | 3 | The [API design](https://github.com/kubernetes/community/blob/master/contributors/design-proposals/multicluster/cluster-registry/api-design.md) for the cluster registry API is in the kubernetes/community repo. 4 | -------------------------------------------------------------------------------- /docs/api_reference.md: -------------------------------------------------------------------------------- 1 | # cluster-registry API Reference 2 | 3 | ## clusterregistry/v1alpha1 4 | 5 | - [clusterregistry/v1alpha1](reference/build/index.html) 6 | -------------------------------------------------------------------------------- /docs/reference/build/jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "target": "ES6", 4 | "module": "commonjs" 5 | } 6 | } -------------------------------------------------------------------------------- /docs/reference/build/navData.js: -------------------------------------------------------------------------------- 1 | (function(){navData = {"toc":[{"section":"-strong-field-definitions-strong-","subsections":[{"section":"time-v1"},{"section":"statusdetails-v1"},{"section":"statuscause-v1"},{"section":"status-v1"},{"section":"serveraddressbyclientcidr-v1alpha1"},{"section":"ownerreference-v1"},{"section":"objectreference-v1alpha1"},{"section":"objectmeta-v1"},{"section":"listmeta-v1"},{"section":"kubernetesapiendpoints-v1alpha1"},{"section":"initializers-v1"},{"section":"initializer-v1"},{"section":"clustercondition-v1alpha1"},{"section":"authinfo-v1alpha1"}]},{"section":"-strong-old-api-versions-strong-","subsections":[]},{"section":"cluster-v1alpha1","subsections":[]},{"section":"-strong-clusterregistry-strong-","subsections":[]}],"flatToc":["time-v1","statusdetails-v1","statuscause-v1","status-v1","serveraddressbyclientcidr-v1alpha1","ownerreference-v1","objectreference-v1alpha1","objectmeta-v1","listmeta-v1","kubernetesapiendpoints-v1alpha1","initializers-v1","initializer-v1","clustercondition-v1alpha1","authinfo-v1alpha1","-strong-field-definitions-strong-","-strong-old-api-versions-strong-","cluster-v1alpha1","-strong-clusterregistry-strong-"]};})(); -------------------------------------------------------------------------------- /docs/reference/build/node_modules/.bin/marked: -------------------------------------------------------------------------------- 1 | ../marked/bin/marked -------------------------------------------------------------------------------- /docs/reference/build/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /docs/reference/build/node_modules/.bin/static: -------------------------------------------------------------------------------- 1 | ../node-static/bin/cli.js -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/CHANGELOG.md: -------------------------------------------------------------------------------- 1 | Bootstrap uses [GitHub's Releases feature](https://github.com/blog/1547-release-your-software) for its changelogs. 2 | 3 | See [the Releases section of our GitHub project](https://github.com/twbs/bootstrap/releases) for changelogs for each release version of Bootstrap. 4 | 5 | Release announcement posts on [the official Bootstrap blog](http://blog.getbootstrap.com) contain summaries of the most noteworthy changes made in each release. 6 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2011-2016 Twitter, Inc. 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in 13 | all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN 21 | THE SOFTWARE. 22 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/dist/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/dist/js/npm.js: -------------------------------------------------------------------------------- 1 | // This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment. 2 | require('../../js/transition.js') 3 | require('../../js/alert.js') 4 | require('../../js/button.js') 5 | require('../../js/carousel.js') 6 | require('../../js/collapse.js') 7 | require('../../js/dropdown.js') 8 | require('../../js/modal.js') 9 | require('../../js/tooltip.js') 10 | require('../../js/popover.js') 11 | require('../../js/scrollspy.js') 12 | require('../../js/tab.js') 13 | require('../../js/affix.js') -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/bootstrap/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/grunt/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends" : "../js/.jshintrc", 3 | "asi" : false, 4 | "browser" : false, 5 | "es3" : false, 6 | "node" : true 7 | } 8 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/grunt/bs-commonjs-generator.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * Bootstrap Grunt task for the CommonJS module generation 3 | * http://getbootstrap.com 4 | * Copyright 2014-2015 Twitter, Inc. 5 | * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE) 6 | */ 7 | 8 | 'use strict'; 9 | 10 | var fs = require('fs'); 11 | var path = require('path'); 12 | 13 | var COMMONJS_BANNER = '// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.\n'; 14 | 15 | module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath) { 16 | var destDir = path.dirname(destFilepath); 17 | 18 | function srcPathToDestRequire(srcFilepath) { 19 | var requirePath = path.relative(destDir, srcFilepath).replace(/\\/g, '/'); 20 | return 'require(\'' + requirePath + '\')'; 21 | } 22 | 23 | var moduleOutputJs = COMMONJS_BANNER + srcFiles.map(srcPathToDestRequire).join('\n'); 24 | try { 25 | fs.writeFileSync(destFilepath, moduleOutputJs); 26 | } catch (err) { 27 | grunt.fail.warn(err); 28 | } 29 | grunt.log.writeln('File ' + destFilepath.cyan + ' created.'); 30 | }; 31 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/breadcrumbs.less: -------------------------------------------------------------------------------- 1 | // 2 | // Breadcrumbs 3 | // -------------------------------------------------- 4 | 5 | 6 | .breadcrumb { 7 | padding: @breadcrumb-padding-vertical @breadcrumb-padding-horizontal; 8 | margin-bottom: @line-height-computed; 9 | list-style: none; 10 | background-color: @breadcrumb-bg; 11 | border-radius: @border-radius-base; 12 | 13 | > li { 14 | display: inline-block; 15 | 16 | + li:before { 17 | content: "@{breadcrumb-separator}\00a0"; // Unicode space added since inline-block means non-collapsing white-space 18 | padding: 0 5px; 19 | color: @breadcrumb-color; 20 | } 21 | } 22 | 23 | > .active { 24 | color: @breadcrumb-active-color; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/close.less: -------------------------------------------------------------------------------- 1 | // 2 | // Close icons 3 | // -------------------------------------------------- 4 | 5 | 6 | .close { 7 | float: right; 8 | font-size: (@font-size-base * 1.5); 9 | font-weight: @close-font-weight; 10 | line-height: 1; 11 | color: @close-color; 12 | text-shadow: @close-text-shadow; 13 | .opacity(.2); 14 | 15 | &:hover, 16 | &:focus { 17 | color: @close-color; 18 | text-decoration: none; 19 | cursor: pointer; 20 | .opacity(.5); 21 | } 22 | 23 | // Additional properties for button version 24 | // iOS requires the button element instead of an anchor tag. 25 | // If you want the anchor version, it requires `href="#"`. 26 | // See https://developer.mozilla.org/en-US/docs/Web/Events/click#Safari_Mobile 27 | button& { 28 | padding: 0; 29 | cursor: pointer; 30 | background: transparent; 31 | border: 0; 32 | -webkit-appearance: none; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/component-animations.less: -------------------------------------------------------------------------------- 1 | // 2 | // Component animations 3 | // -------------------------------------------------- 4 | 5 | // Heads up! 6 | // 7 | // We don't use the `.opacity()` mixin here since it causes a bug with text 8 | // fields in IE7-8. Source: https://github.com/twbs/bootstrap/pull/3552. 9 | 10 | .fade { 11 | opacity: 0; 12 | .transition(opacity .15s linear); 13 | &.in { 14 | opacity: 1; 15 | } 16 | } 17 | 18 | .collapse { 19 | display: none; 20 | 21 | &.in { display: block; } 22 | tr&.in { display: table-row; } 23 | tbody&.in { display: table-row-group; } 24 | } 25 | 26 | .collapsing { 27 | position: relative; 28 | height: 0; 29 | overflow: hidden; 30 | .transition-property(~"height, visibility"); 31 | .transition-duration(.35s); 32 | .transition-timing-function(ease); 33 | } 34 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/media.less: -------------------------------------------------------------------------------- 1 | .media { 2 | // Proper spacing between instances of .media 3 | margin-top: 15px; 4 | 5 | &:first-child { 6 | margin-top: 0; 7 | } 8 | } 9 | 10 | .media, 11 | .media-body { 12 | zoom: 1; 13 | overflow: hidden; 14 | } 15 | 16 | .media-body { 17 | width: 10000px; 18 | } 19 | 20 | .media-object { 21 | display: block; 22 | 23 | // Fix collapse in webkit from max-width: 100% and display: table-cell. 24 | &.img-thumbnail { 25 | max-width: none; 26 | } 27 | } 28 | 29 | .media-right, 30 | .media > .pull-right { 31 | padding-left: 10px; 32 | } 33 | 34 | .media-left, 35 | .media > .pull-left { 36 | padding-right: 10px; 37 | } 38 | 39 | .media-left, 40 | .media-right, 41 | .media-body { 42 | display: table-cell; 43 | vertical-align: top; 44 | } 45 | 46 | .media-middle { 47 | vertical-align: middle; 48 | } 49 | 50 | .media-bottom { 51 | vertical-align: bottom; 52 | } 53 | 54 | // Reset margins on headings for tighter default spacing 55 | .media-heading { 56 | margin-top: 0; 57 | margin-bottom: 5px; 58 | } 59 | 60 | // Media list variation 61 | // 62 | // Undo default ul/ol styles 63 | .media-list { 64 | padding-left: 0; 65 | list-style: none; 66 | } 67 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/alerts.less: -------------------------------------------------------------------------------- 1 | // Alerts 2 | 3 | .alert-variant(@background; @border; @text-color) { 4 | background-color: @background; 5 | border-color: @border; 6 | color: @text-color; 7 | 8 | hr { 9 | border-top-color: darken(@border, 5%); 10 | } 11 | .alert-link { 12 | color: darken(@text-color, 10%); 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/background-variant.less: -------------------------------------------------------------------------------- 1 | // Contextual backgrounds 2 | 3 | .bg-variant(@color) { 4 | background-color: @color; 5 | a&:hover, 6 | a&:focus { 7 | background-color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/border-radius.less: -------------------------------------------------------------------------------- 1 | // Single side border-radius 2 | 3 | .border-top-radius(@radius) { 4 | border-top-right-radius: @radius; 5 | border-top-left-radius: @radius; 6 | } 7 | .border-right-radius(@radius) { 8 | border-bottom-right-radius: @radius; 9 | border-top-right-radius: @radius; 10 | } 11 | .border-bottom-radius(@radius) { 12 | border-bottom-right-radius: @radius; 13 | border-bottom-left-radius: @radius; 14 | } 15 | .border-left-radius(@radius) { 16 | border-bottom-left-radius: @radius; 17 | border-top-left-radius: @radius; 18 | } 19 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/center-block.less: -------------------------------------------------------------------------------- 1 | // Center-align a block level element 2 | 3 | .center-block() { 4 | display: block; 5 | margin-left: auto; 6 | margin-right: auto; 7 | } 8 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/clearfix.less: -------------------------------------------------------------------------------- 1 | // Clearfix 2 | // 3 | // For modern browsers 4 | // 1. The space content is one way to avoid an Opera bug when the 5 | // contenteditable attribute is included anywhere else in the document. 6 | // Otherwise it causes space to appear at the top and bottom of elements 7 | // that are clearfixed. 8 | // 2. The use of `table` rather than `block` is only necessary if using 9 | // `:before` to contain the top-margins of child elements. 10 | // 11 | // Source: http://nicolasgallagher.com/micro-clearfix-hack/ 12 | 13 | .clearfix() { 14 | &:before, 15 | &:after { 16 | content: " "; // 1 17 | display: table; // 2 18 | } 19 | &:after { 20 | clear: both; 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/hide-text.less: -------------------------------------------------------------------------------- 1 | // CSS image replacement 2 | // 3 | // Heads up! v3 launched with only `.hide-text()`, but per our pattern for 4 | // mixins being reused as classes with the same name, this doesn't hold up. As 5 | // of v3.0.1 we have added `.text-hide()` and deprecated `.hide-text()`. 6 | // 7 | // Source: https://github.com/h5bp/html5-boilerplate/commit/aa0396eae757 8 | 9 | // Deprecated as of v3.0.1 (has been removed in v4) 10 | .hide-text() { 11 | font: ~"0/0" a; 12 | color: transparent; 13 | text-shadow: none; 14 | background-color: transparent; 15 | border: 0; 16 | } 17 | 18 | // New mixin to use as of v3.0.1 19 | .text-hide() { 20 | .hide-text(); 21 | } 22 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/image.less: -------------------------------------------------------------------------------- 1 | // Image Mixins 2 | // - Responsive image 3 | // - Retina image 4 | 5 | 6 | // Responsive image 7 | // 8 | // Keep images from scaling beyond the width of their parents. 9 | .img-responsive(@display: block) { 10 | display: @display; 11 | max-width: 100%; // Part 1: Set a maximum relative to the parent 12 | height: auto; // Part 2: Scale the height according to the width, otherwise you get stretching 13 | } 14 | 15 | 16 | // Retina image 17 | // 18 | // Short retina mixin for setting background-image and -size. Note that the 19 | // spelling of `min--moz-device-pixel-ratio` is intentional. 20 | .img-retina(@file-1x; @file-2x; @width-1x; @height-1x) { 21 | background-image: url("@{file-1x}"); 22 | 23 | @media 24 | only screen and (-webkit-min-device-pixel-ratio: 2), 25 | only screen and ( min--moz-device-pixel-ratio: 2), 26 | only screen and ( -o-min-device-pixel-ratio: 2/1), 27 | only screen and ( min-device-pixel-ratio: 2), 28 | only screen and ( min-resolution: 192dpi), 29 | only screen and ( min-resolution: 2dppx) { 30 | background-image: url("@{file-2x}"); 31 | background-size: @width-1x @height-1x; 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/labels.less: -------------------------------------------------------------------------------- 1 | // Labels 2 | 3 | .label-variant(@color) { 4 | background-color: @color; 5 | 6 | &[href] { 7 | &:hover, 8 | &:focus { 9 | background-color: darken(@color, 10%); 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/list-group.less: -------------------------------------------------------------------------------- 1 | // List Groups 2 | 3 | .list-group-item-variant(@state; @background; @color) { 4 | .list-group-item-@{state} { 5 | color: @color; 6 | background-color: @background; 7 | 8 | a&, 9 | button& { 10 | color: @color; 11 | 12 | .list-group-item-heading { 13 | color: inherit; 14 | } 15 | 16 | &:hover, 17 | &:focus { 18 | color: @color; 19 | background-color: darken(@background, 5%); 20 | } 21 | &.active, 22 | &.active:hover, 23 | &.active:focus { 24 | color: #fff; 25 | background-color: @color; 26 | border-color: @color; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/nav-divider.less: -------------------------------------------------------------------------------- 1 | // Horizontal dividers 2 | // 3 | // Dividers (basically an hr) within dropdowns and nav lists 4 | 5 | .nav-divider(@color: #e5e5e5) { 6 | height: 1px; 7 | margin: ((@line-height-computed / 2) - 1) 0; 8 | overflow: hidden; 9 | background-color: @color; 10 | } 11 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/nav-vertical-align.less: -------------------------------------------------------------------------------- 1 | // Navbar vertical align 2 | // 3 | // Vertically center elements in the navbar. 4 | // Example: an element has a height of 30px, so write out `.navbar-vertical-align(30px);` to calculate the appropriate top margin. 5 | 6 | .navbar-vertical-align(@element-height) { 7 | margin-top: ((@navbar-height - @element-height) / 2); 8 | margin-bottom: ((@navbar-height - @element-height) / 2); 9 | } 10 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/opacity.less: -------------------------------------------------------------------------------- 1 | // Opacity 2 | 3 | .opacity(@opacity) { 4 | opacity: @opacity; 5 | // IE8 filter 6 | @opacity-ie: (@opacity * 100); 7 | filter: ~"alpha(opacity=@{opacity-ie})"; 8 | } 9 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/pagination.less: -------------------------------------------------------------------------------- 1 | // Pagination 2 | 3 | .pagination-size(@padding-vertical; @padding-horizontal; @font-size; @line-height; @border-radius) { 4 | > li { 5 | > a, 6 | > span { 7 | padding: @padding-vertical @padding-horizontal; 8 | font-size: @font-size; 9 | line-height: @line-height; 10 | } 11 | &:first-child { 12 | > a, 13 | > span { 14 | .border-left-radius(@border-radius); 15 | } 16 | } 17 | &:last-child { 18 | > a, 19 | > span { 20 | .border-right-radius(@border-radius); 21 | } 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/panels.less: -------------------------------------------------------------------------------- 1 | // Panels 2 | 3 | .panel-variant(@border; @heading-text-color; @heading-bg-color; @heading-border) { 4 | border-color: @border; 5 | 6 | & > .panel-heading { 7 | color: @heading-text-color; 8 | background-color: @heading-bg-color; 9 | border-color: @heading-border; 10 | 11 | + .panel-collapse > .panel-body { 12 | border-top-color: @border; 13 | } 14 | .badge { 15 | color: @heading-bg-color; 16 | background-color: @heading-text-color; 17 | } 18 | } 19 | & > .panel-footer { 20 | + .panel-collapse > .panel-body { 21 | border-bottom-color: @border; 22 | } 23 | } 24 | } 25 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/progress-bar.less: -------------------------------------------------------------------------------- 1 | // Progress bars 2 | 3 | .progress-bar-variant(@color) { 4 | background-color: @color; 5 | 6 | // Deprecated parent class requirement as of v3.2.0 7 | .progress-striped & { 8 | #gradient > .striped(); 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/reset-filter.less: -------------------------------------------------------------------------------- 1 | // Reset filters for IE 2 | // 3 | // When you need to remove a gradient background, do not forget to use this to reset 4 | // the IE filter for IE9 and below. 5 | 6 | .reset-filter() { 7 | filter: e(%("progid:DXImageTransform.Microsoft.gradient(enabled = false)")); 8 | } 9 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/reset-text.less: -------------------------------------------------------------------------------- 1 | .reset-text() { 2 | font-family: @font-family-base; 3 | // We deliberately do NOT reset font-size. 4 | font-style: normal; 5 | font-weight: normal; 6 | letter-spacing: normal; 7 | line-break: auto; 8 | line-height: @line-height-base; 9 | text-align: left; // Fallback for where `start` is not supported 10 | text-align: start; 11 | text-decoration: none; 12 | text-shadow: none; 13 | text-transform: none; 14 | white-space: normal; 15 | word-break: normal; 16 | word-spacing: normal; 17 | word-wrap: normal; 18 | } 19 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/resize.less: -------------------------------------------------------------------------------- 1 | // Resize anything 2 | 3 | .resizable(@direction) { 4 | resize: @direction; // Options: horizontal, vertical, both 5 | overflow: auto; // Per CSS3 UI, `resize` only applies when `overflow` isn't `visible` 6 | } 7 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/responsive-visibility.less: -------------------------------------------------------------------------------- 1 | // Responsive utilities 2 | 3 | // 4 | // More easily include all the states for responsive-utilities.less. 5 | .responsive-visibility() { 6 | display: block !important; 7 | table& { display: table !important; } 8 | tr& { display: table-row !important; } 9 | th&, 10 | td& { display: table-cell !important; } 11 | } 12 | 13 | .responsive-invisibility() { 14 | display: none !important; 15 | } 16 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/size.less: -------------------------------------------------------------------------------- 1 | // Sizing shortcuts 2 | 3 | .size(@width; @height) { 4 | width: @width; 5 | height: @height; 6 | } 7 | 8 | .square(@size) { 9 | .size(@size; @size); 10 | } 11 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/tab-focus.less: -------------------------------------------------------------------------------- 1 | // WebKit-style focus 2 | 3 | .tab-focus() { 4 | // WebKit-specific. Other browsers will keep their default outline style. 5 | // (Initially tried to also force default via `outline: initial`, 6 | // but that seems to erroneously remove the outline in Firefox altogether.) 7 | outline: 5px auto -webkit-focus-ring-color; 8 | outline-offset: -2px; 9 | } 10 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/table-row.less: -------------------------------------------------------------------------------- 1 | // Tables 2 | 3 | .table-row-variant(@state; @background) { 4 | // Exact selectors below required to override `.table-striped` and prevent 5 | // inheritance to nested tables. 6 | .table > thead > tr, 7 | .table > tbody > tr, 8 | .table > tfoot > tr { 9 | > td.@{state}, 10 | > th.@{state}, 11 | &.@{state} > td, 12 | &.@{state} > th { 13 | background-color: @background; 14 | } 15 | } 16 | 17 | // Hover states for `.table-hover` 18 | // Note: this is not available for cells or rows within `thead` or `tfoot`. 19 | .table-hover > tbody > tr { 20 | > td.@{state}:hover, 21 | > th.@{state}:hover, 22 | &.@{state}:hover > td, 23 | &:hover > .@{state}, 24 | &.@{state}:hover > th { 25 | background-color: darken(@background, 5%); 26 | } 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/text-emphasis.less: -------------------------------------------------------------------------------- 1 | // Typography 2 | 3 | .text-emphasis-variant(@color) { 4 | color: @color; 5 | a&:hover, 6 | a&:focus { 7 | color: darken(@color, 10%); 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/mixins/text-overflow.less: -------------------------------------------------------------------------------- 1 | // Text overflow 2 | // Requires inline-block or block for proper styling 3 | 4 | .text-overflow() { 5 | overflow: hidden; 6 | text-overflow: ellipsis; 7 | white-space: nowrap; 8 | } 9 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/pager.less: -------------------------------------------------------------------------------- 1 | // 2 | // Pager pagination 3 | // -------------------------------------------------- 4 | 5 | 6 | .pager { 7 | padding-left: 0; 8 | margin: @line-height-computed 0; 9 | list-style: none; 10 | text-align: center; 11 | &:extend(.clearfix all); 12 | li { 13 | display: inline; 14 | > a, 15 | > span { 16 | display: inline-block; 17 | padding: 5px 14px; 18 | background-color: @pager-bg; 19 | border: 1px solid @pager-border; 20 | border-radius: @pager-border-radius; 21 | } 22 | 23 | > a:hover, 24 | > a:focus { 25 | text-decoration: none; 26 | background-color: @pager-hover-bg; 27 | } 28 | } 29 | 30 | .next { 31 | > a, 32 | > span { 33 | float: right; 34 | } 35 | } 36 | 37 | .previous { 38 | > a, 39 | > span { 40 | float: left; 41 | } 42 | } 43 | 44 | .disabled { 45 | > a, 46 | > a:hover, 47 | > a:focus, 48 | > span { 49 | color: @pager-disabled-color; 50 | background-color: @pager-bg; 51 | cursor: @cursor-disabled; 52 | } 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/responsive-embed.less: -------------------------------------------------------------------------------- 1 | // Embeds responsive 2 | // 3 | // Credit: Nicolas Gallagher and SUIT CSS. 4 | 5 | .embed-responsive { 6 | position: relative; 7 | display: block; 8 | height: 0; 9 | padding: 0; 10 | overflow: hidden; 11 | 12 | .embed-responsive-item, 13 | iframe, 14 | embed, 15 | object, 16 | video { 17 | position: absolute; 18 | top: 0; 19 | left: 0; 20 | bottom: 0; 21 | height: 100%; 22 | width: 100%; 23 | border: 0; 24 | } 25 | } 26 | 27 | // Modifier class for 16:9 aspect ratio 28 | .embed-responsive-16by9 { 29 | padding-bottom: 56.25%; 30 | } 31 | 32 | // Modifier class for 4:3 aspect ratio 33 | .embed-responsive-4by3 { 34 | padding-bottom: 75%; 35 | } 36 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/thumbnails.less: -------------------------------------------------------------------------------- 1 | // 2 | // Thumbnails 3 | // -------------------------------------------------- 4 | 5 | 6 | // Mixin and adjust the regular image class 7 | .thumbnail { 8 | display: block; 9 | padding: @thumbnail-padding; 10 | margin-bottom: @line-height-computed; 11 | line-height: @line-height-base; 12 | background-color: @thumbnail-bg; 13 | border: 1px solid @thumbnail-border; 14 | border-radius: @thumbnail-border-radius; 15 | .transition(border .2s ease-in-out); 16 | 17 | > img, 18 | a > img { 19 | &:extend(.img-responsive); 20 | margin-left: auto; 21 | margin-right: auto; 22 | } 23 | 24 | // Add a hover state for linked versions only 25 | a&:hover, 26 | a&:focus, 27 | a&.active { 28 | border-color: @link-color; 29 | } 30 | 31 | // Image captions 32 | .caption { 33 | padding: @thumbnail-caption-padding; 34 | color: @thumbnail-caption-color; 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/utilities.less: -------------------------------------------------------------------------------- 1 | // 2 | // Utility classes 3 | // -------------------------------------------------- 4 | 5 | 6 | // Floats 7 | // ------------------------- 8 | 9 | .clearfix { 10 | .clearfix(); 11 | } 12 | .center-block { 13 | .center-block(); 14 | } 15 | .pull-right { 16 | float: right !important; 17 | } 18 | .pull-left { 19 | float: left !important; 20 | } 21 | 22 | 23 | // Toggling content 24 | // ------------------------- 25 | 26 | // Note: Deprecated .hide in favor of .hidden or .sr-only (as appropriate) in v3.0.1 27 | .hide { 28 | display: none !important; 29 | } 30 | .show { 31 | display: block !important; 32 | } 33 | .invisible { 34 | visibility: hidden; 35 | } 36 | .text-hide { 37 | .text-hide(); 38 | } 39 | 40 | 41 | // Hide from screenreaders and browsers 42 | // 43 | // Credit: HTML5 Boilerplate 44 | 45 | .hidden { 46 | display: none !important; 47 | } 48 | 49 | 50 | // For Affix plugin 51 | // ------------------------- 52 | 53 | .affix { 54 | position: fixed; 55 | } 56 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/bootstrap/less/wells.less: -------------------------------------------------------------------------------- 1 | // 2 | // Wells 3 | // -------------------------------------------------- 4 | 5 | 6 | // Base class 7 | .well { 8 | min-height: 20px; 9 | padding: 19px; 10 | margin-bottom: 20px; 11 | background-color: @well-bg; 12 | border: 1px solid @well-border; 13 | border-radius: @border-radius-base; 14 | .box-shadow(inset 0 1px 1px rgba(0,0,0,.05)); 15 | blockquote { 16 | border-color: #ddd; 17 | border-color: rgba(0,0,0,.15); 18 | } 19 | } 20 | 21 | // Sizes 22 | .well-lg { 23 | padding: 24px; 24 | border-radius: @border-radius-large; 25 | } 26 | .well-sm { 27 | padding: 9px; 28 | border-radius: @border-radius-small; 29 | } 30 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/lib/index.js: -------------------------------------------------------------------------------- 1 | var colors = require('./colors'); 2 | module['exports'] = colors; 3 | 4 | // Remark: By default, colors will add style properties to String.prototype. 5 | // 6 | // If you don't wish to extend String.prototype, you can do this instead and 7 | // native String will not be touched: 8 | // 9 | // var colors = require('colors/safe); 10 | // colors.red("foo") 11 | // 12 | // 13 | require('./extendStringPrototype')(); 14 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/lib/maps/america.js: -------------------------------------------------------------------------------- 1 | var colors = require('../colors'); 2 | 3 | module['exports'] = (function() { 4 | return function(letter, i, exploded) { 5 | if (letter === ' ') return letter; 6 | switch (i%3) { 7 | case 0: return colors.red(letter); 8 | case 1: return colors.white(letter); 9 | case 2: return colors.blue(letter); 10 | } 11 | }; 12 | })(); 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/lib/maps/rainbow.js: -------------------------------------------------------------------------------- 1 | var colors = require('../colors'); 2 | 3 | module['exports'] = (function() { 4 | // RoY G BiV 5 | var rainbowColors = ['red', 'yellow', 'green', 'blue', 'magenta']; 6 | return function(letter, i, exploded) { 7 | if (letter === ' ') { 8 | return letter; 9 | } else { 10 | return colors[rainbowColors[i++ % rainbowColors.length]](letter); 11 | } 12 | }; 13 | })(); 14 | 15 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/lib/maps/random.js: -------------------------------------------------------------------------------- 1 | var colors = require('../colors'); 2 | 3 | module['exports'] = (function() { 4 | var available = ['underline', 'inverse', 'grey', 'yellow', 'red', 'green', 5 | 'blue', 'white', 'cyan', 'magenta']; 6 | return function(letter, i, exploded) { 7 | return letter === ' ' ? letter : 8 | colors[ 9 | available[Math.round(Math.random() * (available.length - 2))] 10 | ](letter); 11 | }; 12 | })(); 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/lib/maps/zebra.js: -------------------------------------------------------------------------------- 1 | var colors = require('../colors'); 2 | 3 | module['exports'] = function(letter, i, exploded) { 4 | return i % 2 === 0 ? letter : colors.inverse(letter); 5 | }; 6 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/safe.js: -------------------------------------------------------------------------------- 1 | // 2 | // Remark: Requiring this file will use the "safe" colors API, 3 | // which will not touch String.prototype. 4 | // 5 | // var colors = require('colors/safe'); 6 | // colors.red("foo") 7 | // 8 | // 9 | var colors = require('./lib/colors'); 10 | module['exports'] = colors; 11 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/colors/themes/generic-logging.js: -------------------------------------------------------------------------------- 1 | module['exports'] = { 2 | silly: 'rainbow', 3 | input: 'grey', 4 | verbose: 'cyan', 5 | prompt: 'grey', 6 | info: 'green', 7 | data: 'grey', 8 | help: 'cyan', 9 | warn: 'yellow', 10 | debug: 'blue', 11 | error: 'red', 12 | }; 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/.npmignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.egg-info 3 | *.db 4 | *.db.old 5 | *.swp 6 | *.db-journal 7 | 8 | .coverage 9 | .DS_Store 10 | .installed.cfg 11 | _gh_pages/* 12 | 13 | .idea/* 14 | .svn/* 15 | src/website/static/* 16 | src/website/media/* 17 | 18 | bin 19 | cfcache 20 | develop-eggs 21 | dist 22 | downloads 23 | eggs 24 | parts 25 | tmp 26 | .sass-cache 27 | node_modules 28 | 29 | src/website/settingslocal.py 30 | stunnel.log 31 | 32 | .ruby-version 33 | 34 | # don't need these in the npm package. 35 | src/ 36 | _config.yml 37 | bower.json 38 | component.json 39 | composer.json 40 | CONTRIBUTING.md 41 | Gemfile 42 | Gemfile.lock 43 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/HELP-US-OUT.txt: -------------------------------------------------------------------------------- 1 | I hope you love Font Awesome. If you've found it useful, please do me a favor and check out my latest project, 2 | Fort Awesome (https://fortawesome.com). It makes it easy to put the perfect icons on your website. Choose from our awesome, 3 | comprehensive icon sets or copy and paste your own. 4 | 5 | Please. Check it out. 6 | 7 | -Dave Gandy 8 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/font-awesome/fonts/fontawesome-webfont.woff2 -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/animated.less: -------------------------------------------------------------------------------- 1 | // Animated Icons 2 | // -------------------------- 3 | 4 | .@{fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .@{fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em @fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .@{fa-css-prefix}-pull-left { float: left; } 11 | .@{fa-css-prefix}-pull-right { float: right; } 12 | 13 | .@{fa-css-prefix} { 14 | &.@{fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.@{fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .@{fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/core.less: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal @fa-font-size-base/@fa-line-height-base FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .@{fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables.less"; 7 | @import "mixins.less"; 8 | @import "path.less"; 9 | @import "core.less"; 10 | @import "larger.less"; 11 | @import "fixed-width.less"; 12 | @import "list.less"; 13 | @import "bordered-pulled.less"; 14 | @import "animated.less"; 15 | @import "rotated-flipped.less"; 16 | @import "stacked.less"; 17 | @import "icons.less"; 18 | @import "screen-reader.less"; 19 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/larger.less: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .@{fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .@{fa-css-prefix}-2x { font-size: 2em; } 11 | .@{fa-css-prefix}-3x { font-size: 3em; } 12 | .@{fa-css-prefix}-4x { font-size: 4em; } 13 | .@{fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/list.less: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: @fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .@{fa-css-prefix}-li { 11 | position: absolute; 12 | left: -@fa-li-width; 13 | width: @fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.@{fa-css-prefix}-lg { 17 | left: (-@fa-li-width + (4em / 14)); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/path.less: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('@{fa-font-path}/fontawesome-webfont.eot?v=@{fa-version}'); 7 | src: url('@{fa-font-path}/fontawesome-webfont.eot?#iefix&v=@{fa-version}') format('embedded-opentype'), 8 | url('@{fa-font-path}/fontawesome-webfont.woff2?v=@{fa-version}') format('woff2'), 9 | url('@{fa-font-path}/fontawesome-webfont.woff?v=@{fa-version}') format('woff'), 10 | url('@{fa-font-path}/fontawesome-webfont.ttf?v=@{fa-version}') format('truetype'), 11 | url('@{fa-font-path}/fontawesome-webfont.svg?v=@{fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('@{fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-rotate-90 { .fa-icon-rotate(90deg, 1); } 5 | .@{fa-css-prefix}-rotate-180 { .fa-icon-rotate(180deg, 2); } 6 | .@{fa-css-prefix}-rotate-270 { .fa-icon-rotate(270deg, 3); } 7 | 8 | .@{fa-css-prefix}-flip-horizontal { .fa-icon-flip(-1, 1, 0); } 9 | .@{fa-css-prefix}-flip-vertical { .fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .@{fa-css-prefix}-rotate-90, 15 | :root .@{fa-css-prefix}-rotate-180, 16 | :root .@{fa-css-prefix}-rotate-270, 17 | :root .@{fa-css-prefix}-flip-horizontal, 18 | :root .@{fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/screen-reader.less: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { .sr-only(); } 5 | .sr-only-focusable { .sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .@{fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .@{fa-css-prefix}-stack-1x, .@{fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .@{fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .@{fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .@{fa-css-prefix}-inverse { color: @fa-inverse; } 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_animated.scss: -------------------------------------------------------------------------------- 1 | // Spinning Icons 2 | // -------------------------- 3 | 4 | .#{$fa-css-prefix}-spin { 5 | -webkit-animation: fa-spin 2s infinite linear; 6 | animation: fa-spin 2s infinite linear; 7 | } 8 | 9 | .#{$fa-css-prefix}-pulse { 10 | -webkit-animation: fa-spin 1s infinite steps(8); 11 | animation: fa-spin 1s infinite steps(8); 12 | } 13 | 14 | @-webkit-keyframes fa-spin { 15 | 0% { 16 | -webkit-transform: rotate(0deg); 17 | transform: rotate(0deg); 18 | } 19 | 100% { 20 | -webkit-transform: rotate(359deg); 21 | transform: rotate(359deg); 22 | } 23 | } 24 | 25 | @keyframes fa-spin { 26 | 0% { 27 | -webkit-transform: rotate(0deg); 28 | transform: rotate(0deg); 29 | } 30 | 100% { 31 | -webkit-transform: rotate(359deg); 32 | transform: rotate(359deg); 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- 1 | // Bordered & Pulled 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-border { 5 | padding: .2em .25em .15em; 6 | border: solid .08em $fa-border-color; 7 | border-radius: .1em; 8 | } 9 | 10 | .#{$fa-css-prefix}-pull-left { float: left; } 11 | .#{$fa-css-prefix}-pull-right { float: right; } 12 | 13 | .#{$fa-css-prefix} { 14 | &.#{$fa-css-prefix}-pull-left { margin-right: .3em; } 15 | &.#{$fa-css-prefix}-pull-right { margin-left: .3em; } 16 | } 17 | 18 | /* Deprecated as of 4.4.0 */ 19 | .pull-right { float: right; } 20 | .pull-left { float: left; } 21 | 22 | .#{$fa-css-prefix} { 23 | &.pull-left { margin-right: .3em; } 24 | &.pull-right { margin-left: .3em; } 25 | } 26 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- 1 | // Base Class Definition 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix} { 5 | display: inline-block; 6 | font: normal normal normal #{$fa-font-size-base}/#{$fa-line-height-base} FontAwesome; // shortening font declaration 7 | font-size: inherit; // can't have font-size inherit on line above, so need to override 8 | text-rendering: auto; // optimizelegibility throws things off #1094 9 | -webkit-font-smoothing: antialiased; 10 | -moz-osx-font-smoothing: grayscale; 11 | 12 | } 13 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- 1 | // Fixed Width Icons 2 | // ------------------------- 3 | .#{$fa-css-prefix}-fw { 4 | width: (18em / 14); 5 | text-align: center; 6 | } 7 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- 1 | // Icon Sizes 2 | // ------------------------- 3 | 4 | /* makes the font 33% larger relative to the icon container */ 5 | .#{$fa-css-prefix}-lg { 6 | font-size: (4em / 3); 7 | line-height: (3em / 4); 8 | vertical-align: -15%; 9 | } 10 | .#{$fa-css-prefix}-2x { font-size: 2em; } 11 | .#{$fa-css-prefix}-3x { font-size: 3em; } 12 | .#{$fa-css-prefix}-4x { font-size: 4em; } 13 | .#{$fa-css-prefix}-5x { font-size: 5em; } 14 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- 1 | // List Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-ul { 5 | padding-left: 0; 6 | margin-left: $fa-li-width; 7 | list-style-type: none; 8 | > li { position: relative; } 9 | } 10 | .#{$fa-css-prefix}-li { 11 | position: absolute; 12 | left: -$fa-li-width; 13 | width: $fa-li-width; 14 | top: (2em / 14); 15 | text-align: center; 16 | &.#{$fa-css-prefix}-lg { 17 | left: -$fa-li-width + (4em / 14); 18 | } 19 | } 20 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- 1 | /* FONT PATH 2 | * -------------------------- */ 3 | 4 | @font-face { 5 | font-family: 'FontAwesome'; 6 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?v=#{$fa-version}'); 7 | src: url('#{$fa-font-path}/fontawesome-webfont.eot?#iefix&v=#{$fa-version}') format('embedded-opentype'), 8 | url('#{$fa-font-path}/fontawesome-webfont.woff2?v=#{$fa-version}') format('woff2'), 9 | url('#{$fa-font-path}/fontawesome-webfont.woff?v=#{$fa-version}') format('woff'), 10 | url('#{$fa-font-path}/fontawesome-webfont.ttf?v=#{$fa-version}') format('truetype'), 11 | url('#{$fa-font-path}/fontawesome-webfont.svg?v=#{$fa-version}#fontawesomeregular') format('svg'); 12 | // src: url('#{$fa-font-path}/FontAwesome.otf') format('opentype'); // used when developing fonts 13 | font-weight: normal; 14 | font-style: normal; 15 | } 16 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- 1 | // Rotated & Flipped Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-rotate-90 { @include fa-icon-rotate(90deg, 1); } 5 | .#{$fa-css-prefix}-rotate-180 { @include fa-icon-rotate(180deg, 2); } 6 | .#{$fa-css-prefix}-rotate-270 { @include fa-icon-rotate(270deg, 3); } 7 | 8 | .#{$fa-css-prefix}-flip-horizontal { @include fa-icon-flip(-1, 1, 0); } 9 | .#{$fa-css-prefix}-flip-vertical { @include fa-icon-flip(1, -1, 2); } 10 | 11 | // Hook for IE8-9 12 | // ------------------------- 13 | 14 | :root .#{$fa-css-prefix}-rotate-90, 15 | :root .#{$fa-css-prefix}-rotate-180, 16 | :root .#{$fa-css-prefix}-rotate-270, 17 | :root .#{$fa-css-prefix}-flip-horizontal, 18 | :root .#{$fa-css-prefix}-flip-vertical { 19 | filter: none; 20 | } 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_screen-reader.scss: -------------------------------------------------------------------------------- 1 | // Screen Readers 2 | // ------------------------- 3 | 4 | .sr-only { @include sr-only(); } 5 | .sr-only-focusable { @include sr-only-focusable(); } 6 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- 1 | // Stacked Icons 2 | // ------------------------- 3 | 4 | .#{$fa-css-prefix}-stack { 5 | position: relative; 6 | display: inline-block; 7 | width: 2em; 8 | height: 2em; 9 | line-height: 2em; 10 | vertical-align: middle; 11 | } 12 | .#{$fa-css-prefix}-stack-1x, .#{$fa-css-prefix}-stack-2x { 13 | position: absolute; 14 | left: 0; 15 | width: 100%; 16 | text-align: center; 17 | } 18 | .#{$fa-css-prefix}-stack-1x { line-height: inherit; } 19 | .#{$fa-css-prefix}-stack-2x { font-size: 2em; } 20 | .#{$fa-css-prefix}-inverse { color: $fa-inverse; } 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- 1 | /*! 2 | * Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome 3 | * License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License) 4 | */ 5 | 6 | @import "variables"; 7 | @import "mixins"; 8 | @import "path"; 9 | @import "core"; 10 | @import "larger"; 11 | @import "fixed-width"; 12 | @import "list"; 13 | @import "bordered-pulled"; 14 | @import "animated"; 15 | @import "rotated-flipped"; 16 | @import "stacked"; 17 | @import "icons"; 18 | @import "screen-reader"; 19 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/docs/index.rst: -------------------------------------------------------------------------------- 1 | .. highlight.js documentation master file, created by 2 | sphinx-quickstart on Wed Sep 12 23:48:27 2012. 3 | You can adapt this file completely to your liking, but it should at least 4 | contain the root `toctree` directive. 5 | 6 | ``highlight.js`` developer documentation 7 | ========================================== 8 | 9 | Contents: 10 | 11 | .. toctree:: 12 | :maxdepth: 1 13 | 14 | api 15 | language-guide 16 | reference 17 | css-classes-reference 18 | style-guide 19 | language-contribution 20 | building-testing 21 | release-process 22 | 23 | Miscellaneous: 24 | 25 | .. toctree:: 26 | :maxdepth: 1 27 | 28 | line-numbers 29 | language-requests 30 | 31 | Links: 32 | 33 | - Code: https://github.com/isagalaev/highlight.js 34 | - Discussion: http://groups.google.com/group/highlightjs 35 | - Bug tracking: https://github.com/isagalaev/highlight.js/issues 36 | 37 | 38 | Indices and tables 39 | ================== 40 | 41 | * :ref:`genindex` 42 | * :ref:`modindex` 43 | * :ref:`search` 44 | 45 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/docs/language-requests.rst: -------------------------------------------------------------------------------- 1 | On requesting new languages 2 | =========================== 3 | 4 | This is a general answer to requests for adding new languages that appear from 5 | time to time in the highlight.js issue tracker and discussion group. 6 | 7 | Highlight.js doesn't have a fundamental plan for implementing languages, 8 | instead the project works by accepting language definitions from 9 | interested contributors. There are also no rules at the moment forbidding 10 | any languages from being added to the library, no matter how obscure or 11 | weird. 12 | 13 | This means that there's no point in requesting a new language without 14 | providing an implementation for it. If you want to see a particular language 15 | included in highlight.js but cannot implement it, the best way to make it 16 | happen is to get another developer interested in doing so. Here's our 17 | :doc:`language-guide`. 18 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/docs/release-process.rst: -------------------------------------------------------------------------------- 1 | Release process 2 | =============== 3 | 4 | Note: this is intended for core committers. 5 | 6 | * Update CHANGES.md with everything interesting since the last update. 7 | 8 | * Update version numbers using the three-part x.y.z notation everywhere: 9 | 10 | * The header in CHANGES.md (this is where the site looks for the latest version number) 11 | * ``"version"`` attribute in package.json 12 | * Two places in docs/conf.py (``version`` and ``release``) 13 | 14 | * Commit the version changes and tag the commit with the plain version number (no "v." or anything like that) 15 | 16 | * Push the commit and the tags to master (``git push && git push --tags``) 17 | 18 | Pushing the tag triggers the update process which can be monitored at http://highlightjs.org/api/release/ 19 | 20 | When something didn't work *and* it's fixable in code (version numbers mismatch, last minute patches, etc), simply make another release incrementing the third (revision) part of the version number. 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/accesslog.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | // IP 5 | { 6 | className: 'number', 7 | begin: '\\b\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}(:\\d{1,5})?\\b' 8 | }, 9 | // Other numbers 10 | { 11 | className: 'number', 12 | begin: '\\b\\d+\\b', 13 | relevance: 0 14 | }, 15 | // Requests 16 | { 17 | className: 'string', 18 | begin: '"(GET|POST|HEAD|PUT|DELETE|CONNECT|OPTIONS|PATCH|TRACE)', end: '"', 19 | keywords: 'GET POST HEAD PUT DELETE CONNECT OPTIONS PATCH TRACE', 20 | illegal: '\\n', 21 | relevance: 10 22 | }, 23 | // Dates 24 | { 25 | className: 'string', 26 | begin: /\[/, end: /\]/, 27 | illegal: '\\n' 28 | }, 29 | // Strings 30 | { 31 | className: 'string', 32 | begin: '"', end: '"', 33 | illegal: '\\n' 34 | } 35 | ] 36 | }; 37 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/axapta.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | keywords: 'false int abstract private char boolean static null if for true ' + 4 | 'while long throw finally protected final return void enum else ' + 5 | 'break new catch byte super case short default double public try this switch ' + 6 | 'continue reverse firstfast firstonly forupdate nofetch sum avg minof maxof count ' + 7 | 'order group by asc desc index hint like dispaly edit client server ttsbegin ' + 8 | 'ttscommit str real date container anytype common div mod', 9 | contains: [ 10 | hljs.C_LINE_COMMENT_MODE, 11 | hljs.C_BLOCK_COMMENT_MODE, 12 | hljs.APOS_STRING_MODE, 13 | hljs.QUOTE_STRING_MODE, 14 | hljs.C_NUMBER_MODE, 15 | { 16 | className: 'meta', 17 | begin: '#', end: '$' 18 | }, 19 | { 20 | className: 'class', 21 | beginKeywords: 'class interface', end: '{', excludeEnd: true, 22 | illegal: ':', 23 | contains: [ 24 | {beginKeywords: 'extends implements'}, 25 | hljs.UNDERSCORE_TITLE_MODE 26 | ] 27 | } 28 | ] 29 | }; 30 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/bnf.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs){ 2 | return { 3 | contains: [ 4 | // Attribute 5 | { 6 | className: 'attribute', 7 | begin: // 8 | }, 9 | // Specific 10 | { 11 | begin: /::=/, 12 | starts: { 13 | end: /$/, 14 | contains: [ 15 | { 16 | begin: // 17 | }, 18 | // Common 19 | hljs.C_LINE_COMMENT_MODE, 20 | hljs.C_BLOCK_COMMENT_MODE, 21 | hljs.APOS_STRING_MODE, 22 | hljs.QUOTE_STRING_MODE 23 | ] 24 | } 25 | } 26 | ] 27 | }; 28 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/brainfuck.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs){ 2 | var LITERAL = { 3 | className: 'literal', 4 | begin: '[\\+\\-]', 5 | relevance: 0 6 | }; 7 | return { 8 | aliases: ['bf'], 9 | contains: [ 10 | hljs.COMMENT( 11 | '[^\\[\\]\\.,\\+\\-<> \r\n]', 12 | '[\\[\\]\\.,\\+\\-<> \r\n]', 13 | { 14 | returnEnd: true, 15 | relevance: 0 16 | } 17 | ), 18 | { 19 | className: 'title', 20 | begin: '[\\[\\]]', 21 | relevance: 0 22 | }, 23 | { 24 | className: 'string', 25 | begin: '[\\.,]', 26 | relevance: 0 27 | }, 28 | { 29 | // this mode works as the only relevance counter 30 | begin: /\+\+|\-\-/, returnBegin: true, 31 | contains: [LITERAL] 32 | }, 33 | LITERAL 34 | ] 35 | }; 36 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/clean.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | aliases: ['clean','icl','dcl'], 4 | keywords: { 5 | keyword: 6 | 'if let in with where case of class instance otherwise ' + 7 | 'implementation definition system module from import qualified as ' + 8 | 'special code inline foreign export ccall stdcall generic derive ' + 9 | 'infix infixl infixr', 10 | literal: 11 | 'True False' 12 | }, 13 | contains: [ 14 | 15 | hljs.C_LINE_COMMENT_MODE, 16 | hljs.C_BLOCK_COMMENT_MODE, 17 | hljs.APOS_STRING_MODE, 18 | hljs.QUOTE_STRING_MODE, 19 | hljs.C_NUMBER_MODE, 20 | 21 | {begin: '->|<-[|:]?|::|#!?|>>=|\\{\\||\\|\\}|:==|=:|\\.\\.|<>|`'} // relevance booster 22 | ] 23 | }; 24 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/clojure-repl.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | { 5 | className: 'meta', 6 | begin: /^([\w.-]+|\s*#_)=>/, 7 | starts: { 8 | end: /$/, 9 | subLanguage: 'clojure' 10 | } 11 | } 12 | ] 13 | } 14 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/csp.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | case_insensitive: false, 4 | lexemes: '[a-zA-Z][a-zA-Z0-9_-]*', 5 | keywords: { 6 | keyword: 'base-uri child-src connect-src default-src font-src form-action' + 7 | ' frame-ancestors frame-src img-src media-src object-src plugin-types' + 8 | ' report-uri sandbox script-src style-src', 9 | }, 10 | contains: [ 11 | { 12 | className: 'string', 13 | begin: "'", end: "'" 14 | }, 15 | { 16 | className: 'attribute', 17 | begin: '^Content', end: ':', excludeEnd: true, 18 | }, 19 | ] 20 | }; 21 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/diff.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | aliases: ['patch'], 4 | contains: [ 5 | { 6 | className: 'meta', 7 | relevance: 10, 8 | variants: [ 9 | {begin: /^@@ +\-\d+,\d+ +\+\d+,\d+ +@@$/}, 10 | {begin: /^\*\*\* +\d+,\d+ +\*\*\*\*$/}, 11 | {begin: /^\-\-\- +\d+,\d+ +\-\-\-\-$/} 12 | ] 13 | }, 14 | { 15 | className: 'comment', 16 | variants: [ 17 | {begin: /Index: /, end: /$/}, 18 | {begin: /={3,}/, end: /$/}, 19 | {begin: /^\-{3}/, end: /$/}, 20 | {begin: /^\*{3} /, end: /$/}, 21 | {begin: /^\+{3}/, end: /$/}, 22 | {begin: /\*{5}/, end: /\*{5}$/} 23 | ] 24 | }, 25 | { 26 | className: 'addition', 27 | begin: '^\\+', end: '$' 28 | }, 29 | { 30 | className: 'deletion', 31 | begin: '^\\-', end: '$' 32 | }, 33 | { 34 | className: 'addition', 35 | begin: '^\\!', end: '$' 36 | } 37 | ] 38 | }; 39 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/dockerfile.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | aliases: ['docker'], 4 | case_insensitive: true, 5 | keywords: 'from maintainer expose env arg user onbuild stopsignal', 6 | contains: [ 7 | hljs.HASH_COMMENT_MODE, 8 | hljs.APOS_STRING_MODE, 9 | hljs.QUOTE_STRING_MODE, 10 | hljs.NUMBER_MODE, 11 | { 12 | beginKeywords: 'run cmd entrypoint volume add copy workdir label healthcheck shell', 13 | starts: { 14 | end: /[^\\]\n/, 15 | subLanguage: 'bash' 16 | } 17 | } 18 | ], 19 | illegal: ''), 6 | { 7 | begin: '<%[%=-]?', end: '[%-]?%>', 8 | subLanguage: 'ruby', 9 | excludeBegin: true, 10 | excludeEnd: true 11 | } 12 | ] 13 | }; 14 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/erlang-repl.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | keywords: { 4 | built_in: 5 | 'spawn spawn_link self', 6 | keyword: 7 | 'after and andalso|10 band begin bnot bor bsl bsr bxor case catch cond div end fun if ' + 8 | 'let not of or orelse|10 query receive rem try when xor' 9 | }, 10 | contains: [ 11 | { 12 | className: 'meta', begin: '^[0-9]+> ', 13 | relevance: 10 14 | }, 15 | hljs.COMMENT('%', '$'), 16 | { 17 | className: 'number', 18 | begin: '\\b(\\d+#[a-fA-F0-9]+|\\d+(\\.\\d+)?([eE][-+]?\\d+)?)', 19 | relevance: 0 20 | }, 21 | hljs.APOS_STRING_MODE, 22 | hljs.QUOTE_STRING_MODE, 23 | { 24 | begin: '\\?(::)?([A-Z]\\w*(::)?)+' 25 | }, 26 | { 27 | begin: '->' 28 | }, 29 | { 30 | begin: 'ok' 31 | }, 32 | { 33 | begin: '!' 34 | }, 35 | { 36 | begin: '(\\b[a-z\'][a-zA-Z0-9_\']*:[a-z\'][a-zA-Z0-9_\']*)|(\\b[a-z\'][a-zA-Z0-9_\']*)', 37 | relevance: 0 38 | }, 39 | { 40 | begin: '[A-Z][a-zA-Z0-9_\']*', 41 | relevance: 0 42 | } 43 | ] 44 | }; 45 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/fix.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | { 5 | begin: /[^\u2401\u0001]+/, 6 | end: /[\u2401\u0001]/, 7 | excludeEnd: true, 8 | returnBegin: true, 9 | returnEnd: false, 10 | contains: [ 11 | { 12 | begin: /([^\u2401\u0001=]+)/, 13 | end: /=([^\u2401\u0001=]+)/, 14 | returnEnd: true, 15 | returnBegin: false, 16 | className: 'attr' 17 | }, 18 | { 19 | begin: /=/, 20 | end: /([\u2401\u0001])/, 21 | excludeEnd: true, 22 | excludeBegin: true, 23 | className: 'string' 24 | }] 25 | }], 26 | case_insensitive: true 27 | }; 28 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/flix.js: -------------------------------------------------------------------------------- 1 | module.exports = function (hljs) { 2 | 3 | var CHAR = { 4 | className: 'string', 5 | begin: /'(.|\\[xXuU][a-zA-Z0-9]+)'/ 6 | }; 7 | 8 | var STRING = { 9 | className: 'string', 10 | variants: [ 11 | { 12 | begin: '"', end: '"' 13 | } 14 | ] 15 | }; 16 | 17 | var NAME = { 18 | className: 'title', 19 | begin: /[^0-9\n\t "'(),.`{}\[\]:;][^\n\t "'(),.`{}\[\]:;]+|[^0-9\n\t "'(),.`{}\[\]:;=]/ 20 | }; 21 | 22 | var METHOD = { 23 | className: 'function', 24 | beginKeywords: 'def', 25 | end: /[:={\[(\n;]/, 26 | excludeEnd: true, 27 | contains: [NAME] 28 | }; 29 | 30 | return { 31 | keywords: { 32 | literal: 'true false', 33 | keyword: 'case class def else enum if impl import in lat rel index let match namespace switch type yield with' 34 | }, 35 | contains: [ 36 | hljs.C_LINE_COMMENT_MODE, 37 | hljs.C_BLOCK_COMMENT_MODE, 38 | CHAR, 39 | STRING, 40 | METHOD, 41 | hljs.C_NUMBER_MODE 42 | ] 43 | }; 44 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/gherkin.js: -------------------------------------------------------------------------------- 1 | module.exports = function (hljs) { 2 | return { 3 | aliases: ['feature'], 4 | keywords: 'Feature Background Ability Business\ Need Scenario Scenarios Scenario\ Outline Scenario\ Template Examples Given And Then But When', 5 | contains: [ 6 | { 7 | className: 'symbol', 8 | begin: '\\*', 9 | relevance: 0 10 | }, 11 | { 12 | className: 'meta', 13 | begin: '@[^@\\s]+' 14 | }, 15 | { 16 | begin: '\\|', end: '\\|\\w*$', 17 | contains: [ 18 | { 19 | className: 'string', 20 | begin: '[^|]+' 21 | } 22 | ] 23 | }, 24 | { 25 | className: 'variable', 26 | begin: '<', end: '>' 27 | }, 28 | hljs.HASH_COMMENT_MODE, 29 | { 30 | className: 'string', 31 | begin: '"""', end: '"""' 32 | }, 33 | hljs.QUOTE_STRING_MODE 34 | ] 35 | }; 36 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/golo.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | keywords: { 4 | keyword: 5 | 'println readln print import module function local return let var ' + 6 | 'while for foreach times in case when match with break continue ' + 7 | 'augment augmentation each find filter reduce ' + 8 | 'if then else otherwise try catch finally raise throw orIfNull ' + 9 | 'DynamicObject|10 DynamicVariable struct Observable map set vector list array', 10 | literal: 11 | 'true false null' 12 | }, 13 | contains: [ 14 | hljs.HASH_COMMENT_MODE, 15 | hljs.QUOTE_STRING_MODE, 16 | hljs.C_NUMBER_MODE, 17 | { 18 | className: 'meta', begin: '@[A-Za-z]+' 19 | } 20 | ] 21 | } 22 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/handlebars.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var BUILT_INS = {'builtin-name': 'each in with if else unless bindattr action collection debugger log outlet template unbound view yield'}; 3 | return { 4 | aliases: ['hbs', 'html.hbs', 'html.handlebars'], 5 | case_insensitive: true, 6 | subLanguage: 'xml', 7 | contains: [ 8 | hljs.COMMENT('{{!(--)?', '(--)?}}'), 9 | { 10 | className: 'template-tag', 11 | begin: /\{\{[#\/]/, end: /\}\}/, 12 | contains: [ 13 | { 14 | className: 'name', 15 | begin: /[a-zA-Z\.-]+/, 16 | keywords: BUILT_INS, 17 | starts: { 18 | endsWithParent: true, relevance: 0, 19 | contains: [ 20 | hljs.QUOTE_STRING_MODE 21 | ] 22 | } 23 | } 24 | ] 25 | }, 26 | { 27 | className: 'template-variable', 28 | begin: /\{\{/, end: /\}\}/, 29 | keywords: BUILT_INS 30 | } 31 | ] 32 | }; 33 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/http.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var VERSION = 'HTTP/[0-9\\.]+'; 3 | return { 4 | aliases: ['https'], 5 | illegal: '\\S', 6 | contains: [ 7 | { 8 | begin: '^' + VERSION, end: '$', 9 | contains: [{className: 'number', begin: '\\b\\d{3}\\b'}] 10 | }, 11 | { 12 | begin: '^[A-Z]+ (.*?) ' + VERSION + '$', returnBegin: true, end: '$', 13 | contains: [ 14 | { 15 | className: 'string', 16 | begin: ' ', end: ' ', 17 | excludeBegin: true, excludeEnd: true 18 | }, 19 | { 20 | begin: VERSION 21 | }, 22 | { 23 | className: 'keyword', 24 | begin: '[A-Z]+' 25 | } 26 | ] 27 | }, 28 | { 29 | className: 'attribute', 30 | begin: '^\\w', end: ': ', excludeEnd: true, 31 | illegal: '\\n|\\s|=', 32 | starts: {end: '$', relevance: 0} 33 | }, 34 | { 35 | begin: '\\n\\n', 36 | starts: {subLanguage: [], endsWithParent: true} 37 | } 38 | ] 39 | }; 40 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/json.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var LITERALS = {literal: 'true false null'}; 3 | var TYPES = [ 4 | hljs.QUOTE_STRING_MODE, 5 | hljs.C_NUMBER_MODE 6 | ]; 7 | var VALUE_CONTAINER = { 8 | end: ',', endsWithParent: true, excludeEnd: true, 9 | contains: TYPES, 10 | keywords: LITERALS 11 | }; 12 | var OBJECT = { 13 | begin: '{', end: '}', 14 | contains: [ 15 | { 16 | className: 'attr', 17 | begin: /"/, end: /"/, 18 | contains: [hljs.BACKSLASH_ESCAPE], 19 | illegal: '\\n', 20 | }, 21 | hljs.inherit(VALUE_CONTAINER, {begin: /:/}) 22 | ], 23 | illegal: '\\S' 24 | }; 25 | var ARRAY = { 26 | begin: '\\[', end: '\\]', 27 | contains: [hljs.inherit(VALUE_CONTAINER)], // inherit is a workaround for a bug that makes shared modes with endsWithParent compile only the ending of one of the parents 28 | illegal: '\\S' 29 | }; 30 | TYPES.splice(TYPES.length, 0, OBJECT, ARRAY); 31 | return { 32 | contains: TYPES, 33 | keywords: LITERALS, 34 | illegal: '\\S' 35 | }; 36 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/julia-repl.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | { 5 | className: 'meta', 6 | begin: /^julia>/, 7 | relevance: 10, 8 | starts: { 9 | // end the highlighting if we are on a new line and the line does not have at 10 | // least six spaces in the beginning 11 | end: /^(?![ ]{6})/, 12 | subLanguage: 'julia' 13 | }, 14 | // jldoctest Markdown blocks are used in the Julia manual and package docs indicate 15 | // code snippets that should be verified when the documentation is built. They can be 16 | // either REPL-like or script-like, but are usually REPL-like and therefore we apply 17 | // julia-repl highlighting to them. More information can be found in Documenter's 18 | // manual: https://juliadocs.github.io/Documenter.jl/latest/man/doctests.html 19 | aliases: ['jldoctest'] 20 | } 21 | ] 22 | } 23 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/ldif.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | { 5 | className: 'attribute', 6 | begin: '^dn', end: ': ', excludeEnd: true, 7 | starts: {end: '$', relevance: 0}, 8 | relevance: 10 9 | }, 10 | { 11 | className: 'attribute', 12 | begin: '^\\w', end: ': ', excludeEnd: true, 13 | starts: {end: '$', relevance: 0} 14 | }, 15 | { 16 | className: 'literal', 17 | begin: '^-', end: '$' 18 | }, 19 | hljs.HASH_COMMENT_MODE 20 | ] 21 | }; 22 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/leaf.js: -------------------------------------------------------------------------------- 1 | module.exports = function (hljs) { 2 | return { 3 | contains: [ 4 | { 5 | className: 'function', 6 | begin: '#+' + '[A-Za-z_0-9]*' + '\\(', 7 | end:' {', 8 | returnBegin: true, 9 | excludeEnd: true, 10 | contains : [ 11 | { 12 | className: 'keyword', 13 | begin: '#+' 14 | }, 15 | { 16 | className: 'title', 17 | begin: '[A-Za-z_][A-Za-z_0-9]*' 18 | }, 19 | { 20 | className: 'params', 21 | begin: '\\(', end: '\\)', 22 | endsParent: true, 23 | contains: [ 24 | { 25 | className: 'string', 26 | begin: '"', 27 | end: '"' 28 | }, 29 | { 30 | className: 'variable', 31 | begin: '[A-Za-z_][A-Za-z_0-9]*' 32 | } 33 | ] 34 | } 35 | ] 36 | } 37 | ] 38 | }; 39 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/mizar.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | keywords: 4 | 'environ vocabularies notations constructors definitions ' + 5 | 'registrations theorems schemes requirements begin end definition ' + 6 | 'registration cluster existence pred func defpred deffunc theorem ' + 7 | 'proof let take assume then thus hence ex for st holds consider ' + 8 | 'reconsider such that and in provided of as from be being by means ' + 9 | 'equals implies iff redefine define now not or attr is mode ' + 10 | 'suppose per cases set thesis contradiction scheme reserve struct ' + 11 | 'correctness compatibility coherence symmetry assymetry ' + 12 | 'reflexivity irreflexivity connectedness uniqueness commutativity ' + 13 | 'idempotence involutiveness projectivity', 14 | contains: [ 15 | hljs.COMMENT('::', '$') 16 | ] 17 | }; 18 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/mojolicious.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | subLanguage: 'xml', 4 | contains: [ 5 | { 6 | className: 'meta', 7 | begin: '^__(END|DATA)__$' 8 | }, 9 | // mojolicious line 10 | { 11 | begin: "^\\s*%{1,2}={0,2}", end: '$', 12 | subLanguage: 'perl' 13 | }, 14 | // mojolicious block 15 | { 16 | begin: "<%{1,2}={0,2}", 17 | end: "={0,1}%>", 18 | subLanguage: 'perl', 19 | excludeBegin: true, 20 | excludeEnd: true 21 | } 22 | ] 23 | }; 24 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/nix.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var NIX_KEYWORDS = { 3 | keyword: 4 | 'rec with let in inherit assert if else then', 5 | literal: 6 | 'true false or and null', 7 | built_in: 8 | 'import abort baseNameOf dirOf isNull builtins map removeAttrs throw ' + 9 | 'toString derivation' 10 | }; 11 | var ANTIQUOTE = { 12 | className: 'subst', 13 | begin: /\$\{/, 14 | end: /}/, 15 | keywords: NIX_KEYWORDS 16 | }; 17 | var ATTRS = { 18 | begin: /[a-zA-Z0-9-_]+(\s*=)/, returnBegin: true, 19 | relevance: 0, 20 | contains: [ 21 | { 22 | className: 'attr', 23 | begin: /\S+/ 24 | } 25 | ] 26 | }; 27 | var STRING = { 28 | className: 'string', 29 | contains: [ANTIQUOTE], 30 | variants: [ 31 | {begin: "''", end: "''"}, 32 | {begin: '"', end: '"'} 33 | ] 34 | }; 35 | var EXPRESSIONS = [ 36 | hljs.NUMBER_MODE, 37 | hljs.HASH_COMMENT_MODE, 38 | hljs.C_BLOCK_COMMENT_MODE, 39 | STRING, 40 | ATTRS 41 | ]; 42 | ANTIQUOTE.contains = EXPRESSIONS; 43 | return { 44 | aliases: ["nixos"], 45 | keywords: NIX_KEYWORDS, 46 | contains: EXPRESSIONS 47 | }; 48 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/parser3.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var CURLY_SUBCOMMENT = hljs.COMMENT( 3 | '{', 4 | '}', 5 | { 6 | contains: ['self'] 7 | } 8 | ); 9 | return { 10 | subLanguage: 'xml', relevance: 0, 11 | contains: [ 12 | hljs.COMMENT('^#', '$'), 13 | hljs.COMMENT( 14 | '\\^rem{', 15 | '}', 16 | { 17 | relevance: 10, 18 | contains: [ 19 | CURLY_SUBCOMMENT 20 | ] 21 | } 22 | ), 23 | { 24 | className: 'meta', 25 | begin: '^@(?:BASE|USE|CLASS|OPTIONS)$', 26 | relevance: 10 27 | }, 28 | { 29 | className: 'title', 30 | begin: '@[\\w\\-]+\\[[\\w^;\\-]*\\](?:\\[[\\w^;\\-]*\\])?(?:.*)$' 31 | }, 32 | { 33 | className: 'variable', 34 | begin: '\\$\\{?[\\w\\-\\.\\:]+\\}?' 35 | }, 36 | { 37 | className: 'keyword', 38 | begin: '\\^[\\w\\-\\.\\:]+' 39 | }, 40 | { 41 | className: 'number', 42 | begin: '\\^#[0-9a-fA-F]+' 43 | }, 44 | hljs.C_NUMBER_MODE 45 | ] 46 | }; 47 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/profile.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | contains: [ 4 | hljs.C_NUMBER_MODE, 5 | { 6 | begin: '[a-zA-Z_][\\da-zA-Z_]+\\.[\\da-zA-Z_]{1,3}', end: ':', 7 | excludeEnd: true 8 | }, 9 | { 10 | begin: '(ncalls|tottime|cumtime)', end: '$', 11 | keywords: 'ncalls tottime|10 cumtime|10 filename', 12 | relevance: 10 13 | }, 14 | { 15 | begin: 'function calls', end: '$', 16 | contains: [hljs.C_NUMBER_MODE], 17 | relevance: 10 18 | }, 19 | hljs.APOS_STRING_MODE, 20 | hljs.QUOTE_STRING_MODE, 21 | { 22 | className: 'string', 23 | begin: '\\(', end: '\\)$', 24 | excludeBegin: true, excludeEnd: true, 25 | relevance: 0 26 | } 27 | ] 28 | }; 29 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/protobuf.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | keywords: { 4 | keyword: 'package import option optional required repeated group', 5 | built_in: 'double float int32 int64 uint32 uint64 sint32 sint64 ' + 6 | 'fixed32 fixed64 sfixed32 sfixed64 bool string bytes', 7 | literal: 'true false' 8 | }, 9 | contains: [ 10 | hljs.QUOTE_STRING_MODE, 11 | hljs.NUMBER_MODE, 12 | hljs.C_LINE_COMMENT_MODE, 13 | { 14 | className: 'class', 15 | beginKeywords: 'message enum service', end: /\{/, 16 | illegal: /\n/, 17 | contains: [ 18 | hljs.inherit(hljs.TITLE_MODE, { 19 | starts: {endsWithParent: true, excludeEnd: true} // hack: eating everything after the first title 20 | }) 21 | ] 22 | }, 23 | { 24 | className: 'function', 25 | beginKeywords: 'rpc', 26 | end: /;/, excludeEnd: true, 27 | keywords: 'rpc returns' 28 | }, 29 | { 30 | begin: /^\s*[A-Z_]+/, 31 | end: /\s*=/, excludeEnd: true 32 | } 33 | ] 34 | }; 35 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/shell.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | aliases: ['console'], 4 | contains: [ 5 | { 6 | className: 'meta', 7 | begin: '^\\s{0,3}[\\w\\d\\[\\]()@-]*[>%$#]', 8 | starts: { 9 | end: '$', subLanguage: 'bash' 10 | } 11 | }, 12 | ] 13 | } 14 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/subunit.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var DETAILS = { 3 | className: 'string', 4 | begin: '\\[\n(multipart)?', end: '\\]\n' 5 | }; 6 | var TIME = { 7 | className: 'string', 8 | begin: '\\d{4}-\\d{2}-\\d{2}(\\s+)\\d{2}:\\d{2}:\\d{2}\.\\d+Z' 9 | }; 10 | var PROGRESSVALUE = { 11 | className: 'string', 12 | begin: '(\\+|-)\\d+' 13 | }; 14 | var KEYWORDS = { 15 | className: 'keyword', 16 | relevance: 10, 17 | variants: [ 18 | { begin: '^(test|testing|success|successful|failure|error|skip|xfail|uxsuccess)(:?)\\s+(test)?' }, 19 | { begin: '^progress(:?)(\\s+)?(pop|push)?' }, 20 | { begin: '^tags:' }, 21 | { begin: '^time:' } 22 | ], 23 | }; 24 | return { 25 | case_insensitive: true, 26 | contains: [ 27 | DETAILS, 28 | TIME, 29 | PROGRESSVALUE, 30 | KEYWORDS 31 | ] 32 | }; 33 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/taggerscript.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | 3 | var COMMENT = { 4 | className: 'comment', 5 | begin: /\$noop\(/, 6 | end: /\)/, 7 | contains: [{ 8 | begin: /\(/, 9 | end: /\)/, 10 | contains: ['self', { 11 | begin: /\\./ 12 | }] 13 | }], 14 | relevance: 10 15 | }; 16 | 17 | var FUNCTION = { 18 | className: 'keyword', 19 | begin: /\$(?!noop)[a-zA-Z][_a-zA-Z0-9]*/, 20 | end: /\(/, 21 | excludeEnd: true 22 | }; 23 | 24 | var VARIABLE = { 25 | className: 'variable', 26 | begin: /%[_a-zA-Z0-9:]*/, 27 | end: '%' 28 | }; 29 | 30 | var ESCAPE_SEQUENCE = { 31 | className: 'symbol', 32 | begin: /\\./ 33 | }; 34 | 35 | return { 36 | contains: [ 37 | COMMENT, 38 | FUNCTION, 39 | VARIABLE, 40 | ESCAPE_SEQUENCE 41 | ] 42 | }; 43 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/tap.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | case_insensitive: true, 4 | contains: [ 5 | hljs.HASH_COMMENT_MODE, 6 | // version of format and total amount of testcases 7 | { 8 | className: 'meta', 9 | variants: [ 10 | { begin: '^TAP version (\\d+)$' }, 11 | { begin: '^1\\.\\.(\\d+)$' } 12 | ], 13 | }, 14 | // YAML block 15 | { 16 | begin: '(\s+)?---$', end: '\\.\\.\\.$', 17 | subLanguage: 'yaml', 18 | relevance: 0 19 | }, 20 | // testcase number 21 | { 22 | className: 'number', 23 | begin: ' (\\d+) ' 24 | }, 25 | // testcase status and description 26 | { 27 | className: 'symbol', 28 | variants: [ 29 | { begin: '^ok' }, 30 | { begin: '^not ok' } 31 | ], 32 | }, 33 | ] 34 | }; 35 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/thrift.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | var BUILT_IN_TYPES = 'bool byte i16 i32 i64 double string binary'; 3 | return { 4 | keywords: { 5 | keyword: 6 | 'namespace const typedef struct enum service exception void oneway set list map required optional', 7 | built_in: 8 | BUILT_IN_TYPES, 9 | literal: 10 | 'true false' 11 | }, 12 | contains: [ 13 | hljs.QUOTE_STRING_MODE, 14 | hljs.NUMBER_MODE, 15 | hljs.C_LINE_COMMENT_MODE, 16 | hljs.C_BLOCK_COMMENT_MODE, 17 | { 18 | className: 'class', 19 | beginKeywords: 'struct enum service exception', end: /\{/, 20 | illegal: /\n/, 21 | contains: [ 22 | hljs.inherit(hljs.TITLE_MODE, { 23 | starts: {endsWithParent: true, excludeEnd: true} // hack: eating everything after the first title 24 | }) 25 | ] 26 | }, 27 | { 28 | begin: '\\b(set|list|map)\\s*<', end: '>', 29 | keywords: BUILT_IN_TYPES, 30 | contains: ['self'] 31 | } 32 | ] 33 | }; 34 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/lib/languages/vbscript-html.js: -------------------------------------------------------------------------------- 1 | module.exports = function(hljs) { 2 | return { 3 | subLanguage: 'xml', 4 | contains: [ 5 | { 6 | begin: '<%', end: '%>', 7 | subLanguage: 'vbscript' 8 | } 9 | ] 10 | }; 11 | }; -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/androidstudio.css: -------------------------------------------------------------------------------- 1 | /* 2 | Date: 24 Fev 2015 3 | Author: Pedro Oliveira 4 | */ 5 | 6 | .hljs { 7 | color: #a9b7c6; 8 | background: #282b2e; 9 | display: block; 10 | overflow-x: auto; 11 | padding: 0.5em; 12 | } 13 | 14 | .hljs-number, 15 | .hljs-literal, 16 | .hljs-symbol, 17 | .hljs-bullet { 18 | color: #6897BB; 19 | } 20 | 21 | .hljs-keyword, 22 | .hljs-selector-tag, 23 | .hljs-deletion { 24 | color: #cc7832; 25 | } 26 | 27 | .hljs-variable, 28 | .hljs-template-variable, 29 | .hljs-link { 30 | color: #629755; 31 | } 32 | 33 | .hljs-comment, 34 | .hljs-quote { 35 | color: #808080; 36 | } 37 | 38 | .hljs-meta { 39 | color: #bbb529; 40 | } 41 | 42 | .hljs-string, 43 | .hljs-attribute, 44 | .hljs-addition { 45 | color: #6A8759; 46 | } 47 | 48 | .hljs-section, 49 | .hljs-title, 50 | .hljs-type { 51 | color: #ffc66d; 52 | } 53 | 54 | .hljs-name, 55 | .hljs-selector-id, 56 | .hljs-selector-class { 57 | color: #e8bf6a; 58 | } 59 | 60 | .hljs-emphasis { 61 | font-style: italic; 62 | } 63 | 64 | .hljs-strong { 65 | font-weight: bold; 66 | } 67 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/arta.css: -------------------------------------------------------------------------------- 1 | /* 2 | Date: 17.V.2011 3 | Author: pumbur 4 | */ 5 | 6 | .hljs { 7 | display: block; 8 | overflow-x: auto; 9 | padding: 0.5em; 10 | background: #222; 11 | } 12 | 13 | .hljs, 14 | .hljs-subst { 15 | color: #aaa; 16 | } 17 | 18 | .hljs-section { 19 | color: #fff; 20 | } 21 | 22 | .hljs-comment, 23 | .hljs-quote, 24 | .hljs-meta { 25 | color: #444; 26 | } 27 | 28 | .hljs-string, 29 | .hljs-symbol, 30 | .hljs-bullet, 31 | .hljs-regexp { 32 | color: #ffcc33; 33 | } 34 | 35 | .hljs-number, 36 | .hljs-addition { 37 | color: #00cc66; 38 | } 39 | 40 | .hljs-built_in, 41 | .hljs-builtin-name, 42 | .hljs-literal, 43 | .hljs-type, 44 | .hljs-template-variable, 45 | .hljs-attribute, 46 | .hljs-link { 47 | color: #32aaee; 48 | } 49 | 50 | .hljs-keyword, 51 | .hljs-selector-tag, 52 | .hljs-name, 53 | .hljs-selector-id, 54 | .hljs-selector-class { 55 | color: #6644aa; 56 | } 57 | 58 | .hljs-title, 59 | .hljs-variable, 60 | .hljs-deletion, 61 | .hljs-template-tag { 62 | color: #bb1166; 63 | } 64 | 65 | .hljs-section, 66 | .hljs-doctag, 67 | .hljs-strong { 68 | font-weight: bold; 69 | } 70 | 71 | .hljs-emphasis { 72 | font-style: italic; 73 | } 74 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: white; 12 | color: black; 13 | } 14 | 15 | .hljs-string, 16 | .hljs-variable, 17 | .hljs-template-variable, 18 | .hljs-symbol, 19 | .hljs-bullet, 20 | .hljs-section, 21 | .hljs-addition, 22 | .hljs-attribute, 23 | .hljs-link { 24 | color: #888; 25 | } 26 | 27 | .hljs-comment, 28 | .hljs-quote, 29 | .hljs-meta, 30 | .hljs-deletion { 31 | color: #ccc; 32 | } 33 | 34 | .hljs-keyword, 35 | .hljs-selector-tag, 36 | .hljs-section, 37 | .hljs-name, 38 | .hljs-type, 39 | .hljs-strong { 40 | font-weight: bold; 41 | } 42 | 43 | .hljs-emphasis { 44 | font-style: italic; 45 | } 46 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/brown-paper.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Brown Paper style from goldblog.com.ua (c) Zaripov Yura 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background:#b7a68e url(./brown-papersq.png); 12 | } 13 | 14 | .hljs-keyword, 15 | .hljs-selector-tag, 16 | .hljs-literal { 17 | color:#005599; 18 | font-weight:bold; 19 | } 20 | 21 | .hljs, 22 | .hljs-subst { 23 | color: #363c69; 24 | } 25 | 26 | .hljs-string, 27 | .hljs-title, 28 | .hljs-section, 29 | .hljs-type, 30 | .hljs-attribute, 31 | .hljs-symbol, 32 | .hljs-bullet, 33 | .hljs-built_in, 34 | .hljs-addition, 35 | .hljs-variable, 36 | .hljs-template-tag, 37 | .hljs-template-variable, 38 | .hljs-link, 39 | .hljs-name { 40 | color: #2c009f; 41 | } 42 | 43 | .hljs-comment, 44 | .hljs-quote, 45 | .hljs-meta, 46 | .hljs-deletion { 47 | color: #802022; 48 | } 49 | 50 | .hljs-keyword, 51 | .hljs-selector-tag, 52 | .hljs-literal, 53 | .hljs-doctag, 54 | .hljs-title, 55 | .hljs-section, 56 | .hljs-type, 57 | .hljs-name, 58 | .hljs-strong { 59 | font-weight: bold; 60 | } 61 | 62 | .hljs-emphasis { 63 | font-style: italic; 64 | } 65 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/highlight.js/styles/brown-papersq.png -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/codepen-embed.css: -------------------------------------------------------------------------------- 1 | /* 2 | codepen.io Embed Theme 3 | Author: Justin Perry 4 | Original theme - https://github.com/chriskempson/tomorrow-theme 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: #222; 12 | color: #fff; 13 | } 14 | 15 | .hljs-comment, 16 | .hljs-quote { 17 | color: #777; 18 | } 19 | 20 | .hljs-variable, 21 | .hljs-template-variable, 22 | .hljs-tag, 23 | .hljs-regexp, 24 | .hljs-meta, 25 | .hljs-number, 26 | .hljs-built_in, 27 | .hljs-builtin-name, 28 | .hljs-literal, 29 | .hljs-params, 30 | .hljs-symbol, 31 | .hljs-bullet, 32 | .hljs-link, 33 | .hljs-deletion { 34 | color: #ab875d; 35 | } 36 | 37 | .hljs-section, 38 | .hljs-title, 39 | .hljs-name, 40 | .hljs-selector-id, 41 | .hljs-selector-class, 42 | .hljs-type, 43 | .hljs-attribute { 44 | color: #9b869b; 45 | } 46 | 47 | .hljs-string, 48 | .hljs-keyword, 49 | .hljs-selector-tag, 50 | .hljs-addition { 51 | color: #8f9c6c; 52 | } 53 | 54 | .hljs-emphasis { 55 | font-style: italic; 56 | } 57 | 58 | .hljs-strong { 59 | font-weight: bold; 60 | } 61 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/color-brewer.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Colorbrewer theme 4 | Original: https://github.com/mbostock/colorbrewer-theme (c) Mike Bostock 5 | Ported by Fabrício Tavares de Oliveira 6 | 7 | */ 8 | 9 | .hljs { 10 | display: block; 11 | overflow-x: auto; 12 | padding: 0.5em; 13 | background: #fff; 14 | } 15 | 16 | .hljs, 17 | .hljs-subst { 18 | color: #000; 19 | } 20 | 21 | .hljs-string, 22 | .hljs-meta, 23 | .hljs-symbol, 24 | .hljs-template-tag, 25 | .hljs-template-variable, 26 | .hljs-addition { 27 | color: #756bb1; 28 | } 29 | 30 | .hljs-comment, 31 | .hljs-quote { 32 | color: #636363; 33 | } 34 | 35 | .hljs-number, 36 | .hljs-regexp, 37 | .hljs-literal, 38 | .hljs-bullet, 39 | .hljs-link { 40 | color: #31a354; 41 | } 42 | 43 | .hljs-deletion, 44 | .hljs-variable { 45 | color: #88f; 46 | } 47 | 48 | 49 | 50 | .hljs-keyword, 51 | .hljs-selector-tag, 52 | .hljs-title, 53 | .hljs-section, 54 | .hljs-built_in, 55 | .hljs-doctag, 56 | .hljs-type, 57 | .hljs-tag, 58 | .hljs-name, 59 | .hljs-selector-id, 60 | .hljs-selector-class, 61 | .hljs-strong { 62 | color: #3182bd; 63 | } 64 | 65 | .hljs-emphasis { 66 | font-style: italic; 67 | } 68 | 69 | .hljs-attribute { 70 | color: #e6550d; 71 | } 72 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/dark.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Dark style from softwaremaniacs.org (c) Ivan Sagalaev 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: #444; 12 | } 13 | 14 | .hljs-keyword, 15 | .hljs-selector-tag, 16 | .hljs-literal, 17 | .hljs-section, 18 | .hljs-link { 19 | color: white; 20 | } 21 | 22 | .hljs, 23 | .hljs-subst { 24 | color: #ddd; 25 | } 26 | 27 | .hljs-string, 28 | .hljs-title, 29 | .hljs-name, 30 | .hljs-type, 31 | .hljs-attribute, 32 | .hljs-symbol, 33 | .hljs-bullet, 34 | .hljs-built_in, 35 | .hljs-addition, 36 | .hljs-variable, 37 | .hljs-template-tag, 38 | .hljs-template-variable { 39 | color: #d88; 40 | } 41 | 42 | .hljs-comment, 43 | .hljs-quote, 44 | .hljs-deletion, 45 | .hljs-meta { 46 | color: #777; 47 | } 48 | 49 | .hljs-keyword, 50 | .hljs-selector-tag, 51 | .hljs-literal, 52 | .hljs-title, 53 | .hljs-section, 54 | .hljs-doctag, 55 | .hljs-type, 56 | .hljs-name, 57 | .hljs-strong { 58 | font-weight: bold; 59 | } 60 | 61 | .hljs-emphasis { 62 | font-style: italic; 63 | } 64 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/darkula.css: -------------------------------------------------------------------------------- 1 | /* 2 | Deprecated due to a typo in the name and left here for compatibility purpose only. 3 | Please use darcula.css instead. 4 | */ 5 | 6 | @import url('darcula.css'); 7 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/far.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | FAR Style (c) MajestiC 4 | 5 | */ 6 | 7 | .hljs { 8 | display: block; 9 | overflow-x: auto; 10 | padding: 0.5em; 11 | background: #000080; 12 | } 13 | 14 | .hljs, 15 | .hljs-subst { 16 | color: #0ff; 17 | } 18 | 19 | .hljs-string, 20 | .hljs-attribute, 21 | .hljs-symbol, 22 | .hljs-bullet, 23 | .hljs-built_in, 24 | .hljs-builtin-name, 25 | .hljs-template-tag, 26 | .hljs-template-variable, 27 | .hljs-addition { 28 | color: #ff0; 29 | } 30 | 31 | .hljs-keyword, 32 | .hljs-selector-tag, 33 | .hljs-section, 34 | .hljs-type, 35 | .hljs-name, 36 | .hljs-selector-id, 37 | .hljs-selector-class, 38 | .hljs-variable { 39 | color: #fff; 40 | } 41 | 42 | .hljs-comment, 43 | .hljs-quote, 44 | .hljs-doctag, 45 | .hljs-deletion { 46 | color: #888; 47 | } 48 | 49 | .hljs-number, 50 | .hljs-regexp, 51 | .hljs-literal, 52 | .hljs-link { 53 | color: #0f0; 54 | } 55 | 56 | .hljs-meta { 57 | color: #008080; 58 | } 59 | 60 | .hljs-keyword, 61 | .hljs-selector-tag, 62 | .hljs-title, 63 | .hljs-section, 64 | .hljs-name, 65 | .hljs-strong { 66 | font-weight: bold; 67 | } 68 | 69 | .hljs-emphasis { 70 | font-style: italic; 71 | } 72 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/ir-black.css: -------------------------------------------------------------------------------- 1 | /* 2 | IR_Black style (c) Vasily Mikhailitchenko 3 | */ 4 | 5 | .hljs { 6 | display: block; 7 | overflow-x: auto; 8 | padding: 0.5em; 9 | background: #000; 10 | color: #f8f8f8; 11 | } 12 | 13 | .hljs-comment, 14 | .hljs-quote, 15 | .hljs-meta { 16 | color: #7c7c7c; 17 | } 18 | 19 | .hljs-keyword, 20 | .hljs-selector-tag, 21 | .hljs-tag, 22 | .hljs-name { 23 | color: #96cbfe; 24 | } 25 | 26 | .hljs-attribute, 27 | .hljs-selector-id { 28 | color: #ffffb6; 29 | } 30 | 31 | .hljs-string, 32 | .hljs-selector-attr, 33 | .hljs-selector-pseudo, 34 | .hljs-addition { 35 | color: #a8ff60; 36 | } 37 | 38 | .hljs-subst { 39 | color: #daefa3; 40 | } 41 | 42 | .hljs-regexp, 43 | .hljs-link { 44 | color: #e9c062; 45 | } 46 | 47 | .hljs-title, 48 | .hljs-section, 49 | .hljs-type, 50 | .hljs-doctag { 51 | color: #ffffb6; 52 | } 53 | 54 | .hljs-symbol, 55 | .hljs-bullet, 56 | .hljs-variable, 57 | .hljs-template-variable, 58 | .hljs-literal { 59 | color: #c6c5fe; 60 | } 61 | 62 | .hljs-number, 63 | .hljs-deletion { 64 | color:#ff73fd; 65 | } 66 | 67 | .hljs-emphasis { 68 | font-style: italic; 69 | } 70 | 71 | .hljs-strong { 72 | font-weight: bold; 73 | } 74 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/magula.css: -------------------------------------------------------------------------------- 1 | /* 2 | Description: Magula style for highligh.js 3 | Author: Ruslan Keba 4 | Website: http://rukeba.com/ 5 | Version: 1.0 6 | Date: 2009-01-03 7 | Music: Aphex Twin / Xtal 8 | */ 9 | 10 | .hljs { 11 | display: block; 12 | overflow-x: auto; 13 | padding: 0.5em; 14 | background-color: #f4f4f4; 15 | } 16 | 17 | .hljs, 18 | .hljs-subst { 19 | color: black; 20 | } 21 | 22 | .hljs-string, 23 | .hljs-title, 24 | .hljs-symbol, 25 | .hljs-bullet, 26 | .hljs-attribute, 27 | .hljs-addition, 28 | .hljs-variable, 29 | .hljs-template-tag, 30 | .hljs-template-variable { 31 | color: #050; 32 | } 33 | 34 | .hljs-comment, 35 | .hljs-quote { 36 | color: #777; 37 | } 38 | 39 | .hljs-number, 40 | .hljs-regexp, 41 | .hljs-literal, 42 | .hljs-type, 43 | .hljs-link { 44 | color: #800; 45 | } 46 | 47 | .hljs-deletion, 48 | .hljs-meta { 49 | color: #00e; 50 | } 51 | 52 | .hljs-keyword, 53 | .hljs-selector-tag, 54 | .hljs-doctag, 55 | .hljs-title, 56 | .hljs-section, 57 | .hljs-built_in, 58 | .hljs-tag, 59 | .hljs-name { 60 | font-weight: bold; 61 | color: navy; 62 | } 63 | 64 | .hljs-emphasis { 65 | font-style: italic; 66 | } 67 | 68 | .hljs-strong { 69 | font-weight: bold; 70 | } 71 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/mono-blue.css: -------------------------------------------------------------------------------- 1 | /* 2 | Five-color theme from a single blue hue. 3 | */ 4 | .hljs { 5 | display: block; 6 | overflow-x: auto; 7 | padding: 0.5em; 8 | background: #eaeef3; 9 | } 10 | 11 | .hljs { 12 | color: #00193a; 13 | } 14 | 15 | .hljs-keyword, 16 | .hljs-selector-tag, 17 | .hljs-title, 18 | .hljs-section, 19 | .hljs-doctag, 20 | .hljs-name, 21 | .hljs-strong { 22 | font-weight: bold; 23 | } 24 | 25 | .hljs-comment { 26 | color: #738191; 27 | } 28 | 29 | .hljs-string, 30 | .hljs-title, 31 | .hljs-section, 32 | .hljs-built_in, 33 | .hljs-literal, 34 | .hljs-type, 35 | .hljs-addition, 36 | .hljs-tag, 37 | .hljs-quote, 38 | .hljs-name, 39 | .hljs-selector-id, 40 | .hljs-selector-class { 41 | color: #0048ab; 42 | } 43 | 44 | .hljs-meta, 45 | .hljs-subst, 46 | .hljs-symbol, 47 | .hljs-regexp, 48 | .hljs-attribute, 49 | .hljs-deletion, 50 | .hljs-variable, 51 | .hljs-template-variable, 52 | .hljs-link, 53 | .hljs-bullet { 54 | color: #4c81c9; 55 | } 56 | 57 | .hljs-emphasis { 58 | font-style: italic; 59 | } 60 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/highlight.js/styles/pojoaque.jpg -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kubernetes-retired/cluster-registry/89fe9b0271b427274b35f1712c44cf40605252ef/docs/reference/build/node_modules/highlight.js/styles/school-book.png -------------------------------------------------------------------------------- /docs/reference/build/node_modules/highlight.js/styles/vs.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Visual Studio-like style based on original C# coloring by Jason Diamond 4 | 5 | */ 6 | .hljs { 7 | display: block; 8 | overflow-x: auto; 9 | padding: 0.5em; 10 | background: white; 11 | color: black; 12 | } 13 | 14 | .hljs-comment, 15 | .hljs-quote, 16 | .hljs-variable { 17 | color: #008000; 18 | } 19 | 20 | .hljs-keyword, 21 | .hljs-selector-tag, 22 | .hljs-built_in, 23 | .hljs-name, 24 | .hljs-tag { 25 | color: #00f; 26 | } 27 | 28 | .hljs-string, 29 | .hljs-title, 30 | .hljs-section, 31 | .hljs-attribute, 32 | .hljs-literal, 33 | .hljs-template-tag, 34 | .hljs-template-variable, 35 | .hljs-type, 36 | .hljs-addition { 37 | color: #a31515; 38 | } 39 | 40 | .hljs-deletion, 41 | .hljs-selector-attr, 42 | .hljs-selector-pseudo, 43 | .hljs-meta { 44 | color: #2b91af; 45 | } 46 | 47 | .hljs-doctag { 48 | color: #808080; 49 | } 50 | 51 | .hljs-attr { 52 | color: #f00; 53 | } 54 | 55 | .hljs-symbol, 56 | .hljs-bullet, 57 | .hljs-link { 58 | color: #00b0e8; 59 | } 60 | 61 | 62 | .hljs-emphasis { 63 | font-style: italic; 64 | } 65 | 66 | .hljs-strong { 67 | font-weight: bold; 68 | } 69 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "shadow": "inner", 3 | 4 | "camelcase": true, 5 | "eqeqeq": true, 6 | "eqnull": true, 7 | "freeze": true, 8 | "funcscope": true, 9 | "newcap": true, 10 | "noarg": true, 11 | "noempty": true, 12 | "nonbsp": true, 13 | "unused": true, 14 | "undef": true, 15 | "scripturl": true, 16 | "strict": true, 17 | "quotmark": "single", 18 | 19 | "globals": {"define": true}, 20 | "browser": true, 21 | "node": true, 22 | "jquery": true 23 | } -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | node_modules 15 | npm-debug.log 16 | .DS_Store 17 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/LICENSE: -------------------------------------------------------------------------------- 1 | (The MIT License) 2 | 3 | Copyright (c) 2007-2015 Ariel Flesler 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining 6 | a copy of this software and associated documentation files (the 7 | 'Software'), to deal in the Software without restriction, including 8 | without limitation the rights to use, copy, modify, merge, publish, 9 | distribute, sublicense, and/or sell copies of the Software, and to 10 | permit persons to whom the Software is furnished to do so, subject to 11 | the following conditions: 12 | 13 | The above copyright notice and this permission notice shall be 14 | included in all copies or substantial portions of the Software. 15 | 16 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY 20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, 21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "jquery.scrollTo", 3 | "description": "Lightweight, cross-browser and highly customizable animated scrolling with jQuery", 4 | "homepage": "https://github.com/flesler/jquery.scrollTo", 5 | "main": [ 6 | "./jquery.scrollTo.js" 7 | ], 8 | "ignore": [ 9 | "**/.*", 10 | "demo", 11 | "tests", 12 | "CHANGELOG", 13 | "README.md", 14 | "composer.json", 15 | "package.json" 16 | ], 17 | "dependencies": { 18 | "jquery": ">=1.8" 19 | }, 20 | "keywords": [ 21 | "browser", "animated", "animation", "jquery", 22 | "scrolling", "scroll", "links", "anchors" 23 | ], 24 | "author": { 25 | "name": "Ariel Flesler", 26 | "web": "http://flesler.blogspot.com/" 27 | } 28 | } 29 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/composer.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "flesler/jquery.scrollto", 3 | "description": "Lightweight, cross-browser and highly customizable animated scrolling with jQuery", 4 | "keywords": [ 5 | "browser", "animated", "animation", "jquery", 6 | "scrolling", "scroll", "links", "anchors" 7 | ], 8 | "homepage": "https://github.com/flesler/jquery.scrollTo", 9 | "support": { 10 | "issues": "https://github.com/flesler/jquery.scrollTo/issues", 11 | "source": "https://github.com/flesler/jquery.scrollTo" 12 | }, 13 | "authors": [ 14 | { 15 | "name": "Ariel Flesler", 16 | "web": "http://flesler.blogspot.com/" 17 | } 18 | ], 19 | "require": { 20 | "components/jquery": ">=1.8" 21 | }, 22 | "extra": { 23 | "component": { 24 | "scripts": [ 25 | "jquery.scrollTo.js" 26 | ], 27 | "files": [ 28 | "jquery.scrollTo.min.js" 29 | ] 30 | } 31 | } 32 | } -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/demo/css/style.old.css: -------------------------------------------------------------------------------- 1 | body{ 2 | background-color: #DDD; 3 | } 4 | .container li,div.pane{ 5 | height:200px; 6 | font-weight:bolder; 7 | position:relative; 8 | } 9 | ul{ 10 | list-style:none; 11 | padding:0; 12 | margin:0; 13 | } 14 | .container a{ 15 | color:black; 16 | position:absolute; 17 | bottom:10px; 18 | } 19 | p{ 20 | margin:0; 21 | } 22 | .container{ 23 | border:1px black solid; 24 | margin:30px; 25 | overflow:auto; 26 | position:relative; 27 | width:80%; 28 | height:300px; 29 | } 30 | .container ul{ 31 | padding:0; 32 | } 33 | #x{ 34 | height:217px; 35 | } 36 | #x li,#xy li{ 37 | width:300px; 38 | float:left; 39 | } 40 | 41 | h1{ 42 | color:#5B739C; 43 | } 44 | h1 strong{ 45 | font-size:13px; 46 | color:#777; 47 | } 48 | 49 | #links{ 50 | border:1px solid black; 51 | width:210px; 52 | padding:10px; 53 | float:right; 54 | margin-top:-55px; 55 | background-color:white; 56 | } 57 | #links h3{ 58 | color:#933; 59 | margin:5px; 60 | } 61 | #links ul{ 62 | padding: 8px 0 3px 20px; 63 | } 64 | #links li{ 65 | list-style-type:circle; 66 | } 67 | #links a{ 68 | color:#69C; 69 | } -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/ElemMaxY-compat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.scrollTo - Test Element MaxY - Compat Mode 6 | 7 | 8 | 9 | 10 | 11 |

jQuery.scrollTo - Test Element MaxY - Compat Mode

12 | 13 |
14 |
15 |   16 |
17 |
18 | 21 | 22 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/ElemMaxY-quirks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jQuery.scrollTo - Test Element MaxY - Quirks Mode 5 | 6 | 7 | 8 | 9 | 10 |

jQuery.scrollTo - Test Element MaxY - Quirks Mode

11 | 12 |
13 |
14 |   15 |
16 |
17 | 20 | 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/WinMaxY-compat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.scrollTo - Test Window MaxY - Compat Mode 6 | 7 | 8 | 9 | 10 | 11 |

jQuery.scrollTo - Test Window MaxY - Compat Mode

12 | 13 |
14 |   15 |
16 | 19 | 20 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/WinMaxY-quirks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jQuery.scrollTo - Test Window MaxY - Quirks Mode 5 | 6 | 7 | 8 | 9 | 10 |

jQuery.scrollTo - Test Window MaxY - Quirks Mode

11 | 12 |
13 |   14 |
15 | 18 | 19 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-compat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.scrollTo - Test Window MaxY to Iframe - Compat Mode 6 | 7 | 8 | 9 | 10 | 11 |

jQuery.scrollTo - Test Window MaxY to Iframe - Compat Mode

12 | 13 | 14 | 15 | 20 | 21 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/WinMaxY-to-iframe-quirks.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | jQuery.scrollTo - Test Window MaxY to Iframe - Quirks Mode 5 | 6 | 7 | 8 | 9 | 10 |

jQuery.scrollTo - Test Window MaxY to Iframe - Quirks Mode

11 | 12 | 13 | 14 | 19 | 20 | -------------------------------------------------------------------------------- /docs/reference/build/node_modules/jquery.scrollto/tests/WinMaxY-with-iframe-compat.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | jQuery.scrollTo - Test Window MaxY with Iframe - Compat Mode 6 | 7 | 8 |

jQuery.scrollTo - Test Window MaxY with Iframe - Compat Mode

9 | 10 |