├── src ├── EFIdentity │ ├── wwwroot │ │ ├── lib │ │ │ ├── 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 │ │ │ │ │ ├── css │ │ │ │ │ └── var │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ └── rnumnonpx.js │ │ │ │ │ ├── manipulation │ │ │ │ │ └── var │ │ │ │ │ │ └── rcheckableType.js │ │ │ │ │ ├── data │ │ │ │ │ └── var │ │ │ │ │ │ ├── data_priv.js │ │ │ │ │ │ └── data_user.js │ │ │ │ │ ├── core │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── traversing │ │ │ │ │ └── var │ │ │ │ │ │ └── rneedsContext.js │ │ │ │ │ ├── event │ │ │ │ │ └── support.js │ │ │ │ │ └── attributes.js │ │ │ ├── bootstrap │ │ │ │ ├── CNAME │ │ │ │ ├── examples │ │ │ │ │ ├── navbar │ │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── navbar-fixed-top │ │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ │ ├── navbar-static-top │ │ │ │ │ │ └── navbar-static-top.css │ │ │ │ │ ├── screenshots │ │ │ │ │ │ ├── grid.jpg │ │ │ │ │ │ ├── navbar.jpg │ │ │ │ │ │ ├── theme.jpg │ │ │ │ │ │ ├── carousel.jpg │ │ │ │ │ │ ├── jumbotron.jpg │ │ │ │ │ │ ├── offcanvas.jpg │ │ │ │ │ │ ├── sign-in.jpg │ │ │ │ │ │ ├── justified-nav.jpg │ │ │ │ │ │ ├── navbar-fixed.jpg │ │ │ │ │ │ ├── navbar-static.jpg │ │ │ │ │ │ ├── non-responsive.jpg │ │ │ │ │ │ ├── sticky-footer.jpg │ │ │ │ │ │ ├── jumbotron-narrow.jpg │ │ │ │ │ │ ├── starter-template.jpg │ │ │ │ │ │ └── sticky-footer-navbar.jpg │ │ │ │ │ ├── starter-template │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ └── offcanvas │ │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── assets │ │ │ │ │ ├── ico │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ │ │ ├── apple-touch-icon-72-precomposed.png │ │ │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ │ │ └── apple-touch-icon-144-precomposed.png │ │ │ │ │ └── js │ │ │ │ │ │ └── raw-files.js │ │ │ │ ├── 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 │ │ │ │ └── bower.json │ │ │ ├── hammer.js │ │ │ │ ├── .bowerrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── .jscsrc │ │ │ │ ├── component.json │ │ │ │ ├── bower.json │ │ │ │ └── .gitignore │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .gitignore │ │ │ │ └── CONTRIBUTING.md │ │ │ └── jquery-validation │ │ │ │ ├── demo │ │ │ │ ├── captcha │ │ │ │ │ ├── images │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ └── button.png │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── Anorexia.ttf │ │ │ │ │ └── newsession.php │ │ │ │ ├── milk │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── milk.png │ │ │ │ │ ├── left_white.png │ │ │ │ │ └── right_white.png │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── unchecked.gif │ │ │ │ │ ├── cmxform-divider.gif │ │ │ │ │ └── cmxform-fieldset.gif │ │ │ │ ├── login │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── page.gif │ │ │ │ │ │ ├── header1.jpg │ │ │ │ │ │ └── required_star.gif │ │ │ │ ├── marketo │ │ │ │ │ └── images │ │ │ │ │ │ ├── sf.png │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ ├── time.png │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── toggle.gif │ │ │ │ │ │ ├── warning.gif │ │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ │ └── left-nav-callout-long.png │ │ │ │ ├── tinymce │ │ │ │ │ └── themes │ │ │ │ │ │ └── simple │ │ │ │ │ │ └── img │ │ │ │ │ │ └── icons.gif │ │ │ │ └── css │ │ │ │ │ └── screen.css │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ └── test │ │ │ │ └── firebug │ │ │ │ ├── errorIcon.png │ │ │ │ ├── infoIcon.png │ │ │ │ └── warningIcon.png │ │ ├── js │ │ │ └── site.js │ │ ├── favicon.ico │ │ └── images │ │ │ ├── Banner-02-VS.png │ │ │ ├── Banner-01-Azure.png │ │ │ ├── ASP-NET-Banners-01.png │ │ │ └── ASP-NET-Banners-02.png │ ├── .bowerrc │ ├── node_modules │ │ ├── gulp-cssmin │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── clean-css │ │ │ │ │ ├── lib │ │ │ │ │ │ └── selectors │ │ │ │ │ │ │ └── metadata.js │ │ │ │ │ └── index.js │ │ │ │ ├── gulp-cssmin │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── type2.css │ │ │ │ │ │ ├── type.min.css │ │ │ │ │ │ └── type.css │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── xtend │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── gulp-rename │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── hello.txt │ │ │ │ │ │ │ └── hello.min.txt │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── uuid │ │ │ │ │ ├── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── buffer-browser.js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ ├── rng.js │ │ │ │ │ └── benchmark │ │ │ │ │ │ └── package.json │ │ │ │ ├── graceful-fs │ │ │ │ │ └── .npmignore │ │ │ │ ├── source-map │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── build │ │ │ │ │ │ ├── test-suffix.js │ │ │ │ │ │ └── test-prefix.js │ │ │ │ ├── gulp-util │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── linefeed.js │ │ │ │ │ │ ├── File.js │ │ │ │ │ │ ├── colors.js │ │ │ │ │ │ ├── date.js │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── beep.js │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ └── isBuffer.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── through2 │ │ │ │ │ └── .npmignore │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── graceful-readlink │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── map-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── readable-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── writable.js │ │ │ │ │ └── passthrough.js │ │ │ │ ├── vinyl │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ │ └── isBuffer.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── example │ │ │ │ │ │ └── parse.js │ │ │ │ │ └── test │ │ │ │ │ │ └── whitespace.js │ │ │ │ ├── dateformat │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── weekofyear │ │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── number-is-nan │ │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ │ └── index.js │ │ │ │ ├── filesize │ │ │ │ │ └── .npmignore │ │ │ │ ├── has-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ │ └── index.js │ │ │ └── .travis.yml │ │ ├── gulp-concat │ │ │ └── node_modules │ │ │ │ ├── clone │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── xtend │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── Makefile │ │ │ │ ├── source-map │ │ │ │ ├── .npmignore │ │ │ │ ├── .gitattributes │ │ │ │ ├── .travis.yml │ │ │ │ └── build │ │ │ │ │ ├── test-suffix.js │ │ │ │ │ └── test-prefix.js │ │ │ │ ├── string_decoder │ │ │ │ └── .npmignore │ │ │ │ ├── through2 │ │ │ │ └── .npmignore │ │ │ │ ├── inherits │ │ │ │ └── inherits.js │ │ │ │ ├── readable-stream │ │ │ │ ├── .npmignore │ │ │ │ ├── duplex.js │ │ │ │ ├── transform.js │ │ │ │ ├── writable.js │ │ │ │ └── passthrough.js │ │ │ │ ├── minimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── example │ │ │ │ │ └── parse.js │ │ │ │ └── test │ │ │ │ │ └── whitespace.js │ │ │ │ ├── vinyl │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── dateformat │ │ │ │ ├── .travis.yml │ │ │ │ └── test │ │ │ │ │ └── weekofyear │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── gulp-util │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── replace-ext │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── core-util-is │ │ │ │ └── README.md │ │ │ │ ├── number-is-nan │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ │ ├── array-differ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ └── index.js │ │ ├── gulp-uglify │ │ │ ├── node_modules │ │ │ │ ├── clone │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── gulp-uglify │ │ │ │ │ ├── .idea │ │ │ │ │ │ ├── .name │ │ │ │ │ │ ├── copyright │ │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ │ ├── encodings.xml │ │ │ │ │ │ └── vcs.xml │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── index.js │ │ │ │ ├── xtend │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── wordwrap │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── example │ │ │ │ │ │ └── meat.js │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── uglify-js │ │ │ │ │ └── .npmignore │ │ │ │ ├── source-map │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── build │ │ │ │ │ │ ├── test-suffix.js │ │ │ │ │ │ └── test-prefix.js │ │ │ │ ├── through2 │ │ │ │ │ └── .npmignore │ │ │ │ ├── vinyl-sourcemaps-apply │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .jshintrc │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── uglify-to-browserify │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── readable-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── transform.js │ │ │ │ │ ├── writable.js │ │ │ │ │ └── passthrough.js │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── example │ │ │ │ │ │ └── parse.js │ │ │ │ │ └── test │ │ │ │ │ │ └── whitespace.js │ │ │ │ ├── vinyl │ │ │ │ │ └── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── dateformat │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── weekofyear │ │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── gulp-util │ │ │ │ │ └── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── replace-ext │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── deap │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── number-is-nan │ │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── array-differ │ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ │ └── index.js │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ └── index.js │ │ ├── gulp │ │ │ └── node_modules │ │ │ │ ├── inherits │ │ │ │ └── inherits.js │ │ │ │ ├── readable-stream │ │ │ │ ├── duplex.js │ │ │ │ ├── writable.js │ │ │ │ ├── passthrough.js │ │ │ │ └── transform.js │ │ │ │ ├── vinyl │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── gulp-util │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── env.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── liftoff │ │ │ │ └── lib │ │ │ │ │ └── silent_require.js │ │ │ │ ├── isarray │ │ │ │ └── index.js │ │ │ │ ├── resolve │ │ │ │ ├── lib │ │ │ │ │ └── core.js │ │ │ │ └── index.js │ │ │ │ ├── .bin │ │ │ │ └── semver.cmd │ │ │ │ ├── tildify │ │ │ │ └── index.js │ │ │ │ ├── vinyl-fs │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ │ ├── src │ │ │ │ │ └── getContents │ │ │ │ │ │ └── readDir.js │ │ │ │ │ └── dest │ │ │ │ │ └── writeContents │ │ │ │ │ └── writeDir.js │ │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ │ └── array-differ │ │ │ │ └── index.js │ │ └── .bin │ │ │ ├── rimraf.cmd │ │ │ └── gulp.cmd │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Shared │ │ │ └── Error.cshtml │ │ ├── Home │ │ │ └── About.cshtml │ │ ├── Account │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── Lockout.cshtml │ │ │ └── ResetPasswordConfirmation.cshtml │ │ └── _ViewImports.cshtml │ ├── appsettings.json │ └── package.json ├── IdentityNPocoStores │ ├── wwwroot │ │ ├── lib │ │ │ ├── jquery │ │ │ │ └── src │ │ │ │ │ ├── outro.js │ │ │ │ │ ├── selector.js │ │ │ │ │ ├── var │ │ │ │ │ ├── arr.js │ │ │ │ │ ├── rnotwhite.js │ │ │ │ │ ├── strundefined.js │ │ │ │ │ ├── class2type.js │ │ │ │ │ ├── concat.js │ │ │ │ │ ├── push.js │ │ │ │ │ ├── slice.js │ │ │ │ │ ├── indexOf.js │ │ │ │ │ ├── pnum.js │ │ │ │ │ ├── toString.js │ │ │ │ │ ├── hasOwn.js │ │ │ │ │ └── support.js │ │ │ │ │ ├── ajax │ │ │ │ │ └── var │ │ │ │ │ │ ├── rquery.js │ │ │ │ │ │ └── nonce.js │ │ │ │ │ ├── css │ │ │ │ │ └── var │ │ │ │ │ │ ├── rmargin.js │ │ │ │ │ │ ├── cssExpand.js │ │ │ │ │ │ └── rnumnonpx.js │ │ │ │ │ ├── manipulation │ │ │ │ │ └── var │ │ │ │ │ │ └── rcheckableType.js │ │ │ │ │ ├── data │ │ │ │ │ └── var │ │ │ │ │ │ ├── data_priv.js │ │ │ │ │ │ └── data_user.js │ │ │ │ │ ├── core │ │ │ │ │ └── var │ │ │ │ │ │ └── rsingleTag.js │ │ │ │ │ ├── traversing │ │ │ │ │ └── var │ │ │ │ │ │ └── rneedsContext.js │ │ │ │ │ └── event │ │ │ │ │ └── support.js │ │ │ ├── bootstrap │ │ │ │ ├── CNAME │ │ │ │ ├── examples │ │ │ │ │ ├── navbar │ │ │ │ │ │ └── navbar.css │ │ │ │ │ ├── navbar-fixed-top │ │ │ │ │ │ └── navbar-fixed-top.css │ │ │ │ │ ├── navbar-static-top │ │ │ │ │ │ └── navbar-static-top.css │ │ │ │ │ ├── starter-template │ │ │ │ │ │ └── starter-template.css │ │ │ │ │ ├── screenshots │ │ │ │ │ │ ├── grid.jpg │ │ │ │ │ │ ├── theme.jpg │ │ │ │ │ │ ├── navbar.jpg │ │ │ │ │ │ ├── sign-in.jpg │ │ │ │ │ │ ├── carousel.jpg │ │ │ │ │ │ ├── jumbotron.jpg │ │ │ │ │ │ ├── offcanvas.jpg │ │ │ │ │ │ ├── navbar-fixed.jpg │ │ │ │ │ │ ├── justified-nav.jpg │ │ │ │ │ │ ├── navbar-static.jpg │ │ │ │ │ │ ├── non-responsive.jpg │ │ │ │ │ │ ├── sticky-footer.jpg │ │ │ │ │ │ ├── jumbotron-narrow.jpg │ │ │ │ │ │ ├── starter-template.jpg │ │ │ │ │ │ └── sticky-footer-navbar.jpg │ │ │ │ │ ├── jumbotron │ │ │ │ │ │ └── jumbotron.css │ │ │ │ │ └── offcanvas │ │ │ │ │ │ └── offcanvas.js │ │ │ │ ├── assets │ │ │ │ │ ├── ico │ │ │ │ │ │ ├── favicon.png │ │ │ │ │ │ ├── apple-touch-icon-114-precomposed.png │ │ │ │ │ │ ├── apple-touch-icon-144-precomposed.png │ │ │ │ │ │ ├── apple-touch-icon-57-precomposed.png │ │ │ │ │ │ └── apple-touch-icon-72-precomposed.png │ │ │ │ │ └── js │ │ │ │ │ │ └── raw-files.js │ │ │ │ ├── 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 │ │ │ ├── hammer.js │ │ │ │ ├── .bowerrc │ │ │ │ ├── .travis.yml │ │ │ │ ├── .jscsrc │ │ │ │ ├── component.json │ │ │ │ └── bower.json │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ ├── .gitignore │ │ │ │ └── CONTRIBUTING.md │ │ │ └── jquery-validation │ │ │ │ ├── demo │ │ │ │ ├── captcha │ │ │ │ │ ├── images │ │ │ │ │ │ ├── .htaccess │ │ │ │ │ │ └── button.png │ │ │ │ │ ├── fonts │ │ │ │ │ │ └── Anorexia.ttf │ │ │ │ │ └── newsession.php │ │ │ │ ├── milk │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── milk.png │ │ │ │ │ ├── left_white.png │ │ │ │ │ └── right_white.png │ │ │ │ ├── images │ │ │ │ │ ├── bg.gif │ │ │ │ │ ├── checked.gif │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── unchecked.gif │ │ │ │ │ ├── cmxform-divider.gif │ │ │ │ │ └── cmxform-fieldset.gif │ │ │ │ ├── login │ │ │ │ │ └── images │ │ │ │ │ │ ├── bg.gif │ │ │ │ │ │ ├── page.gif │ │ │ │ │ │ ├── header1.jpg │ │ │ │ │ │ └── required_star.gif │ │ │ │ ├── marketo │ │ │ │ │ └── images │ │ │ │ │ │ ├── sf.png │ │ │ │ │ │ ├── blank.gif │ │ │ │ │ │ ├── help.png │ │ │ │ │ │ ├── time.png │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── step1-24.gif │ │ │ │ │ │ ├── step2-24.gif │ │ │ │ │ │ ├── step3-24.gif │ │ │ │ │ │ ├── toggle.gif │ │ │ │ │ │ ├── warning.gif │ │ │ │ │ │ ├── tab-sprite.gif │ │ │ │ │ │ ├── tab_green.gif │ │ │ │ │ │ ├── back_nav_blue.gif │ │ │ │ │ │ ├── button-submit.gif │ │ │ │ │ │ ├── login-sprite.gif │ │ │ │ │ │ ├── logo_marketo.gif │ │ │ │ │ │ ├── back_green-fade.gif │ │ │ │ │ │ ├── backRequiredGray.gif │ │ │ │ │ │ └── left-nav-callout-long.png │ │ │ │ └── tinymce │ │ │ │ │ └── themes │ │ │ │ │ └── simple │ │ │ │ │ └── img │ │ │ │ │ └── icons.gif │ │ │ │ ├── .gitattributes │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ └── test │ │ │ │ └── firebug │ │ │ │ ├── errorIcon.png │ │ │ │ ├── infoIcon.png │ │ │ │ └── warningIcon.png │ │ ├── js │ │ │ └── site.js │ │ ├── favicon.ico │ │ └── images │ │ │ ├── Banner-02-VS.png │ │ │ ├── Banner-01-Azure.png │ │ │ ├── ASP-NET-Banners-01.png │ │ │ └── ASP-NET-Banners-02.png │ ├── .bowerrc │ ├── node_modules │ │ ├── gulp-cssmin │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── clean-css │ │ │ │ │ ├── lib │ │ │ │ │ │ └── selectors │ │ │ │ │ │ │ └── metadata.js │ │ │ │ │ └── index.js │ │ │ │ ├── gulp-cssmin │ │ │ │ │ ├── sample │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── type2.css │ │ │ │ │ │ ├── type.min.css │ │ │ │ │ │ └── type.css │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── uuid │ │ │ │ │ ├── test │ │ │ │ │ │ └── mocha.opts │ │ │ │ │ ├── buffer.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── buffer-browser.js │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── rng.js │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── benchmark │ │ │ │ │ │ └── package.json │ │ │ │ ├── xtend │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── graceful-fs │ │ │ │ │ └── .npmignore │ │ │ │ ├── gulp-rename │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── test │ │ │ │ │ │ └── fixtures │ │ │ │ │ │ │ ├── hello.txt │ │ │ │ │ │ │ └── hello.min.txt │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── source-map │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── build │ │ │ │ │ │ ├── test-suffix.js │ │ │ │ │ │ └── test-prefix.js │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── gulp-util │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── linefeed.js │ │ │ │ │ │ ├── File.js │ │ │ │ │ │ ├── colors.js │ │ │ │ │ │ ├── date.js │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── beep.js │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ └── isStream.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── through2 │ │ │ │ │ └── .npmignore │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── graceful-readlink │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── map-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── readable-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── writable.js │ │ │ │ │ ├── transform.js │ │ │ │ │ └── passthrough.js │ │ │ │ ├── vinyl │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ │ └── isBuffer.js │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── dateformat │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── weekofyear │ │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── example │ │ │ │ │ │ └── parse.js │ │ │ │ │ └── test │ │ │ │ │ │ └── whitespace.js │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── number-is-nan │ │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ │ └── index.js │ │ │ │ ├── filesize │ │ │ │ │ └── .npmignore │ │ │ │ ├── has-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ │ └── index.js │ │ │ └── .travis.yml │ │ ├── gulp-concat │ │ │ └── node_modules │ │ │ │ ├── clone │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── xtend │ │ │ │ ├── .npmignore │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ └── Makefile │ │ │ │ ├── source-map │ │ │ │ ├── .npmignore │ │ │ │ ├── .gitattributes │ │ │ │ ├── .travis.yml │ │ │ │ └── build │ │ │ │ │ ├── test-suffix.js │ │ │ │ │ └── test-prefix.js │ │ │ │ ├── string_decoder │ │ │ │ └── .npmignore │ │ │ │ ├── through2 │ │ │ │ └── .npmignore │ │ │ │ ├── inherits │ │ │ │ └── inherits.js │ │ │ │ ├── readable-stream │ │ │ │ ├── .npmignore │ │ │ │ ├── duplex.js │ │ │ │ ├── writable.js │ │ │ │ ├── transform.js │ │ │ │ └── passthrough.js │ │ │ │ ├── dateformat │ │ │ │ ├── .travis.yml │ │ │ │ └── test │ │ │ │ │ └── weekofyear │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── minimist │ │ │ │ ├── .travis.yml │ │ │ │ ├── example │ │ │ │ │ └── parse.js │ │ │ │ └── test │ │ │ │ │ └── whitespace.js │ │ │ │ ├── vinyl │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── gulp-util │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── env.js │ │ │ │ │ └── isStream.js │ │ │ │ ├── replace-ext │ │ │ │ ├── .npmignore │ │ │ │ └── .travis.yml │ │ │ │ ├── core-util-is │ │ │ │ └── README.md │ │ │ │ ├── number-is-nan │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ │ ├── array-differ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ └── index.js │ │ ├── gulp-uglify │ │ │ ├── .npmignore │ │ │ ├── node_modules │ │ │ │ ├── clone │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── gulp-uglify │ │ │ │ │ ├── .idea │ │ │ │ │ │ ├── .name │ │ │ │ │ │ ├── copyright │ │ │ │ │ │ │ └── profiles_settings.xml │ │ │ │ │ │ ├── scopes │ │ │ │ │ │ │ └── scope_settings.xml │ │ │ │ │ │ ├── encodings.xml │ │ │ │ │ │ └── vcs.xml │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── index.js │ │ │ │ ├── xtend │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── Makefile │ │ │ │ ├── duplexer2 │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── multipipe │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── Makefile │ │ │ │ ├── wordwrap │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── example │ │ │ │ │ │ └── meat.js │ │ │ │ ├── string_decoder │ │ │ │ │ └── .npmignore │ │ │ │ ├── uglify-js │ │ │ │ │ └── .npmignore │ │ │ │ ├── source-map │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── build │ │ │ │ │ │ └── test-suffix.js │ │ │ │ ├── through2 │ │ │ │ │ └── .npmignore │ │ │ │ ├── vinyl-sourcemaps-apply │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .jshintrc │ │ │ │ ├── inherits │ │ │ │ │ └── inherits.js │ │ │ │ ├── uglify-to-browserify │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── readable-stream │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── duplex.js │ │ │ │ │ ├── writable.js │ │ │ │ │ ├── transform.js │ │ │ │ │ └── passthrough.js │ │ │ │ ├── dateformat │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── test │ │ │ │ │ │ └── weekofyear │ │ │ │ │ │ └── test_weekofyear.js │ │ │ │ ├── minimist │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── example │ │ │ │ │ │ └── parse.js │ │ │ │ ├── vinyl │ │ │ │ │ └── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── isStream.js │ │ │ │ │ │ └── cloneBuffer.js │ │ │ │ ├── gulp-util │ │ │ │ │ └── lib │ │ │ │ │ │ ├── isNull.js │ │ │ │ │ │ ├── noop.js │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ └── isStream.js │ │ │ │ ├── replace-ext │ │ │ │ │ ├── .npmignore │ │ │ │ │ └── .travis.yml │ │ │ │ ├── core-util-is │ │ │ │ │ └── README.md │ │ │ │ ├── deap │ │ │ │ │ ├── .travis.yml │ │ │ │ │ └── .npmignore │ │ │ │ ├── number-is-nan │ │ │ │ │ └── index.js │ │ │ │ ├── isarray │ │ │ │ │ └── index.js │ │ │ │ ├── ansi-regex │ │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ │ └── index.js │ │ │ │ ├── array-differ │ │ │ │ │ └── index.js │ │ │ │ └── is-finite │ │ │ │ │ └── index.js │ │ │ ├── .travis.yml │ │ │ └── index.js │ │ ├── gulp │ │ │ └── node_modules │ │ │ │ ├── inherits │ │ │ │ └── inherits.js │ │ │ │ ├── readable-stream │ │ │ │ ├── duplex.js │ │ │ │ ├── transform.js │ │ │ │ ├── writable.js │ │ │ │ └── passthrough.js │ │ │ │ ├── gulp-util │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── noop.js │ │ │ │ │ ├── env.js │ │ │ │ │ └── isStream.js │ │ │ │ ├── vinyl │ │ │ │ └── lib │ │ │ │ │ ├── isNull.js │ │ │ │ │ ├── isStream.js │ │ │ │ │ ├── cloneBuffer.js │ │ │ │ │ └── isBuffer.js │ │ │ │ ├── liftoff │ │ │ │ └── lib │ │ │ │ │ └── silent_require.js │ │ │ │ ├── isarray │ │ │ │ └── index.js │ │ │ │ ├── resolve │ │ │ │ ├── lib │ │ │ │ │ └── core.js │ │ │ │ └── index.js │ │ │ │ ├── .bin │ │ │ │ └── semver.cmd │ │ │ │ ├── tildify │ │ │ │ └── index.js │ │ │ │ ├── vinyl-fs │ │ │ │ ├── index.js │ │ │ │ └── lib │ │ │ │ │ ├── src │ │ │ │ │ └── getContents │ │ │ │ │ │ └── readDir.js │ │ │ │ │ └── dest │ │ │ │ │ └── writeContents │ │ │ │ │ └── writeDir.js │ │ │ │ ├── ansi-regex │ │ │ │ └── index.js │ │ │ │ ├── has-ansi │ │ │ │ └── index.js │ │ │ │ ├── strip-ansi │ │ │ │ └── index.js │ │ │ │ └── array-differ │ │ │ │ └── index.js │ │ └── .bin │ │ │ ├── rimraf.cmd │ │ │ └── gulp.cmd │ ├── Views │ │ ├── _ViewStart.cshtml │ │ ├── Shared │ │ │ └── Error.cshtml │ │ ├── Home │ │ │ └── About.cshtml │ │ ├── Account │ │ │ ├── ForgotPasswordConfirmation.cshtml │ │ │ ├── ExternalLoginFailure.cshtml │ │ │ ├── Lockout.cshtml │ │ │ └── ResetPasswordConfirmation.cshtml │ │ └── _ViewImports.cshtml │ └── package.json └── Dan.IdentityNPocoStores.Test │ └── Resources │ ├── AspNetIdentity.sql │ └── AspNetIdentityDrop.sql ├── global.json └── NuGet.Config /src/EFIdentity/wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/outro.js: -------------------------------------------------------------------------------- 1 | })); 2 | -------------------------------------------------------------------------------- /src/EFIdentity/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/CNAME: -------------------------------------------------------------------------------- 1 | getbootstrap.com 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/js/site.js: -------------------------------------------------------------------------------- 1 | // Write your Javascript code. 2 | -------------------------------------------------------------------------------- /src/EFIdentity/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "json": "bower.json" 3 | } -------------------------------------------------------------------------------- /src/IdentityNPocoStores/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "wwwroot/lib" 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/clean-css/lib/selectors/metadata.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/test/type2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/.name: -------------------------------------------------------------------------------- 1 | gulp-uglify -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation-unobtrusive/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-rename/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/wordwrap/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Layout"; 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/hammer.js/.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "json": "bower.json" 3 | } -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation-unobtrusive/.gitignore: -------------------------------------------------------------------------------- 1 | bower_components/ -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | bench/ 2 | test/ 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.min.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | bench/ 2 | test/ 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/buffer.js: -------------------------------------------------------------------------------- 1 | module.exports = Buffer; 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/clean-css/lib/selectors/metadata.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/test/type2.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/test/mocha.opts: -------------------------------------------------------------------------------- 1 | --ui qunit 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/clone/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/.name: -------------------------------------------------------------------------------- 1 | gulp-uglify -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/xtend/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/selector.js: -------------------------------------------------------------------------------- 1 | define([ "./selector-sizzle" ]); 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.min.css: -------------------------------------------------------------------------------- 1 | body{color:red} -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/linefeed.js: -------------------------------------------------------------------------------- 1 | module.exports = '\n'; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/uglify-js/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-rename/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/duplexer2/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/multipipe/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/wordwrap/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/File.js: -------------------------------------------------------------------------------- 1 | module.exports = require('vinyl'); -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/buffer-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = Array; 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | bench/ 2 | test/ 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.min.css: -------------------------------------------------------------------------------- 1 | body{color:red} -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-rename/test/fixtures/hello.min.txt: -------------------------------------------------------------------------------- 1 | Hello -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | bench/ 2 | test/ 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/buffer.js: -------------------------------------------------------------------------------- 1 | module.exports = Buffer; 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/string_decoder/.npmignore: -------------------------------------------------------------------------------- 1 | build 2 | test 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/arr.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return []; 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/colors.js: -------------------------------------------------------------------------------- 1 | module.exports = require('chalk'); -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/date.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dateformat'); -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/images/.htaccess: -------------------------------------------------------------------------------- 1 | AddType application/x-httpd-php .jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/linefeed.js: -------------------------------------------------------------------------------- 1 | module.exports = '\n'; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/buffer-browser.js: -------------------------------------------------------------------------------- 1 | module.exports = Array; 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/uglify-js/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .travis.yml 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/clean-css/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/clean'); 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-rename/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/File.js: -------------------------------------------------------------------------------- 1 | module.exports = require('vinyl'); -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/through2/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | .jshintrc 3 | .travis.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- 1 | { 2 | "projects": [ "src", "test" ], 3 | "sdk": { 4 | "version": "1.0.0-beta8" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/source-map/.gitattributes: -------------------------------------------------------------------------------- 1 | bench/scalajs-runtime-sourcemap.js binary -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/source-map/.gitattributes: -------------------------------------------------------------------------------- 1 | bench/scalajs-runtime-sourcemap.js binary -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/colors.js: -------------------------------------------------------------------------------- 1 | module.exports = require('chalk'); -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/date.js: -------------------------------------------------------------------------------- 1 | module.exports = require('dateformat'); -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build 3 | components -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/images/.htaccess: -------------------------------------------------------------------------------- 1 | AddType application/x-httpd-php .jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/ajax/var/rquery.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\?/); 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/rnotwhite.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/\S+/g); 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/graceful-readlink/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/source-map/.gitattributes: -------------------------------------------------------------------------------- 1 | bench/scalajs-runtime-sourcemap.js binary -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/clean-css/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/clean'); 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-cssmin/sample/type.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: red; 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-rename/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | temp/ 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/source-map/.gitattributes: -------------------------------------------------------------------------------- 1 | bench/scalajs-runtime-sourcemap.js binary -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/css/var/rmargin.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^margin/); 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/map-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.12 5 | - "iojs" 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/strundefined.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return typeof undefined; 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-rename/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.9 4 | - 0.10 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/map-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "strict": true 4 | } -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/graceful-readlink/.npmignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | .DS_Store 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-cssmin/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/duplexer2/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/multipipe/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/map-stream/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | node_modules/* 3 | npm_debug.log 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.12 5 | - "iojs" 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/vinyl-sourcemaps-apply/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "node": true, 3 | "strict": true 4 | } -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/xtend/Makefile: -------------------------------------------------------------------------------- 1 | browser: 2 | node ./support/compile 3 | 4 | .PHONY: browser -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-rename/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.9 4 | - 0.10 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/map-stream/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/readable-stream/.npmignore: -------------------------------------------------------------------------------- 1 | build/ 2 | test/ 3 | examples/ 4 | fs.js 5 | zlib.js -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/readable-stream/duplex.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_duplex.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/readable-stream/writable.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_writable.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/class2type.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // [[Class]] -> type pairs 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/concat.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.concat; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/push.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.push; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/slice.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.slice; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/replace-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/replace-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/navbar/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 30px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 30px; 7 | } -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/dateformat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.11" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/minimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/readable-stream/transform.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_transform.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/vinyl/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/css/var/cssExpand.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return [ "Top", "Right", "Bottom", "Left" ]; 3 | }); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/indexOf.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./arr" 3 | ], function( arr ) { 4 | return arr.indexOf; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/pnum.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/).source; 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/beep.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | process.stdout.write('\x07'); 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.12 5 | - "iojs" 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | build/dist 3 | docs 4 | .project 5 | *~ 6 | *.diff 7 | *.patch 8 | .DS_Store 9 | node_modules -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/clone/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - 0.10 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-util/lib/isNull.js: -------------------------------------------------------------------------------- 1 | module.exports = function(v) { 2 | return v === null; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/readable-stream/passthrough.js: -------------------------------------------------------------------------------- 1 | module.exports = require("./lib/_stream_passthrough.js") 2 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/manipulation/var/rcheckableType.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | return (/^(?:checkbox|radio)$/i); 3 | }); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | test -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/replace-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/beep.js: -------------------------------------------------------------------------------- 1 | module.exports = function() { 2 | process.stdout.write('\x07'); 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/replace-ext/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/favicon.ico -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/navbar/navbar.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding: 30px; 3 | } 4 | 5 | .navbar { 6 | margin-bottom: 30px; 7 | } -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/ajax/var/nonce.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core" 3 | ], function( jQuery ) { 4 | return jQuery.now(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/data/var/data_priv.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/data/var/data_user.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../Data" 3 | ], function( Data ) { 4 | return new Data(); 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/graceful-readlink/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "io.js" 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | after_script: 5 | - npm run coveralls -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/deap/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | after_script: 5 | - npm run coveralls 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.6" 4 | - "0.8" 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/core-util-is/README.md: -------------------------------------------------------------------------------- 1 | # core-util-is 2 | 3 | The `util.is*` functions introduced in Node v0.12. 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | - 0.12 5 | - "iojs" 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/minimist/example/parse.js: -------------------------------------------------------------------------------- 1 | var argv = require('../')(process.argv.slice(2)); 2 | console.dir(argv); 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/navbar-fixed-top/navbar-fixed-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | padding-top: 70px; 4 | } 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | build/dist 3 | docs 4 | .project 5 | *~ 6 | *.diff 7 | *.patch 8 | .DS_Store 9 | node_modules -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | install: 5 | - npm install grunt-cli -g 6 | - npm install 7 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.log 3 | node_modules 4 | build 5 | *.node 6 | components 7 | test -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/toString.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.toString; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2012 Robert Kieffer 2 | MIT License - http://opensource.org/licenses/mit-license.php 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/rng.js: -------------------------------------------------------------------------------- 1 | var rb = require('crypto').randomBytes; 2 | module.exports = function() { 3 | return rb(16); 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.9" 4 | - "0.10" 5 | after_script: 6 | - npm run coveralls -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/graceful-readlink/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | - "0.12" 5 | - "io.js" 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | after_script: 5 | - npm run coveralls -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/deap/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | after_script: 5 | - npm run coveralls 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | install: 5 | - npm install grunt-cli -g 6 | - npm install 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/hasOwn.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./class2type" 3 | ], function( class2type ) { 4 | return class2type.hasOwnProperty; 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/rng.js: -------------------------------------------------------------------------------- 1 | var rb = require('crypto').randomBytes; 2 | module.exports = function() { 3 | return rb(16); 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/core/var/rsingleTag.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // Match a standalone tag 3 | return (/^<(\w+)\s*\/?>(?:<\/\1>|)$/); 4 | }); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/var/support.js: -------------------------------------------------------------------------------- 1 | define(function() { 2 | // All support tests are defined in their respective modules. 3 | return {}; 4 | }); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/.bin/rimraf.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\rimraf\bin.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\rimraf\bin.js" %* 5 | ) -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2010-2012 Robert Kieffer 2 | MIT License - http://opensource.org/licenses/mit-license.php 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.9" 4 | - "0.10" 5 | after_script: 6 | - npm run coveralls -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/number-is-nan/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = Number.isNaN || function (x) { 3 | return x !== x; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/images/Banner-02-VS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/images/Banner-02-VS.png -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/.bin/gulp.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\gulp\bin\gulp.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\gulp\bin\gulp.js" %* 5 | ) -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/liftoff/lib/silent_require.js: -------------------------------------------------------------------------------- 1 | module.exports = function (path) { 2 | try { 3 | return require(path); 4 | } catch (e) {} 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/navbar-static-top/navbar-static-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | } 4 | 5 | .navbar-static-top { 6 | margin-bottom: 19px; 7 | } -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/images/Banner-01-Azure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/images/Banner-01-Azure.png -------------------------------------------------------------------------------- /src/Dan.IdentityNPocoStores.Test/Resources/AspNetIdentity.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/Dan.IdentityNPocoStores.Test/Resources/AspNetIdentity.sql -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/js/raw-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/js/raw-files.js -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/bg.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/.bin/rimraf.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\rimraf\bin.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\rimraf\bin.js" %* 5 | ) -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/liftoff/lib/silent_require.js: -------------------------------------------------------------------------------- 1 | module.exports = function (path) { 2 | try { 3 | return require(path); 4 | } catch (e) {} 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/images/ASP-NET-Banners-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/images/ASP-NET-Banners-01.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/images/ASP-NET-Banners-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/images/ASP-NET-Banners-02.png -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/wordwrap/example/meat.js: -------------------------------------------------------------------------------- 1 | var wrap = require('wordwrap')(15); 2 | 3 | console.log(wrap('You and your whole family are made out of meat.')); 4 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | before_script: 6 | - npm install -g grunt-cli 7 | 8 | script: 9 | - grunt test-travis -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/bg.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/milk.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/.bin/gulp.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\gulp\bin\gulp.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\gulp\bin\gulp.js" %* 5 | ) -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-util/lib/noop.js: -------------------------------------------------------------------------------- 1 | var through = require('through2'); 2 | 3 | module.exports = function () { 4 | return through.obj(); 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/navbar-static-top/navbar-static-top.css: -------------------------------------------------------------------------------- 1 | body { 2 | min-height: 2000px; 3 | } 4 | 5 | .navbar-static-top { 6 | margin-bottom: 19px; 7 | } -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /\u001b\[(?:[0-9]{1,3}(?:;[0-9]{1,3})*)?[m|K]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-util/lib/env.js: -------------------------------------------------------------------------------- 1 | var parseArgs = require('minimist'); 2 | var argv = parseArgs(process.argv.slice(2)); 3 | 4 | module.exports = argv; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/wordwrap/example/meat.js: -------------------------------------------------------------------------------- 1 | var wrap = require('wordwrap')(15); 2 | 3 | console.log(wrap('You and your whole family are made out of meat.')); 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/resolve/lib/core.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./core.json').reduce(function (acc, x) { 2 | acc[x] = true; 3 | return acc; 4 | }, {}); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/css/var/rnumnonpx.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../var/pnum" 3 | ], function( pnum ) { 4 | return new RegExp( "^(" + pnum + ")(?!px)[a-z%]+$", "i" ); 5 | }); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %* 3 | ) ELSE ( 4 | node "%~dp0\..\semver\bin\semver" %* 5 | ) -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "excludeFiles": [ 4 | "*.js", 5 | "tests/**/assets", 6 | "node_modules/**" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hammerjs", 3 | "version": "2.0.3", 4 | "main": "hammer.js", 5 | "scripts": [ 6 | "hammer.js" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/checked.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/loading.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/isarray/index.js: -------------------------------------------------------------------------------- 1 | module.exports = Array.isArray || function (arr) { 2 | return Object.prototype.toString.call(arr) == '[object Array]'; 3 | }; 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/vinyl/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/favicon.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/js/raw-files.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/js/raw-files.js -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/hammer.js/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | before_script: 6 | - npm install -g grunt-cli 7 | 8 | script: 9 | - grunt test-travis -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/replace-ext/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.7" 4 | - "0.8" 5 | - "0.9" 6 | - "0.10" 7 | after_script: 8 | - npm run coveralls -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/filesize/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /lib/filesize.min.js 3 | /lib/filesize.map 4 | /src/ 5 | /test/ 6 | .jshintrc 7 | .travis.yml 8 | Gruntfile.js 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/replace-ext/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.7" 4 | - "0.8" 5 | - "0.9" 6 | - "0.10" 7 | after_script: 8 | - npm run coveralls -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/tildify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var userHome = require('user-home'); 3 | 4 | module.exports = function (str) { 5 | return str.replace(userHome, '~'); 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | .starter-template { 5 | padding: 40px 15px; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/unchecked.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/bg.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/page.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/left_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/left_white.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/right_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/milk/right_white.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/hammer.js/.jscsrc: -------------------------------------------------------------------------------- 1 | { 2 | "preset": "google", 3 | "excludeFiles": [ 4 | "*.js", 5 | "tests/**/assets", 6 | "node_modules/**" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/hammer.js/component.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hammerjs", 3 | "version": "2.0.3", 4 | "main": "hammer.js", 5 | "scripts": [ 6 | "hammer.js" 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/bg.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/traversing/var/rneedsContext.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../../core", 3 | "../../selector" 4 | ], function( jQuery ) { 5 | return jQuery.expr.match.needsContext; 6 | }); 7 | -------------------------------------------------------------------------------- /src/EFIdentity/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/help.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/time.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/replace-ext/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.7" 4 | - "0.8" 5 | - "0.9" 6 | - "0.10" 7 | after_script: 8 | - npm run coveralls -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/filesize/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /lib/filesize.min.js 3 | /lib/filesize.map 4 | /src/ 5 | /test/ 6 | .jshintrc 7 | .travis.yml 8 | Gruntfile.js 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-util/lib/isStream.js: -------------------------------------------------------------------------------- 1 | var Stream = require('stream').Stream; 2 | 3 | module.exports = function(o) { 4 | return !!o && o instanceof Stream; 5 | }; 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/replace-ext/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.7" 4 | - "0.8" 5 | - "0.9" 6 | - "0.10" 7 | after_script: 8 | - npm run coveralls -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/.bin/semver.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\semver\bin\semver" %* 3 | ) ELSE ( 4 | node "%~dp0\..\semver\bin\semver" %* 5 | ) -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/starter-template/starter-template.css: -------------------------------------------------------------------------------- 1 | body { 2 | padding-top: 50px; 3 | } 4 | .starter-template { 5 | padding: 40px 15px; 6 | text-align: center; 7 | } 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/bg.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/milk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/milk.png -------------------------------------------------------------------------------- /src/EFIdentity/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl-fs/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | src: require('./lib/src'), 5 | dest: require('./lib/dest'), 6 | watch: require('glob-watcher') 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('[data-toggle=offcanvas]').click(function() { 3 | $('.row-offcanvas').toggleClass('active'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/fonts/Anorexia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/fonts/Anorexia.ttf -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/images/button.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/favicon.ico -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/tildify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var userHome = require('user-home'); 3 | 4 | module.exports = function (str) { 5 | return str.replace(userHome, '~'); 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/grid.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/theme.jpg -------------------------------------------------------------------------------- /NuGet.Config: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hammerjs", 3 | "version": "2.0.4", 4 | "main": "hammer.js", 5 | "ignore": [ 6 | "tests", 7 | "src" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Error"; 3 | } 4 | 5 |

