├── index.md ├── bower_components ├── lunr.js │ ├── VERSION │ ├── CNAME │ ├── .gitignore │ ├── example │ │ ├── templates │ │ │ ├── question_view.mustache │ │ │ └── question_list.mustache │ │ ├── index_builder.js │ │ └── index.html │ ├── .travis.yml │ ├── bower.json │ ├── component.json │ ├── test │ │ ├── runner.sh │ │ ├── stemmer_test.js │ │ ├── store_node_test.js │ │ ├── test_helper.js │ │ ├── stop_word_filter_test.js │ │ ├── lunr_test.js │ │ ├── trimmer_test.js │ │ ├── vector_test.js │ │ ├── fixtures │ │ │ └── stemming_vocab.json │ │ ├── store_test.js │ │ ├── serialisation_test.js │ │ └── tokenizer_test.js │ ├── .bower.json │ ├── lib │ │ ├── utils.js │ │ ├── trimmer.js │ │ ├── tokenizer.js │ │ └── lunr.js │ ├── package.json │ ├── LICENSE │ ├── notes │ ├── server.js │ └── Makefile ├── jquery │ ├── src │ │ ├── outro.js │ │ ├── selector.js │ │ ├── var │ │ │ ├── arr.js │ │ │ ├── rnotwhite.js │ │ │ ├── strundefined.js │ │ │ ├── push.js │ │ │ ├── slice.js │ │ │ ├── class2type.js │ │ │ ├── concat.js │ │ │ ├── indexOf.js │ │ │ ├── pnum.js │ │ │ ├── hasOwn.js │ │ │ ├── toString.js │ │ │ └── support.js │ │ ├── ajax │ │ │ ├── var │ │ │ │ ├── rquery.js │ │ │ │ └── nonce.js │ │ │ ├── parseJSON.js │ │ │ ├── parseXML.js │ │ │ ├── script.js │ │ │ └── load.js │ │ ├── css │ │ │ ├── var │ │ │ │ ├── rmargin.js │ │ │ │ ├── cssExpand.js │ │ │ │ ├── rnumnonpx.js │ │ │ │ ├── getStyles.js │ │ │ │ └── isHidden.js │ │ │ ├── hiddenVisibleSelectors.js │ │ │ ├── swap.js │ │ │ ├── addGetHookIf.js │ │ │ └── curCSS.js │ │ ├── manipulation │ │ │ ├── var │ │ │ │ └── rcheckableType.js │ │ │ ├── _evalUrl.js │ │ │ └── support.js │ │ ├── data │ │ │ ├── var │ │ │ │ ├── data_priv.js │ │ │ │ └── data_user.js │ │ │ └── accepts.js │ │ ├── core │ │ │ ├── var │ │ │ │ └── rsingleTag.js │ │ │ ├── parseHTML.js │ │ │ └── access.js │ │ ├── traversing │ │ │ └── var │ │ │ │ └── rneedsContext.js │ │ ├── event │ │ │ ├── support.js │ │ │ └── alias.js │ │ ├── attributes.js │ │ ├── deprecated.js │ │ ├── effects │ │ │ └── animatedSelector.js │ │ ├── selector-sizzle.js │ │ ├── queue │ │ │ └── delay.js │ │ ├── jquery.js │ │ ├── exports │ │ │ ├── global.js │ │ │ └── amd.js │ │ ├── attributes │ │ │ └── support.js │ │ ├── intro.js │ │ ├── wrap.js │ │ └── dimensions.js │ ├── bower.json │ ├── .bower.json │ └── MIT-LICENSE.txt ├── mustache │ ├── wrappers │ │ ├── mootools │ │ │ ├── mustache.js.pre │ │ │ └── mustache.js.post │ │ ├── yui3 │ │ │ ├── mustache.js.pre │ │ │ └── mustache.js.post │ │ ├── dojo │ │ │ ├── mustache.js.post │ │ │ └── mustache.js.pre │ │ ├── jquery │ │ │ ├── mustache.js.pre │ │ │ └── mustache.js.post │ │ └── qooxdoo │ │ │ └── mustache.js.post │ ├── bower.json │ ├── mustache.js.nuspec │ ├── package.json │ ├── .bower.json │ ├── LICENSE │ └── Rakefile ├── fontawesome │ ├── less │ │ ├── extras.less │ │ ├── fixed-width.less │ │ ├── core.less │ │ ├── bordered-pulled.less │ │ ├── rotated-flipped.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── font-awesome.less │ │ ├── stacked.less │ │ ├── path.less │ │ ├── mixins.less │ │ └── spinning.less │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── scss │ │ ├── _fixed-width.scss │ │ ├── _core.scss │ │ ├── _bordered-pulled.scss │ │ ├── _larger.scss │ │ ├── _rotated-flipped.scss │ │ ├── _list.scss │ │ ├── font-awesome.scss │ │ ├── _stacked.scss │ │ ├── _path.scss │ │ ├── _mixins.scss │ │ ├── _spinning.scss │ │ └── _extras.scss │ ├── .gitignore │ ├── bower.json │ ├── .npmignore │ └── .bower.json ├── inuit-mixins │ ├── .gitignore │ ├── README.md │ ├── bower.json │ └── .bower.json ├── inuit-page │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _base.page.scss ├── inuit-headings │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _base.headings.scss ├── inuit-paragraphs │ ├── .gitignore │ ├── README.md │ ├── bower.json │ ├── _base.paragraphs.scss │ └── .bower.json ├── inuit-starter-kit │ ├── .gitignore │ ├── bower.json │ ├── README.md │ └── .bower.json ├── date.format │ ├── README.md │ ├── bower.json │ └── .bower.json ├── inuit-lists │ ├── README.md │ ├── _base.lists.scss │ └── .bower.json ├── inuit-box-sizing │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _generic.box-sizing.scss ├── bootstrap │ ├── fonts │ │ ├── glyphicons-halflings-regular.eot │ │ ├── glyphicons-halflings-regular.ttf │ │ └── glyphicons-halflings-regular.woff │ ├── dist │ │ └── fonts │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ └── glyphicons-halflings-regular.woff │ ├── less │ │ ├── mixins │ │ │ ├── center-block.less │ │ │ ├── text-emphasis.less │ │ │ ├── size.less │ │ │ ├── background-variant.less │ │ │ ├── opacity.less │ │ │ ├── text-overflow.less │ │ │ ├── tab-focus.less │ │ │ ├── resize.less │ │ │ ├── labels.less │ │ │ ├── progress-bar.less │ │ │ ├── nav-divider.less │ │ │ ├── reset-filter.less │ │ │ ├── alerts.less │ │ │ ├── nav-vertical-align.less │ │ │ ├── responsive-visibility.less │ │ │ ├── pagination.less │ │ │ ├── border-radius.less │ │ │ ├── panels.less │ │ │ ├── list-group.less │ │ │ ├── hide-text.less │ │ │ ├── clearfix.less │ │ │ ├── table-row.less │ │ │ ├── image.less │ │ │ └── buttons.less │ │ ├── wells.less │ │ ├── breadcrumbs.less │ │ ├── responsive-embed.less │ │ ├── component-animations.less │ │ ├── close.less │ │ ├── thumbnails.less │ │ ├── utilities.less │ │ ├── media.less │ │ ├── pager.less │ │ ├── jumbotron.less │ │ ├── mixins.less │ │ ├── badges.less │ │ ├── bootstrap.less │ │ ├── labels.less │ │ ├── code.less │ │ ├── grid.less │ │ └── alerts.less │ ├── bower.json │ ├── LICENSE │ ├── .bower.json │ ├── grunt │ │ ├── bs-glyphicons-data-generator.js │ │ ├── bs-raw-files-generator.js │ │ └── sauce_browsers.yml │ └── js │ │ └── transition.js ├── inuit-functions │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _tools.functions.scss ├── inuit-images │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _base.images.scss ├── inuit-reset │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _generic.reset.scss ├── inuit-defaults │ ├── README.md │ ├── bower.json │ ├── .bower.json │ └── _settings.defaults.scss ├── inuit-normalize │ ├── bower.json │ ├── README.md │ └── .bower.json └── uri.js │ ├── bower.json │ ├── .bower.json │ └── contributing.md ├── .gitignore ├── favicon.ico ├── assets ├── fonts │ ├── 2B9BF7_0_0.eot │ ├── 2B9BF7_0_0.ttf │ ├── 2B9BF7_0_0.woff │ ├── FantasqueSansMono-Bold.eot │ ├── FantasqueSansMono-Bold.otf │ ├── FantasqueSansMono-Bold.ttf │ ├── FantasqueSansMono-Bold.woff │ ├── FantasqueSansMono-RegItalic.eot │ ├── FantasqueSansMono-RegItalic.otf │ ├── FantasqueSansMono-RegItalic.ttf │ ├── FantasqueSansMono-Regular.eot │ ├── FantasqueSansMono-Regular.otf │ ├── FantasqueSansMono-Regular.ttf │ ├── FantasqueSansMono-Regular.woff │ ├── FantasqueSansMono-BoldItalic.eot │ ├── FantasqueSansMono-BoldItalic.otf │ ├── FantasqueSansMono-BoldItalic.ttf │ ├── FantasqueSansMono-BoldItalic.woff │ └── FantasqueSansMono-RegItalic.woff ├── images │ ├── hifi-logo.png │ ├── hifi-logo-alpha.png │ ├── hifi-logo-docs.png │ └── wl-logo.svg ├── main.js └── css │ └── watch ├── _includes ├── search_results.html ├── edit_on_github.html ├── search_form.html ├── search_entries.html ├── header.html ├── head.html └── index.html ├── _plugins ├── trim.rb ├── filename.rb ├── edit-create.rb └── jekyll-pages-directory.rb ├── _layouts ├── home.html ├── post.html ├── doc.html └── default.html ├── _data └── pagetypes.yaml ├── README.md ├── package.json ├── bower.json ├── Gruntfile.js ├── _config.yml ├── _articles ├── avatars │ ├── naming-skeletal-joints.md │ ├── training-in-faceshift.md │ ├── rig-character-faceshift.md │ └── uploading-models.md └── getting-started │ ├── faq.md │ └── domains.md └── feed.xml /index.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- -------------------------------------------------------------------------------- /bower_components/lunr.js/VERSION: -------------------------------------------------------------------------------- 1 | 0.5.4 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | *#* 3 | .sass-cache/ 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /bower_components/lunr.js/CNAME: -------------------------------------------------------------------------------- 1 | lunrjs.com 2 | -------------------------------------------------------------------------------- /bower_components/lunr.js/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /bower_components/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/favicon.ico -------------------------------------------------------------------------------- /bower_components/mustache/wrappers/mootools/mustache.js.pre: -------------------------------------------------------------------------------- 1 | (function(){ 2 | 3 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/fontawesome/less/extras.less: -------------------------------------------------------------------------------- 1 | // Extras 2 | // -------------------------- 3 | -------------------------------------------------------------------------------- /bower_components/inuit-mixins/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /bower_components/inuit-page/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /bower_components/mustache/wrappers/yui3/mustache.js.pre: -------------------------------------------------------------------------------- 1 | YUI.add("mustache", function(Y) { 2 | -------------------------------------------------------------------------------- /bower_components/inuit-headings/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /bower_components/inuit-paragraphs/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /bower_components/inuit-starter-kit/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ 2 | *.css 3 | inuit-test.scss 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /assets/fonts/2B9BF7_0_0.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/2B9BF7_0_0.eot -------------------------------------------------------------------------------- /assets/fonts/2B9BF7_0_0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/2B9BF7_0_0.ttf -------------------------------------------------------------------------------- /assets/fonts/2B9BF7_0_0.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/2B9BF7_0_0.woff -------------------------------------------------------------------------------- /assets/images/hifi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/images/hifi-logo.png -------------------------------------------------------------------------------- /bower_components/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/mustache/wrappers/yui3/mustache.js.post: -------------------------------------------------------------------------------- 1 | 2 | Y.mustache = Mustache.render; 3 | 4 | }, "0"); 5 | -------------------------------------------------------------------------------- /assets/images/hifi-logo-alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/images/hifi-logo-alpha.png -------------------------------------------------------------------------------- /assets/images/hifi-logo-docs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/images/hifi-logo-docs.png -------------------------------------------------------------------------------- /bower_components/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/date.format/README.md: -------------------------------------------------------------------------------- 1 | date.format 2 | =========== 3 | 4 | Date Format plugin for jQuery by Steven Levithan 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/mustache/wrappers/dojo/mustache.js.post: -------------------------------------------------------------------------------- 1 | 2 | dojox.mustache = dojo.hitch(Mustache, "render"); 3 | 4 | })(); -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Bold.eot -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Bold.otf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Bold.ttf -------------------------------------------------------------------------------- /bower_components/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Bold.woff -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-RegItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-RegItalic.eot -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-RegItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-RegItalic.otf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-RegItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-RegItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Regular.eot -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Regular.otf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-Regular.woff -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-BoldItalic.eot -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-BoldItalic.otf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-BoldItalic.woff -------------------------------------------------------------------------------- /assets/fonts/FantasqueSansMono-RegItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/assets/fonts/FantasqueSansMono-RegItalic.woff -------------------------------------------------------------------------------- /bower_components/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /bower_components/fontawesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/problem/hifi-docs/master/bower_components/fontawesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /bower_components/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /bower_components/inuit-lists/README.md: -------------------------------------------------------------------------------- 1 | # Lists 2 | 3 | The inuitcss `lists` module provides very basic styling for regular ordered and 4 | unordered lists. 5 | -------------------------------------------------------------------------------- /bower_components/lunr.js/example/templates/question_view.mustache: -------------------------------------------------------------------------------- 1 |
{{tags}}
4 |{{tags}}
7 |makes browsers render all elements more consistently and in 5 | line with modern standards. It is developed and maintained by [Nicolas 6 | Gallagher](https://twitter.com/necolas). 7 | 8 | Install using Bower: 9 | 10 | $ bower install --save inuit-normalize 11 | 12 | * Project homepage: [necolas.github.io/normalize.css](http://necolas.github.io/normalize.css/) 13 | * GitHub repo: [github.com/necolas/normalize.css](https://github.com/necolas/normalize.css/) 14 | -------------------------------------------------------------------------------- /bower_components/jquery/src/ajax/parseXML.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../core" 3 | ], function( jQuery ) { 4 | 5 | // Cross-browser xml parsing 6 | jQuery.parseXML = function( data ) { 7 | var xml, tmp; 8 | if ( !data || typeof data !== "string" ) { 9 | return null; 10 | } 11 | 12 | // Support: IE9 13 | try { 14 | tmp = new DOMParser(); 15 | xml = tmp.parseFromString( data, "text/xml" ); 16 | } catch ( e ) { 17 | xml = undefined; 18 | } 19 | 20 | if ( !xml || xml.getElementsByTagName( "parsererror" ).length ) { 21 | jQuery.error( "Invalid XML: " + data ); 22 | } 23 | return xml; 24 | }; 25 | 26 | return jQuery.parseXML; 27 | 28 | }); 29 | -------------------------------------------------------------------------------- /bower_components/uri.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "URIjs", 3 | "version": "1.13.2", 4 | "main": [ 5 | "src/URI.js", 6 | "src/IPv6.js", 7 | "src/SecondLevelDomains.js", 8 | "src/punycode.js", 9 | "src/URITemplate.js", 10 | "src/jquery.URI.js", 11 | "src/URI.min.js", 12 | "src/jquery.URI.min.js", 13 | "src/URI.fragmentQuery.js", 14 | "src/URI.fragmentURI.js" 15 | ], 16 | "ignore": [ 17 | ".*", 18 | "*.css", 19 | "/*.js", 20 | "/*.html", 21 | "/*.json", 22 | "utils", 23 | "test", 24 | "prettify" 25 | ], 26 | "dependencies": { 27 | "jquery": ">=1.7.0" 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /bower_components/fontawesome/.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 | -------------------------------------------------------------------------------- /_layouts/doc.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | --- 4 | 5 | 7 | 8 |