Error.

6 |

An error occurred while processing your request.

7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/jumbotron/jumbotron.css: -------------------------------------------------------------------------------- 1 | /* Move down content because we have a fixed navbar that is 50px tall */ 2 | body { 3 | padding-top: 50px; 4 | padding-bottom: 20px; 5 | } 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sign-in.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/checked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/checked.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/loading.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/bg.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/left_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/left_white.png -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "About"; 3 | } 4 |

@ViewData["Title"].

5 |

@ViewData["Message"]

6 | 7 |

Use this area to provide additional information.

8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl-fs/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = { 4 | src: require('./lib/src'), 5 | dest: require('./lib/dest'), 6 | watch: require('glob-watcher') 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/offcanvas/offcanvas.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | $('[data-toggle=offcanvas]').click(function() { 3 | $('.row-offcanvas').toggleClass('active'); 4 | }); 5 | }); -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/carousel.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/jumbotron.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/offcanvas.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/unchecked.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/unchecked.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/page.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/page.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/sf.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/right_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/milk/right_white.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/errorIcon.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/infoIcon.png -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var uglfiy = require('uglify-js'); 3 | var minifier = require('./minifier'); 4 | 5 | module.exports = function(opts) { 6 | return minifier(opts, uglfiy); 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl-fs/lib/src/getContents/readDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function readDir(file, cb) { 4 | // do nothing for now 5 | cb(null, file); 6 | } 7 | 8 | module.exports = readDir; 9 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar-fixed.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/hammer.js/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "hammerjs", 3 | "version": "2.0.4", 4 | "main": "hammer.js", 5 | "ignore": [ 6 | "tests", 7 | "src" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/header1.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/blank.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/help.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/time.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/time.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/test/firebug/warningIcon.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery/src/event/support.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "../var/support" 3 | ], function( support ) { 4 | 5 | support.focusinBubbles = "onfocusin" in window; 6 | 7 | return support; 8 | 9 | }); 10 | -------------------------------------------------------------------------------- /src/Dan.IdentityNPocoStores.Test/Resources/AspNetIdentityDrop.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE AspNetRoleClaims 2 | DROP TABLE AspNetUserClaims 3 | DROP TABLE AspNetUserLogins 4 | DROP TABLE AspNetUserRoles 5 | DROP TABLE AspNetRoles 6 | DROP TABLE AspNetUsers -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function () { 3 | return /(?:(?:\u001b\[)|\u009b)(?:(?:[0-9]{1,3})?(?:(?:;[0-9]{0,3})*)?[A-M|f-m])|\u001b[A-M]/g; 4 | }; 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/justified-nav.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/navbar-static.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/non-responsive.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/fonts/Anorexia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/fonts/Anorexia.ttf -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/images/button.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/cmxform-divider.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/images/cmxform-fieldset.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/favicon.ico -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step1-24.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step2-24.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/step3-24.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/toggle.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/warning.gif -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var uglfiy = require('uglify-js'); 3 | var minifier = require('./minifier'); 4 | 5 | module.exports = function(opts) { 6 | return minifier(opts, uglfiy); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/has-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex'); 3 | var re = new RegExp(ansiRegex().source); // remove the `g` flag 4 | module.exports = re.test.bind(re); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl-fs/lib/src/getContents/readDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | function readDir(file, cb) { 4 | // do nothing for now 5 | cb(null, file); 6 | } 7 | 8 | module.exports = readDir; 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/jumbotron-narrow.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/starter-template.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/tab-sprite.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/tab_green.gif -------------------------------------------------------------------------------- /src/EFIdentity/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/EFIdentity/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/dateformat/test/weekofyear/test_weekofyear.js: -------------------------------------------------------------------------------- 1 | var dateFormat = require('../lib/dateformat.js'); 2 | 3 | var val = process.argv[2] || new Date(); 4 | console.log(dateFormat(val, 'W')); 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/dist/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/examples/screenshots/sticky-footer-navbar.jpg -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/login/images/required_star.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/back_nav_blue.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/button-submit.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/login-sprite.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/logo_marketo.gif -------------------------------------------------------------------------------- /src/EFIdentity/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation-unobtrusive/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ====== 3 | 4 | Information on contributing to this repo is in the [Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md) in the Home repo. 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Account/ForgotPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Forgot Password Confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Please check your email to reset your password. 8 |

9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/multipipe/Makefile: -------------------------------------------------------------------------------- 1 | 2 | node_modules: package.json 3 | @npm install 4 | 5 | test: 6 | @./node_modules/.bin/mocha \ 7 | --reporter spec \ 8 | --timeout 100 9 | 10 | .PHONY: test -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-114-precomposed.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-144-precomposed.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-57-precomposed.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/bootstrap/assets/ico/apple-touch-icon-72-precomposed.png -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/back_green-fade.gif -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var uglfiy = require('uglify-js'); 3 | var minifier = require('./minifier'); 4 | 5 | module.exports = function(opts) { 6 | return minifier(opts, uglfiy); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/vinyl/lib/cloneBuffer.js: -------------------------------------------------------------------------------- 1 | var Buffer = require('buffer').Buffer; 2 | 3 | module.exports = function(buf) { 4 | var out = new Buffer(buf.length); 5 | buf.copy(out); 6 | return out; 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/backRequiredGray.gif -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/tinymce/themes/simple/img/icons.gif -------------------------------------------------------------------------------- /src/EFIdentity/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using EFIdentity 2 | @using EFIdentity.Models 3 | @using EFIdentity.ViewModels.Account 4 | @using EFIdentity.ViewModels.Manage 5 | @using Microsoft.AspNet.Identity 6 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/deap/.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 | npm-debug.log 15 | /node_modules 16 | /coverage 17 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Account/ExternalLoginFailure.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Login Failure"; 3 | } 4 | 5 |
6 |

@ViewData["Title"].

7 |

Unsuccessful login with service.

8 |
9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var ansiRegex = require('ansi-regex')(); 3 | 4 | module.exports = function (str) { 5 | return typeof str === 'string' ? str.replace(ansiRegex, '') : str; 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation-unobtrusive/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Contributing 2 | ====== 3 | 4 | Information on contributing to this repo is in the [Contributing Guide](https://github.com/aspnet/Home/blob/master/CONTRIBUTING.md) in the Home repo. 5 | -------------------------------------------------------------------------------- /src/EFIdentity/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "Data": { 3 | "DefaultConnection": { 4 | "ConnectionString": "Server=(local);Initial Catalog=IdentityNPocoStores;Integrated Security=SSPI;Trusted_Connection=True;MultipleActiveResultSets=true" 5 | } 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using IdentityNPocoStores 2 | @using IdentityNPocoStores.ViewModels.Account 3 | @using IdentityNPocoStores.ViewModels.Manage 4 | @using Microsoft.AspNet.Identity 5 | @addTagHelper "*, Microsoft.AspNet.Mvc.TagHelpers" 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var uglfiy = require('uglify-js'); 3 | var minifier = require('./minifier'); 4 | 5 | module.exports = function(opts) { 6 | return minifier(opts, uglfiy); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/danclarke/AspNetIdentity3NPOCODataStores/HEAD/src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/marketo/images/left-nav-callout-long.png -------------------------------------------------------------------------------- /src/EFIdentity/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Locked out"; 3 | } 4 | 5 |
6 |

Locked out.

7 |

This account has been locked out, please try again later.

8 |
9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | pids 10 | logs 11 | results 12 | npm-debug.log 13 | node_modules 14 | /test/output.js 15 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./lib/core'); 2 | exports = module.exports = require('./lib/async'); 3 | exports.core = core; 4 | exports.isCore = function (x) { return core[x] }; 5 | exports.sync = require('./lib/sync'); 6 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/deap/.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 | npm-debug.log 15 | /node_modules 16 | /coverage 17 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/gulp-uglify/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Account/Lockout.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Locked out"; 3 | } 4 | 5 |
6 |

Locked out.

7 |

This account has been locked out, please try again later.

8 |
9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/uglify-to-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | pids 10 | logs 11 | results 12 | npm-debug.log 13 | node_modules 14 | /test/output.js 15 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/resolve/index.js: -------------------------------------------------------------------------------- 1 | var core = require('./lib/core'); 2 | exports = module.exports = require('./lib/async'); 3 | exports.core = core; 4 | exports.isCore = function (x) { return core[x] }; 5 | exports.sync = require('./lib/sync'); 6 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "version": "0.0.0", 4 | "devDependencies": { 5 | "gulp": "3.8.11", 6 | "gulp-concat": "2.5.2", 7 | "gulp-cssmin": "0.1.7", 8 | "gulp-uglify": "1.2.0", 9 | "rimraf": "2.2.8" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/captcha/newsession.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/uuid/benchmark/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "benchmark-uuid", 3 | "private": true, 4 | "description": "Benchmarks for node-uuid", 5 | "dependencies": { 6 | "uuid": "^1.4.1", 7 | "uuid-js": "^0.7.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/wwwroot/lib/jquery-validation/demo/captcha/newsession.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl-fs/lib/dest/writeContents/writeDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var mkdirp = require('mkdirp'); 4 | 5 | function writeDir (writePath, file, cb) { 6 | mkdirp(writePath, file.stat.mode, cb); 7 | } 8 | 9 | module.exports = writeDir; 10 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/array-differ/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = function (arr) { 3 | var rest = [].concat.apply([], [].slice.call(arguments, 1)); 4 | return arr.filter(function (el) { 5 | return rest.indexOf(el) === -1; 6 | }); 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ASP.NET", 3 | "version": "0.0.0", 4 | "devDependencies": { 5 | "gulp": "3.8.11", 6 | "gulp-concat": "2.5.2", 7 | "gulp-cssmin": "0.1.7", 8 | "gulp-uglify": "1.2.0", 9 | "rimraf": "2.2.8" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/source-map/build/test-prefix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING! 3 | * 4 | * Do not edit this file directly, it is built from the sources at 5 | * https://github.com/mozilla/source-map/ 6 | */ 7 | 8 | Components.utils.import('resource://test/Utils.jsm'); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/source-map/build/test-prefix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING! 3 | * 4 | * Do not edit this file directly, it is built from the sources at 5 | * https://github.com/mozilla/source-map/ 6 | */ 7 | 8 | Components.utils.import('resource://test/Utils.jsm'); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/source-map/build/test-prefix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING! 3 | * 4 | * Do not edit this file directly, it is built from the sources at 5 | * https://github.com/mozilla/source-map/ 6 | */ 7 | 8 | Components.utils.import('resource://test/Utils.jsm'); 9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/bootstrap/bower.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "bootstrap", 3 | "version": "3.0.0", 4 | "main": ["./dist/js/bootstrap.js", "./dist/css/bootstrap.css"], 5 | "ignore": [ 6 | "**/.*" 7 | ], 8 | "dependencies": { 9 | "jquery": ">= 1.9.0" 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/hammer.js/.gitignore: -------------------------------------------------------------------------------- 1 | # ide 2 | .idea 3 | .iml 4 | 5 | # node 6 | lib-cov 7 | *.seed 8 | *.log 9 | *.csv 10 | *.dat 11 | *.out 12 | *.pid 13 | *.gz 14 | 15 | pids 16 | logs 17 | results 18 | tests/build.js 19 | 20 | npm-debug.log 21 | node_modules 22 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery-validation/demo/css/screen.css: -------------------------------------------------------------------------------- 1 | /********************************** 2 | 3 | Use: Main Screen Import 4 | 5 | ***********************************/ 6 | 7 | @import "reset.css"; 8 | @import "core.css"; 9 | 10 | @import "cmxformTemplate.css"; 11 | @import "cmxform.css"; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/uuid/benchmark/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "benchmark-uuid", 3 | "private": true, 4 | "description": "Benchmarks for node-uuid", 5 | "dependencies": { 6 | "uuid": "^1.4.1", 7 | "uuid-js": "^0.7.4" 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /src/EFIdentity/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Reset password confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Your password has been reset. Please Click here to log in. 8 |

9 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-cssmin/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/wwwroot/lib/jquery/src/attributes.js: -------------------------------------------------------------------------------- 1 | define([ 2 | "./core", 3 | "./attributes/attr", 4 | "./attributes/prop", 5 | "./attributes/classes", 6 | "./attributes/val" 7 | ], function( jQuery ) { 8 | 9 | // Return jQuery for attributes-only inclusion 10 | return jQuery; 11 | }); 12 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl-fs/lib/dest/writeContents/writeDir.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var mkdirp = require('mkdirp'); 4 | 5 | function writeDir (writePath, file, cb) { 6 | mkdirp(writePath, file.stat.mode, cb); 7 | } 8 | 9 | module.exports = writeDir; 10 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-concat/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; 8 | -------------------------------------------------------------------------------- /src/EFIdentity/node_modules/gulp-uglify/node_modules/gulp-util/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; 8 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/Views/Account/ResetPasswordConfirmation.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Reset password confirmation"; 3 | } 4 | 5 |

@ViewData["Title"].

6 |

7 | Your password has been reset. Please Click here to log in. 8 |

9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/source-map/build/test-prefix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING! 3 | * 4 | * Do not edit this file directly, it is built from the sources at 5 | * https://github.com/mozilla/source-map/ 6 | */ 7 | 8 | Components.utils.import('resource://test/Utils.jsm'); 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-concat/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/minimist/test/whitespace.js: -------------------------------------------------------------------------------- 1 | var parse = require('../'); 2 | var test = require('tape'); 3 | 4 | test('whitespace should be whitespace' , function (t) { 5 | t.plan(1); 6 | var x = parse([ '-x', '\t' ]).x; 7 | t.equal(x, '\t'); 8 | }); 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/source-map/build/test-prefix.js: -------------------------------------------------------------------------------- 1 | /* 2 | * WARNING! 3 | * 4 | * Do not edit this file directly, it is built from the sources at 5 | * https://github.com/mozilla/source-map/ 6 | */ 7 | 8 | Components.utils.import('resource://test/Utils.jsm'); 9 | -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-cssmin/node_modules/vinyl/lib/isBuffer.js: -------------------------------------------------------------------------------- 1 | var buf = require('buffer'); 2 | var Buffer = buf.Buffer; 3 | 4 | // could use Buffer.isBuffer but this is the same exact thing... 5 | module.exports = function(o) { 6 | return typeof o === 'object' && o instanceof Buffer; 7 | }; -------------------------------------------------------------------------------- /src/IdentityNPocoStores/node_modules/gulp-uglify/node_modules/is-finite/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | var numberIsNan = require('number-is-nan'); 3 | 4 | module.exports = Number.isFinite || function (val) { 5 | return !(typeof val !== 'number' || numberIsNan(val) || val === Infinity || val === -Infinity); 6 | }; 7 | --------------------------------------------------------------------------------