├── .gitignore ├── MvcSolution.Data ├── Entities │ ├── Framework │ │ ├── EntityBase.cs │ │ └── IValidateEntity.cs │ ├── Image.cs │ ├── Role.cs │ ├── Setting.cs │ ├── Tag.cs │ ├── User.cs │ ├── UserRoleRL.cs │ └── UserTagRL.cs ├── EntityExtensions │ ├── EntityBaseExtensions.cs │ ├── RoleExtensions.cs │ └── UserExtensions.cs ├── Enums │ ├── Gender.cs │ ├── ImageSize.cs │ └── ImageType.cs ├── Mappings │ ├── Extensions │ │ └── EntityTypeConfigurationExtensions.cs │ ├── ImageMapping.cs │ ├── RoleMapping.cs │ ├── SettingMapping.cs │ ├── TagMapping.cs │ ├── UserMapping.cs │ ├── UserRoleRLMapping.cs │ └── UserTagRLMapping.cs ├── MvcSolution.Data.csproj ├── MvcSolution.Data.csproj.DotSettings ├── MvcSolution.Data.csproj.user ├── MvcSolutionDbContext.cs └── Properties │ └── AssemblyInfo.cs ├── MvcSolution.Infrastructure ├── AppContext.cs ├── Core │ ├── DisposableBase.cs │ ├── KnownException.cs │ └── SimpleEntity.cs ├── Extensions │ ├── AssemblyExtensions.cs │ ├── CollectionExtensions.cs │ ├── DateTimeExtensions.cs │ ├── DecimalExtentions.cs │ ├── EnumerableExtensions.cs │ ├── ExceptionExtension.cs │ ├── NullableExtensions.cs │ ├── RouteCollectionExtensions.cs │ ├── SqlBulkCopyExtensions.cs │ ├── StringExtensions.cs │ └── TypeExtensions.cs ├── Imaging │ ├── Base64Image.cs │ ├── ImageExtensions.cs │ ├── ImageFormatExtensions.cs │ └── SizeExtensions.cs ├── Ioc │ ├── Ioc.cs │ └── UnityContainerExtensions.cs ├── Logging │ ├── FileLogger.cs │ ├── ILogger.cs │ └── LogHelper.cs ├── Mvc │ ├── HtmlHelperExtensions.cs │ ├── IStandardResult.cs │ ├── StandardJsonResult.cs │ └── StandardResult.cs ├── MvcSolution.Infrastructure.csproj ├── MvcSolution.Infrastructure.csproj.DotSettings ├── MvcSolution.Infrastructure.csproj.user ├── Paging │ ├── OrderByExpression.cs │ ├── PageRequest.cs │ ├── PageResult.cs │ └── SortDirection.cs ├── Properties │ └── AssemblyInfo.cs ├── Security │ └── CryptoService.cs └── Utilities │ ├── IoHelper.cs │ ├── IpHelper.cs │ ├── Serializer.cs │ └── SqlHelper.cs ├── MvcSolution.Services ├── Dtos │ ├── ImageDataDto.cs │ └── SessionUser.cs ├── Helpers │ └── ImageHelper.cs ├── IImageService.cs ├── ISettingService.cs ├── IUserService.cs ├── Implementations │ ├── ImageService.cs │ ├── SettingService.cs │ └── UserService.cs ├── MvcSolution.Services.csproj ├── MvcSolution.Services.csproj.DotSettings ├── Properties │ └── AssemblyInfo.cs ├── ServiceBase.cs └── Settings │ └── SettingContext.cs ├── MvcSolution.Web.Main ├── Areas │ ├── Admin │ │ ├── Views │ │ │ ├── Role │ │ │ │ ├── Add.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── UsersList.cshtml │ │ │ ├── Setting │ │ │ │ └── Index.cshtml │ │ │ ├── Tag │ │ │ │ └── List.cshtml │ │ │ ├── User │ │ │ │ ├── Editor.cshtml │ │ │ │ ├── Index.cshtml │ │ │ │ └── List.cshtml │ │ │ ├── Web.config │ │ │ ├── _Shared │ │ │ │ ├── Layout.cshtml │ │ │ │ └── Menu.cshtml │ │ │ └── _ViewStart.cshtml │ │ ├── css │ │ │ ├── image-viewer.css │ │ │ ├── images │ │ │ │ ├── arrow-right-b.png │ │ │ │ ├── arrows-l.png │ │ │ │ ├── arrows-s.png │ │ │ │ ├── bg-grid.png │ │ │ │ ├── close-top-right.png │ │ │ │ ├── file-excel-128.png │ │ │ │ ├── file-word-128.png │ │ │ │ ├── iphone5s.png │ │ │ │ ├── loading_1.gif │ │ │ │ ├── marker.png │ │ │ │ ├── menu-more.png │ │ │ │ ├── modal-black.png │ │ │ │ ├── modal-black80.png │ │ │ │ ├── modal.png │ │ │ │ ├── progressing.gif │ │ │ │ ├── remove-42.png │ │ │ │ ├── remove16.png │ │ │ │ ├── sort-asc.png │ │ │ │ ├── sort-desc.png │ │ │ │ ├── sort-none.png │ │ │ │ ├── toast.png │ │ │ │ └── zooms.png │ │ │ └── pages │ │ │ │ ├── role-index.css │ │ │ │ └── user-index.css │ │ └── js │ │ │ ├── core.js │ │ │ ├── role │ │ │ └── index.js │ │ │ ├── setting │ │ │ └── index.js │ │ │ └── user │ │ │ └── index.js │ └── Public │ │ ├── Views │ │ ├── Account │ │ │ ├── Login.cshtml │ │ │ ├── RegisterStep1.cshtml │ │ │ └── RegisterStep2.cshtml │ │ ├── Home │ │ │ ├── Contact.cshtml │ │ │ ├── Doc.cshtml │ │ │ ├── Index.cshtml │ │ │ └── Source.cshtml │ │ ├── Web.config │ │ ├── _Shared │ │ │ ├── Error.cshtml │ │ │ ├── Layout.cshtml │ │ │ ├── Menu.cshtml │ │ │ └── Message.cshtml │ │ └── _ViewStart.cshtml │ │ ├── css │ │ ├── core.css │ │ ├── images │ │ │ ├── arrow-right-b.png │ │ │ ├── arrows-l.png │ │ │ ├── arrows-s.png │ │ │ ├── bg-grid.png │ │ │ ├── close-top-right.png │ │ │ ├── file-excel-128.png │ │ │ ├── file-word-128.png │ │ │ ├── iphone5s.png │ │ │ ├── loading_1.gif │ │ │ ├── marker.png │ │ │ ├── menu-more.png │ │ │ ├── modal-black.png │ │ │ ├── modal-black80.png │ │ │ ├── modal.png │ │ │ ├── progressing.gif │ │ │ ├── remove-42.png │ │ │ ├── remove16.png │ │ │ ├── sort-asc.png │ │ │ ├── sort-desc.png │ │ │ ├── sort-none.png │ │ │ ├── toast.png │ │ │ └── zooms.png │ │ ├── pad.css │ │ └── pages │ │ │ ├── account-register-step1.css │ │ │ └── account-register-step2.css │ │ └── js │ │ ├── account │ │ ├── login.js │ │ ├── register-step1.js │ │ └── register-step2.js │ │ └── core.js ├── Global.asax ├── Global.asax.cs ├── MvcSolution.Web.Main.csproj ├── MvcSolution.Web.Main.csproj.user ├── Properties │ ├── AssemblyInfo.cs │ └── PublishProfiles │ │ ├── leo-laptop.pubxml │ │ └── leo-laptop.pubxml.user ├── Web.Debug.config ├── Web.Release.config ├── Web.config ├── _grunt │ ├── Gruntfile.js │ ├── debug.bat │ ├── node_modules │ │ ├── grunt-contrib-concat │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── concat-examples.md │ │ │ │ ├── concat-options.md │ │ │ │ └── concat-overview.md │ │ │ ├── package.json │ │ │ ├── tasks │ │ │ │ ├── concat.js │ │ │ │ └── lib │ │ │ │ │ └── comment.js │ │ │ └── test │ │ │ │ ├── concat_test.js │ │ │ │ ├── expected │ │ │ │ ├── custom_options │ │ │ │ ├── default_options │ │ │ │ └── handling_invalid_files │ │ │ │ └── fixtures │ │ │ │ ├── banner.js │ │ │ │ ├── banner2.js │ │ │ │ ├── banner3.js │ │ │ │ ├── file1 │ │ │ │ └── file2 │ │ ├── grunt-contrib-cssmin │ │ │ ├── .editorconfig │ │ │ ├── .gitattributes │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── cssmin-examples.md │ │ │ │ ├── cssmin-options.md │ │ │ │ ├── cssmin-overview.md │ │ │ │ └── overview.md │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── cleancss │ │ │ │ │ └── cleancss.cmd │ │ │ │ ├── clean-css │ │ │ │ │ ├── History.md │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── cleancss │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── clean.js │ │ │ │ │ │ ├── colors │ │ │ │ │ │ │ ├── hsl-to-hex.js │ │ │ │ │ │ │ ├── long-to-short-hex.js │ │ │ │ │ │ │ ├── rgb-to-hex.js │ │ │ │ │ │ │ └── shortener.js │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ ├── url-rebase.js │ │ │ │ │ │ │ └── url-rewriter.js │ │ │ │ │ │ ├── imports │ │ │ │ │ │ │ └── inliner.js │ │ │ │ │ │ ├── properties │ │ │ │ │ │ │ ├── optimizer.js │ │ │ │ │ │ │ └── shorthand-notations.js │ │ │ │ │ │ ├── selectors │ │ │ │ │ │ │ ├── empty-removal.js │ │ │ │ │ │ │ ├── optimizer.js │ │ │ │ │ │ │ └── tokenizer.js │ │ │ │ │ │ └── text │ │ │ │ │ │ │ ├── comments.js │ │ │ │ │ │ │ ├── escape-store.js │ │ │ │ │ │ │ ├── expressions.js │ │ │ │ │ │ │ ├── free.js │ │ │ │ │ │ │ └── urls.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── commander │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ └── grunt-lib-contrib │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ └── contrib.js │ │ │ │ │ ├── node_modules │ │ │ │ │ └── zlib-browserify │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ ├── test │ │ │ │ │ │ └── zlib.test.js │ │ │ │ │ │ └── zlib.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ └── lib_test.js │ │ │ ├── package.json │ │ │ ├── tasks │ │ │ │ └── cssmin.js │ │ │ └── test │ │ │ │ ├── cssmin_test.js │ │ │ │ ├── expected │ │ │ │ ├── inline_import.css │ │ │ │ ├── input_bannered.css │ │ │ │ ├── style.css │ │ │ │ └── with-banner.css │ │ │ │ └── fixtures │ │ │ │ ├── inner │ │ │ │ ├── input_inline_import.css │ │ │ │ └── input_inline_import2.css │ │ │ │ ├── input_bannered.css │ │ │ │ ├── input_inline_import.css │ │ │ │ ├── input_inline_import2.css │ │ │ │ ├── input_one.css │ │ │ │ └── input_two.css │ │ ├── grunt-contrib-jshint │ │ │ ├── .jshintignore │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── jshint-examples.md │ │ │ │ ├── jshint-options.md │ │ │ │ └── jshint-overview.md │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── jshint │ │ │ │ │ └── jshint.cmd │ │ │ │ └── jshint │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ ├── apply │ │ │ │ │ ├── build │ │ │ │ │ ├── changelog │ │ │ │ │ ├── jshint │ │ │ │ │ └── land │ │ │ │ │ ├── data │ │ │ │ │ ├── ascii-identifier-data.js │ │ │ │ │ ├── non-ascii-identifier-part-only.js │ │ │ │ │ └── non-ascii-identifier-start.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ ├── shjs │ │ │ │ │ │ └── shjs.cmd │ │ │ │ │ ├── cli │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cli.js │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── cat.js │ │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ │ ├── echo.js │ │ │ │ │ │ │ ├── glob.js │ │ │ │ │ │ │ ├── long_desc.js │ │ │ │ │ │ │ ├── progress.js │ │ │ │ │ │ │ ├── sort.js │ │ │ │ │ │ │ ├── spinner.js │ │ │ │ │ │ │ ├── static.coffee │ │ │ │ │ │ │ └── static.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── glob │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ │ │ └── usr-local.js │ │ │ │ │ │ │ │ ├── glob.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── inherits │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ │ ├── inherits_browser.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ │ │ │ ├── bash-results.json │ │ │ │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ │ │ │ ├── globstar-match.js │ │ │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ │ │ ├── new-glob-optional-options.js │ │ │ │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ │ │ │ ├── root.js │ │ │ │ │ │ │ │ ├── stat.js │ │ │ │ │ │ │ │ └── zz-cleanup.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── console-browserify │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .testem.json │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── static │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ └── test-adapter.js │ │ │ │ │ ├── minimatch │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ │ └── defaults.js │ │ │ │ │ ├── shelljs │ │ │ │ │ │ ├── .documentup.json │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── shjs │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ ├── jshint.json │ │ │ │ │ │ ├── make.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── scripts │ │ │ │ │ │ │ ├── docs.js │ │ │ │ │ │ │ └── run-tests.js │ │ │ │ │ │ ├── shell.js │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── cat.js │ │ │ │ │ │ │ ├── cd.js │ │ │ │ │ │ │ ├── chmod.js │ │ │ │ │ │ │ ├── config.js │ │ │ │ │ │ │ ├── cp.js │ │ │ │ │ │ │ ├── dirs.js │ │ │ │ │ │ │ ├── echo.js │ │ │ │ │ │ │ ├── env.js │ │ │ │ │ │ │ ├── exec.js │ │ │ │ │ │ │ ├── find.js │ │ │ │ │ │ │ ├── grep.js │ │ │ │ │ │ │ ├── ls.js │ │ │ │ │ │ │ ├── make.js │ │ │ │ │ │ │ ├── mkdir.js │ │ │ │ │ │ │ ├── mv.js │ │ │ │ │ │ │ ├── popd.js │ │ │ │ │ │ │ ├── pushd.js │ │ │ │ │ │ │ ├── pwd.js │ │ │ │ │ │ │ ├── resources │ │ │ │ │ │ │ ├── a.txt │ │ │ │ │ │ │ ├── chmod │ │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ │ │ └── c │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ │ │ └── a │ │ │ │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ ├── c │ │ │ │ │ │ │ │ │ └── a │ │ │ │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ │ │ └── .npmignore │ │ │ │ │ │ │ │ └── file1 │ │ │ │ │ │ │ ├── cp │ │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ │ ├── dir_a │ │ │ │ │ │ │ │ │ └── z │ │ │ │ │ │ │ │ └── dir_b │ │ │ │ │ │ │ │ │ └── dir_b_a │ │ │ │ │ │ │ │ │ └── dir_b_a_a │ │ │ │ │ │ │ │ │ └── z │ │ │ │ │ │ │ ├── external │ │ │ │ │ │ │ │ └── node_script.js │ │ │ │ │ │ │ ├── file1 │ │ │ │ │ │ │ ├── file1.js │ │ │ │ │ │ │ ├── file1.txt │ │ │ │ │ │ │ ├── file2 │ │ │ │ │ │ │ ├── file2.js │ │ │ │ │ │ │ ├── file2.txt │ │ │ │ │ │ │ ├── find │ │ │ │ │ │ │ │ ├── .hidden │ │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ │ ├── b │ │ │ │ │ │ │ │ ├── dir1 │ │ │ │ │ │ │ │ │ ├── a_dir1 │ │ │ │ │ │ │ │ │ └── dir11 │ │ │ │ │ │ │ │ │ │ └── a_dir11 │ │ │ │ │ │ │ │ └── dir2 │ │ │ │ │ │ │ │ │ └── a_dir1 │ │ │ │ │ │ │ ├── issue44 │ │ │ │ │ │ │ │ └── main.js │ │ │ │ │ │ │ ├── ls │ │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ │ │ └── nada │ │ │ │ │ │ │ │ ├── .hidden_file │ │ │ │ │ │ │ │ ├── a_dir │ │ │ │ │ │ │ │ │ ├── .hidden_dir │ │ │ │ │ │ │ │ │ │ └── nada │ │ │ │ │ │ │ │ │ ├── b_dir │ │ │ │ │ │ │ │ │ │ └── z │ │ │ │ │ │ │ │ │ └── nada │ │ │ │ │ │ │ │ ├── file1 │ │ │ │ │ │ │ │ ├── file1.js │ │ │ │ │ │ │ │ ├── file2 │ │ │ │ │ │ │ │ ├── file2.js │ │ │ │ │ │ │ │ └── filename(with)[chars$]^that.must+be-escaped │ │ │ │ │ │ │ └── pushd │ │ │ │ │ │ │ │ ├── a │ │ │ │ │ │ │ │ └── dummy │ │ │ │ │ │ │ │ └── b │ │ │ │ │ │ │ │ └── c │ │ │ │ │ │ │ │ └── dummy │ │ │ │ │ │ │ ├── rm.js │ │ │ │ │ │ │ ├── sed.js │ │ │ │ │ │ │ ├── tempdir.js │ │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ │ ├── to.js │ │ │ │ │ │ │ └── which.js │ │ │ │ │ └── underscore │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CNAME │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── underscore-min.js │ │ │ │ │ │ └── underscore.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── src │ │ │ │ │ ├── cli.js │ │ │ │ │ ├── jshint.js │ │ │ │ │ ├── lex.js │ │ │ │ │ ├── messages.js │ │ │ │ │ ├── platforms │ │ │ │ │ └── rhino.js │ │ │ │ │ ├── reg.js │ │ │ │ │ ├── reporters │ │ │ │ │ ├── checkstyle.js │ │ │ │ │ ├── default.js │ │ │ │ │ ├── jslint_xml.js │ │ │ │ │ └── non_error.js │ │ │ │ │ ├── state.js │ │ │ │ │ ├── style.js │ │ │ │ │ └── vars.js │ │ │ ├── package.json │ │ │ ├── tasks │ │ │ │ ├── jshint.js │ │ │ │ └── lib │ │ │ │ │ └── jshint.js │ │ │ └── test │ │ │ │ ├── fixtures │ │ │ │ ├── dontlint.txt │ │ │ │ ├── lint.txt │ │ │ │ ├── missingsemicolon.js │ │ │ │ └── nodemodule.js │ │ │ │ └── jshint_test.js │ │ ├── grunt-contrib-uglify │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── uglify-examples.md │ │ │ │ ├── uglify-options.md │ │ │ │ └── uglify-overview.md │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── uglifyjs │ │ │ │ │ └── uglifyjs.cmd │ │ │ │ ├── grunt-lib-contrib │ │ │ │ │ ├── .gitattributes │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CHANGELOG │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── contrib.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── zlib-browserify │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── readme.md │ │ │ │ │ │ │ ├── test │ │ │ │ │ │ │ └── zlib.test.js │ │ │ │ │ │ │ └── zlib.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ └── lib_test.js │ │ │ │ └── uglify-js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bin │ │ │ │ │ └── uglifyjs │ │ │ │ │ ├── lib │ │ │ │ │ ├── ast.js │ │ │ │ │ ├── compress.js │ │ │ │ │ ├── mozilla-ast.js │ │ │ │ │ ├── output.js │ │ │ │ │ ├── parse.js │ │ │ │ │ ├── scope.js │ │ │ │ │ ├── sourcemap.js │ │ │ │ │ ├── transform.js │ │ │ │ │ └── utils.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── optimist │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ │ ├── boolean_double.js │ │ │ │ │ │ │ ├── boolean_single.js │ │ │ │ │ │ │ ├── default_hash.js │ │ │ │ │ │ │ ├── default_singles.js │ │ │ │ │ │ │ ├── divide.js │ │ │ │ │ │ │ ├── line_count.js │ │ │ │ │ │ │ ├── line_count_options.js │ │ │ │ │ │ │ ├── line_count_wrap.js │ │ │ │ │ │ │ ├── nonopt.js │ │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ │ ├── short.js │ │ │ │ │ │ │ ├── string.js │ │ │ │ │ │ │ ├── usage-options.js │ │ │ │ │ │ │ └── xup.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── wordwrap │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── center.js │ │ │ │ │ │ │ │ └── meat.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── break.js │ │ │ │ │ │ │ │ ├── idleness.txt │ │ │ │ │ │ │ │ └── wrap.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── readme.markdown │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── _.js │ │ │ │ │ │ │ ├── _ │ │ │ │ │ │ │ ├── argv.js │ │ │ │ │ │ │ └── bin.js │ │ │ │ │ │ │ ├── parse.js │ │ │ │ │ │ │ └── usage.js │ │ │ │ │ └── source-map │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile.dryice.js │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── assert-shim.js │ │ │ │ │ │ ├── mini-require.js │ │ │ │ │ │ ├── prefix-source-map.jsm │ │ │ │ │ │ ├── prefix-utils.jsm │ │ │ │ │ │ ├── suffix-browser.js │ │ │ │ │ │ ├── suffix-source-map.jsm │ │ │ │ │ │ ├── suffix-utils.jsm │ │ │ │ │ │ ├── test-prefix.js │ │ │ │ │ │ └── test-suffix.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── source-map.js │ │ │ │ │ │ └── source-map │ │ │ │ │ │ │ ├── array-set.js │ │ │ │ │ │ │ ├── base64-vlq.js │ │ │ │ │ │ │ ├── base64.js │ │ │ │ │ │ │ ├── binary-search.js │ │ │ │ │ │ │ ├── source-map-consumer.js │ │ │ │ │ │ │ ├── source-map-generator.js │ │ │ │ │ │ │ ├── source-node.js │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── amdefine │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── amdefine.js │ │ │ │ │ │ │ ├── intercept.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── run-tests.js │ │ │ │ │ │ └── source-map │ │ │ │ │ │ ├── test-api.js │ │ │ │ │ │ ├── test-array-set.js │ │ │ │ │ │ ├── test-base64-vlq.js │ │ │ │ │ │ ├── test-base64.js │ │ │ │ │ │ ├── test-binary-search.js │ │ │ │ │ │ ├── test-dog-fooding.js │ │ │ │ │ │ ├── test-source-map-consumer.js │ │ │ │ │ │ ├── test-source-map-generator.js │ │ │ │ │ │ ├── test-source-node.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test │ │ │ │ │ ├── compress │ │ │ │ │ │ ├── arrays.js │ │ │ │ │ │ ├── blocks.js │ │ │ │ │ │ ├── conditionals.js │ │ │ │ │ │ ├── dead-code.js │ │ │ │ │ │ ├── debugger.js │ │ │ │ │ │ ├── drop-unused.js │ │ │ │ │ │ ├── issue-105.js │ │ │ │ │ │ ├── issue-12.js │ │ │ │ │ │ ├── issue-22.js │ │ │ │ │ │ ├── issue-44.js │ │ │ │ │ │ ├── issue-59.js │ │ │ │ │ │ ├── labels.js │ │ │ │ │ │ ├── loops.js │ │ │ │ │ │ ├── properties.js │ │ │ │ │ │ ├── sequences.js │ │ │ │ │ │ └── switch.js │ │ │ │ │ └── run-tests.js │ │ │ │ │ └── tools │ │ │ │ │ └── node.js │ │ │ ├── package.json │ │ │ ├── tasks │ │ │ │ ├── lib │ │ │ │ │ └── uglify.js │ │ │ │ └── uglify.js │ │ │ └── test │ │ │ │ ├── fixtures │ │ │ │ ├── expected │ │ │ │ │ ├── comments.js │ │ │ │ │ ├── compress.js │ │ │ │ │ ├── compress_mangle.js │ │ │ │ │ ├── compress_mangle_beautify.js │ │ │ │ │ ├── compress_mangle_except.js │ │ │ │ │ ├── compress_mangle_sourcemap │ │ │ │ │ ├── exportAll.js │ │ │ │ │ ├── multifile.js │ │ │ │ │ ├── multiple_sourcemaps1.js │ │ │ │ │ ├── multiple_sourcemaps1.map │ │ │ │ │ ├── multiple_sourcemaps2.js │ │ │ │ │ ├── multiple_sourcemaps2.map │ │ │ │ │ ├── sourcemap_prefix │ │ │ │ │ ├── sourcemapin │ │ │ │ │ ├── sourcemapin.js │ │ │ │ │ ├── sourcemapurl.js │ │ │ │ │ └── wrap.js │ │ │ │ └── src │ │ │ │ │ ├── comments.js │ │ │ │ │ ├── simple.js │ │ │ │ │ ├── simple2.coffee │ │ │ │ │ ├── simple2.js │ │ │ │ │ └── simple2.map │ │ │ │ └── uglify_test.js │ │ ├── grunt-contrib-watch │ │ │ ├── .editorconfig │ │ │ ├── .jshintrc │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CHANGELOG │ │ │ ├── CONTRIBUTING.md │ │ │ ├── Gruntfile.js │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── docs │ │ │ │ ├── watch-examples.md │ │ │ │ ├── watch-faqs.md │ │ │ │ ├── watch-options.md │ │ │ │ └── watch-overview.md │ │ │ ├── node_modules │ │ │ │ └── gaze │ │ │ │ │ ├── .editorconfig │ │ │ │ │ ├── .jshintrc │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmarks │ │ │ │ │ └── gaze100s.js │ │ │ │ │ ├── lib │ │ │ │ │ └── gaze.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── async │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── async.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── glob │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── g.js │ │ │ │ │ │ │ └── usr-local.js │ │ │ │ │ │ ├── glob.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── open.js │ │ │ │ │ │ │ │ │ └── ulimit.js │ │ │ │ │ │ │ └── inherits │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ │ │ ├── bash-results.json │ │ │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ │ │ ├── root.js │ │ │ │ │ │ │ └── zz-cleanup.js │ │ │ │ │ ├── lodash │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ ├── lodash.underscore.min.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── minimatch │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── minimatch.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ │ └── sigmund │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── basic.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ │ ├── caching.js │ │ │ │ │ │ └── defaults.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ ├── add_test.js │ │ │ │ │ ├── api_test.js │ │ │ │ │ ├── fixtures │ │ │ │ │ ├── Project (LO) │ │ │ │ │ │ └── one.js │ │ │ │ │ ├── nested │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── sub │ │ │ │ │ │ │ └── two.js │ │ │ │ │ │ └── three.js │ │ │ │ │ ├── one.js │ │ │ │ │ └── sub │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ └── two.js │ │ │ │ │ ├── matching_test.js │ │ │ │ │ ├── relative_test.js │ │ │ │ │ ├── rename_test.js │ │ │ │ │ └── watch_test.js │ │ │ ├── package.json │ │ │ ├── tasks │ │ │ │ └── watch.js │ │ │ └── test │ │ │ │ ├── fixtures │ │ │ │ ├── multiTargets │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ └── lib │ │ │ │ │ │ ├── fail.js │ │ │ │ │ │ ├── interrupt.js │ │ │ │ │ │ ├── one.js │ │ │ │ │ │ ├── two.js │ │ │ │ │ │ └── wait.js │ │ │ │ ├── oneTarget │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ └── lib │ │ │ │ │ │ └── one.js │ │ │ │ └── tasks │ │ │ │ │ └── echo.js │ │ │ │ └── tasks │ │ │ │ └── watch_test.js │ │ └── grunt │ │ │ ├── .npmignore │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE-MIT │ │ │ ├── README.md │ │ │ ├── internal-tasks │ │ │ ├── bump.js │ │ │ └── subgrunt.js │ │ │ ├── lib │ │ │ ├── grunt.js │ │ │ ├── grunt │ │ │ │ ├── cli.js │ │ │ │ ├── config.js │ │ │ │ ├── event.js │ │ │ │ ├── fail.js │ │ │ │ ├── file.js │ │ │ │ ├── help.js │ │ │ │ ├── log.js │ │ │ │ ├── option.js │ │ │ │ ├── task.js │ │ │ │ ├── template.js │ │ │ │ └── util.js │ │ │ └── util │ │ │ │ └── task.js │ │ │ ├── node_modules │ │ │ ├── .bin │ │ │ │ ├── cake │ │ │ │ ├── cake.cmd │ │ │ │ ├── coffee │ │ │ │ ├── coffee.cmd │ │ │ │ ├── js-yaml │ │ │ │ ├── js-yaml.cmd │ │ │ │ ├── nopt │ │ │ │ ├── nopt.cmd │ │ │ │ ├── which │ │ │ │ └── which.cmd │ │ │ ├── async │ │ │ │ ├── .gitmodules │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── async.js │ │ │ │ └── package.json │ │ │ ├── coffee-script │ │ │ │ ├── .npmignore │ │ │ │ ├── CNAME │ │ │ │ ├── LICENSE │ │ │ │ ├── README │ │ │ │ ├── Rakefile │ │ │ │ ├── bin │ │ │ │ │ ├── cake │ │ │ │ │ └── coffee │ │ │ │ ├── extras │ │ │ │ │ └── jsl.conf │ │ │ │ ├── lib │ │ │ │ │ └── coffee-script │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── cake.js │ │ │ │ │ │ ├── coffee-script.js │ │ │ │ │ │ ├── command.js │ │ │ │ │ │ ├── grammar.js │ │ │ │ │ │ ├── helpers.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lexer.js │ │ │ │ │ │ ├── nodes.js │ │ │ │ │ │ ├── optparse.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── repl.js │ │ │ │ │ │ ├── rewriter.js │ │ │ │ │ │ └── scope.js │ │ │ │ └── package.json │ │ │ ├── colors │ │ │ │ ├── MIT-LICENSE.txt │ │ │ │ ├── ReadMe.md │ │ │ │ ├── colors.js │ │ │ │ ├── example.html │ │ │ │ ├── example.js │ │ │ │ ├── package.json │ │ │ │ ├── test.js │ │ │ │ └── themes │ │ │ │ │ ├── winston-dark.js │ │ │ │ │ └── winston-light.js │ │ │ ├── dateformat │ │ │ │ ├── Readme.md │ │ │ │ ├── lib │ │ │ │ │ └── dateformat.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── test_weekofyear.js │ │ │ │ │ └── test_weekofyear.sh │ │ │ ├── eventemitter2 │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── eventemitter2.js │ │ │ │ └── package.json │ │ │ ├── exit │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── exit.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── exit_test.js │ │ │ │ │ └── fixtures │ │ │ │ │ ├── 10-stderr.txt │ │ │ │ │ ├── 10-stdout-stderr.txt │ │ │ │ │ ├── 10-stdout.txt │ │ │ │ │ ├── 100-stderr.txt │ │ │ │ │ ├── 100-stdout-stderr.txt │ │ │ │ │ ├── 100-stdout.txt │ │ │ │ │ ├── 1000-stderr.txt │ │ │ │ │ ├── 1000-stdout-stderr.txt │ │ │ │ │ ├── 1000-stdout.txt │ │ │ │ │ ├── create-files.sh │ │ │ │ │ ├── log-broken.js │ │ │ │ │ └── log.js │ │ │ ├── findup-sync │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── findup-sync.js │ │ │ │ ├── node_modules │ │ │ │ │ └── lodash │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── dist │ │ │ │ │ │ ├── lodash.compat.js │ │ │ │ │ │ ├── lodash.compat.min.js │ │ │ │ │ │ ├── lodash.js │ │ │ │ │ │ ├── lodash.min.js │ │ │ │ │ │ ├── lodash.underscore.js │ │ │ │ │ │ └── lodash.underscore.min.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── findup-sync_test.js │ │ │ │ │ └── fixtures │ │ │ │ │ ├── a.txt │ │ │ │ │ ├── a │ │ │ │ │ ├── b │ │ │ │ │ │ └── bar.txt │ │ │ │ │ └── foo.txt │ │ │ │ │ └── aaa.txt │ │ │ ├── getobject │ │ │ │ ├── .jshintrc │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gruntfile.js │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── getobject.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ └── namespace_test.js │ │ │ ├── glob │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── examples │ │ │ │ │ ├── g.js │ │ │ │ │ └── usr-local.js │ │ │ │ ├── glob.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── graceful-fs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── open.js │ │ │ │ │ │ │ └── ulimit.js │ │ │ │ │ └── inherits │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── inherits.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── 00-setup.js │ │ │ │ │ ├── bash-comparison.js │ │ │ │ │ ├── bash-results.json │ │ │ │ │ ├── cwd-test.js │ │ │ │ │ ├── mark.js │ │ │ │ │ ├── nocase-nomagic.js │ │ │ │ │ ├── pause-resume.js │ │ │ │ │ ├── root-nomount.js │ │ │ │ │ ├── root.js │ │ │ │ │ └── zz-cleanup.js │ │ │ ├── hooker │ │ │ │ ├── LICENSE-MIT │ │ │ │ ├── README.md │ │ │ │ ├── child.js │ │ │ │ ├── dist │ │ │ │ │ ├── ba-hooker.js │ │ │ │ │ └── ba-hooker.min.js │ │ │ │ ├── grunt.js │ │ │ │ ├── lib │ │ │ │ │ └── hooker.js │ │ │ │ ├── package.json │ │ │ │ ├── parent.js │ │ │ │ └── test │ │ │ │ │ └── hooker_test.js │ │ │ ├── iconv-lite │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── encodings │ │ │ │ │ ├── big5.js │ │ │ │ │ ├── gbk.js │ │ │ │ │ ├── singlebyte.js │ │ │ │ │ └── table │ │ │ │ │ │ ├── big5.js │ │ │ │ │ │ └── gbk.js │ │ │ │ ├── generation │ │ │ │ │ ├── generate-big5-table.js │ │ │ │ │ └── generate-singlebyte.js │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── big5-test.js │ │ │ │ │ ├── big5File.txt │ │ │ │ │ ├── cyrillic-test.js │ │ │ │ │ ├── gbk-test.js │ │ │ │ │ ├── gbkFile.txt │ │ │ │ │ ├── greek-test.js │ │ │ │ │ ├── main-test.js │ │ │ │ │ ├── performance.js │ │ │ │ │ └── turkish-test.js │ │ │ ├── js-yaml │ │ │ │ ├── HISTORY.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── js-yaml.js │ │ │ │ ├── examples │ │ │ │ │ ├── custom_types.js │ │ │ │ │ ├── custom_types.yaml │ │ │ │ │ ├── dumper.js │ │ │ │ │ ├── dumper.json │ │ │ │ │ ├── sample_document.js │ │ │ │ │ └── sample_document.yaml │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── js-yaml.js │ │ │ │ │ └── js-yaml │ │ │ │ │ │ ├── common.js │ │ │ │ │ │ ├── dumper.js │ │ │ │ │ │ ├── exception.js │ │ │ │ │ │ ├── loader.js │ │ │ │ │ │ ├── mark.js │ │ │ │ │ │ ├── require.js │ │ │ │ │ │ ├── schema.js │ │ │ │ │ │ ├── schema │ │ │ │ │ │ ├── default.js │ │ │ │ │ │ ├── minimal.js │ │ │ │ │ │ └── safe.js │ │ │ │ │ │ ├── type.js │ │ │ │ │ │ └── type │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ ├── bool.js │ │ │ │ │ │ ├── float.js │ │ │ │ │ │ ├── int.js │ │ │ │ │ │ ├── js │ │ │ │ │ │ ├── function.js │ │ │ │ │ │ ├── regexp.js │ │ │ │ │ │ └── undefined.js │ │ │ │ │ │ ├── map.js │ │ │ │ │ │ ├── merge.js │ │ │ │ │ │ ├── null.js │ │ │ │ │ │ ├── omap.js │ │ │ │ │ │ ├── pairs.js │ │ │ │ │ │ ├── seq.js │ │ │ │ │ │ ├── set.js │ │ │ │ │ │ ├── str.js │ │ │ │ │ │ └── timestamp.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ ├── esparse │ │ │ │ │ │ ├── esparse.cmd │ │ │ │ │ │ ├── esvalidate │ │ │ │ │ │ └── esvalidate.cmd │ │ │ │ │ ├── argparse │ │ │ │ │ │ ├── HISTORY.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── arguments.js │ │ │ │ │ │ │ ├── choice.js │ │ │ │ │ │ │ ├── constants.js │ │ │ │ │ │ │ ├── help.js │ │ │ │ │ │ │ ├── nargs.js │ │ │ │ │ │ │ ├── parents.js │ │ │ │ │ │ │ ├── prefix_chars.js │ │ │ │ │ │ │ ├── sub_commands.js │ │ │ │ │ │ │ ├── sum.js │ │ │ │ │ │ │ └── testformatters.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── action.js │ │ │ │ │ │ │ ├── action │ │ │ │ │ │ │ │ ├── append.js │ │ │ │ │ │ │ │ ├── append │ │ │ │ │ │ │ │ │ └── constant.js │ │ │ │ │ │ │ │ ├── count.js │ │ │ │ │ │ │ │ ├── help.js │ │ │ │ │ │ │ │ ├── store.js │ │ │ │ │ │ │ │ ├── store │ │ │ │ │ │ │ │ │ ├── constant.js │ │ │ │ │ │ │ │ │ ├── false.js │ │ │ │ │ │ │ │ │ └── true.js │ │ │ │ │ │ │ │ ├── subparsers.js │ │ │ │ │ │ │ │ └── version.js │ │ │ │ │ │ │ ├── action_container.js │ │ │ │ │ │ │ ├── argparse.js │ │ │ │ │ │ │ ├── argument │ │ │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ │ │ ├── exclusive.js │ │ │ │ │ │ │ │ └── group.js │ │ │ │ │ │ │ ├── argument_parser.js │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ ├── help │ │ │ │ │ │ │ │ ├── added_formatters.js │ │ │ │ │ │ │ │ └── formatter.js │ │ │ │ │ │ │ └── namespace.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── underscore.string │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── Gemfile │ │ │ │ │ │ │ │ ├── Gemfile.lock │ │ │ │ │ │ │ │ ├── README.markdown │ │ │ │ │ │ │ │ ├── Rakefile │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── dist │ │ │ │ │ │ │ │ │ └── underscore.string.min.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── underscore.string.js │ │ │ │ │ │ │ │ ├── libpeerconnection.log │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── run-qunit.js │ │ │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ │ │ ├── strings.js │ │ │ │ │ │ │ │ │ ├── strings_standalone.js │ │ │ │ │ │ │ │ │ ├── test.html │ │ │ │ │ │ │ │ │ ├── test_standalone.html │ │ │ │ │ │ │ │ │ ├── test_underscore │ │ │ │ │ │ │ │ │ ├── arrays.js │ │ │ │ │ │ │ │ │ ├── chaining.js │ │ │ │ │ │ │ │ │ ├── collections.js │ │ │ │ │ │ │ │ │ ├── functions.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── objects.js │ │ │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ │ │ ├── utility.js │ │ │ │ │ │ │ │ │ └── vendor │ │ │ │ │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ │ │ │ │ ├── jslitmus.js │ │ │ │ │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ │ │ │ │ └── qunit.js │ │ │ │ │ │ │ │ │ └── underscore.js │ │ │ │ │ │ │ └── underscore │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── CNAME │ │ │ │ │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── underscore-min.js │ │ │ │ │ │ │ │ └── underscore.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── esprima │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ ├── esparse.js │ │ │ │ │ │ └── esvalidate.js │ │ │ │ │ │ ├── esprima.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ ├── compat.js │ │ │ │ │ │ ├── reflect.js │ │ │ │ │ │ ├── run.js │ │ │ │ │ │ ├── runner.js │ │ │ │ │ │ └── test.js │ │ │ │ └── package.json │ │ │ ├── lodash │ │ │ │ ├── README.md │ │ │ │ ├── lodash.js │ │ │ │ ├── lodash.min.js │ │ │ │ ├── lodash.underscore.js │ │ │ │ ├── lodash.underscore.min.js │ │ │ │ └── package.json │ │ │ ├── minimatch │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── minimatch.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── lru-cache │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── lru-cache.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── basic.js │ │ │ │ │ │ │ ├── foreach.js │ │ │ │ │ │ │ └── memory-leak.js │ │ │ │ │ └── sigmund │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bench.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── sigmund.js │ │ │ │ │ │ └── test │ │ │ │ │ │ └── basic.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── basic.js │ │ │ │ │ ├── brace-expand.js │ │ │ │ │ ├── caching.js │ │ │ │ │ └── defaults.js │ │ │ ├── nopt │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ │ └── nopt.js │ │ │ │ ├── examples │ │ │ │ │ └── my-program.js │ │ │ │ ├── lib │ │ │ │ │ └── nopt.js │ │ │ │ ├── node_modules │ │ │ │ │ └── abbrev │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ └── abbrev.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── rimraf │ │ │ │ ├── AUTHORS │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── node_modules │ │ │ │ │ └── graceful-fs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── graceful-fs.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ └── open.js │ │ │ │ ├── package.json │ │ │ │ ├── rimraf.js │ │ │ │ └── test │ │ │ │ │ ├── run.sh │ │ │ │ │ ├── setup.sh │ │ │ │ │ ├── test-async.js │ │ │ │ │ ├── test-fiber.js │ │ │ │ │ └── test-sync.js │ │ │ ├── underscore.string │ │ │ │ ├── .travis.yml │ │ │ │ ├── Gemfile │ │ │ │ ├── Gemfile.lock │ │ │ │ ├── README.markdown │ │ │ │ ├── Rakefile │ │ │ │ ├── dist │ │ │ │ │ └── underscore.string.min.js │ │ │ │ ├── lib │ │ │ │ │ └── underscore.string.js │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ │ ├── run-qunit.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── strings.js │ │ │ │ │ ├── strings_standalone.js │ │ │ │ │ ├── test.html │ │ │ │ │ ├── test_standalone.html │ │ │ │ │ ├── test_underscore │ │ │ │ │ ├── arrays.js │ │ │ │ │ ├── chaining.js │ │ │ │ │ ├── collections.js │ │ │ │ │ ├── functions.js │ │ │ │ │ ├── objects.js │ │ │ │ │ ├── speed.js │ │ │ │ │ ├── temp.js │ │ │ │ │ ├── temp_tests.html │ │ │ │ │ ├── test.html │ │ │ │ │ ├── utility.js │ │ │ │ │ └── vendor │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── jslitmus.js │ │ │ │ │ │ ├── qunit.css │ │ │ │ │ │ └── qunit.js │ │ │ │ │ └── underscore.js │ │ │ └── which │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── which │ │ │ │ ├── package.json │ │ │ │ └── which.js │ │ │ └── package.json │ ├── package.json │ ├── release.bat │ └── watch.bat ├── _js-source │ ├── _app core │ │ ├── 00.js │ │ ├── 01.app.js │ │ ├── 10.ajax.js │ │ ├── 10.jquery.extensions.js │ │ ├── 10.notification.js │ │ ├── 10.utils.js │ │ └── 99.main.js │ ├── _core │ │ ├── 00.infrastructure │ │ │ ├── busier.js │ │ │ ├── guid.js │ │ │ ├── jquery.extensions.js │ │ │ ├── numberExtensions.js │ │ │ └── page.js │ │ ├── 01.ajax │ │ │ └── ajax.js │ │ ├── 02.notification │ │ │ └── notification.js │ │ ├── 03.utils │ │ │ └── utils.js │ │ ├── 09.document-ready │ │ │ └── documentready.js │ │ └── main.js │ ├── _libs │ │ ├── ArrayExtensions.js │ │ ├── DateExtensions.js │ │ ├── FileUpload.js │ │ ├── Grid.js │ │ ├── ImageOptimizer.js │ │ ├── ListPager.js │ │ ├── WebImageUploader.js │ │ ├── admin │ │ │ └── WeixinMenuManager.js │ │ ├── app │ │ │ ├── LikeReader.js │ │ │ ├── WeixinImageUploader.js │ │ │ ├── WeixinJsSdk.js │ │ │ └── WeixinRecharger.js │ │ └── pc │ │ │ ├── ImageViewer.js │ │ │ ├── ImageZoomer.js │ │ │ ├── IphonePreviewer.js │ │ │ ├── Slider.js │ │ │ └── TimeframeSelector.js │ ├── admin │ │ ├── role │ │ │ └── index │ │ │ │ └── page.js │ │ ├── setting │ │ │ └── index │ │ │ │ └── 01.page.js │ │ └── user │ │ │ └── index │ │ │ ├── 01.page.js │ │ │ └── 02.page.tagManager.js │ └── public │ │ └── account │ │ ├── login │ │ └── 01.page.js │ │ ├── register-step1 │ │ └── 01.page.js │ │ └── register-step2 │ │ └── 01.page.js ├── _logs │ ├── MvcApplication.OnError │ │ ├── 2016-03-12.loog │ │ └── 2016-03-13.loog │ └── MvcSolutionControllerBase.OnException │ │ ├── 2016-03-12.loog │ │ └── 2016-03-13.loog ├── _storage │ ├── css │ │ ├── 404.png │ │ └── jqueryui │ │ │ └── base │ │ │ ├── images │ │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ │ ├── ui-icons_222222_256x240.png │ │ │ ├── ui-icons_2e83ff_256x240.png │ │ │ ├── ui-icons_454545_256x240.png │ │ │ ├── ui-icons_888888_256x240.png │ │ │ └── ui-icons_cd0a0a_256x240.png │ │ │ └── jquery-ui.css │ └── js │ │ ├── echarts │ │ ├── echarts-plain-original.js │ │ └── echarts-plain.js │ │ ├── jquery │ │ ├── jquery-1.7.2.min.js │ │ ├── jquery-2.0.3.min.js │ │ ├── jquery-ui-1.8.20.custom.min.js │ │ ├── jquery-ui-1.8.20.min.js │ │ ├── jquery.validate.min.js │ │ └── jquery.validate.unobtrusive.min.js │ │ └── ueditor │ │ ├── dialogs │ │ ├── anchor │ │ │ └── anchor.html │ │ ├── attachment │ │ │ ├── attachment.css │ │ │ ├── attachment.html │ │ │ ├── attachment.js │ │ │ ├── fileTypeImages │ │ │ │ ├── icon_chm.gif │ │ │ │ ├── icon_default.png │ │ │ │ ├── icon_doc.gif │ │ │ │ ├── icon_exe.gif │ │ │ │ ├── icon_jpg.gif │ │ │ │ ├── icon_mp3.gif │ │ │ │ ├── icon_mv.gif │ │ │ │ ├── icon_pdf.gif │ │ │ │ ├── icon_ppt.gif │ │ │ │ ├── icon_psd.gif │ │ │ │ ├── icon_rar.gif │ │ │ │ ├── icon_txt.gif │ │ │ │ └── icon_xls.gif │ │ │ └── images │ │ │ │ ├── alignicon.gif │ │ │ │ ├── alignicon.png │ │ │ │ ├── bg.png │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── background │ │ │ ├── background.css │ │ │ ├── background.html │ │ │ ├── background.js │ │ │ └── images │ │ │ │ ├── bg.png │ │ │ │ └── success.png │ │ ├── charts │ │ │ ├── chart.config.js │ │ │ ├── charts.css │ │ │ ├── charts.html │ │ │ ├── charts.js │ │ │ └── images │ │ │ │ ├── charts0.png │ │ │ │ ├── charts1.png │ │ │ │ ├── charts2.png │ │ │ │ ├── charts3.png │ │ │ │ ├── charts4.png │ │ │ │ └── charts5.png │ │ ├── emotion │ │ │ ├── emotion.css │ │ │ ├── emotion.html │ │ │ ├── emotion.js │ │ │ └── images │ │ │ │ ├── 0.gif │ │ │ │ ├── bface.gif │ │ │ │ ├── cface.gif │ │ │ │ ├── fface.gif │ │ │ │ ├── jxface2.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── tface.gif │ │ │ │ ├── wface.gif │ │ │ │ └── yface.gif │ │ ├── gmap │ │ │ └── gmap.html │ │ ├── help │ │ │ ├── help.css │ │ │ ├── help.html │ │ │ └── help.js │ │ ├── image │ │ │ ├── image.css │ │ │ ├── image.html │ │ │ ├── image.js │ │ │ └── images │ │ │ │ ├── alignicon.jpg │ │ │ │ ├── bg.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── progress.png │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ ├── insertframe │ │ │ └── insertframe.html │ │ ├── internal.js │ │ ├── link │ │ │ └── link.html │ │ ├── map │ │ │ ├── map.html │ │ │ └── show.html │ │ ├── music │ │ │ ├── music.css │ │ │ ├── music.html │ │ │ └── music.js │ │ ├── preview │ │ │ └── preview.html │ │ ├── scrawl │ │ │ ├── images │ │ │ │ ├── addimg.png │ │ │ │ ├── brush.png │ │ │ │ ├── delimg.png │ │ │ │ ├── delimgH.png │ │ │ │ ├── empty.png │ │ │ │ ├── emptyH.png │ │ │ │ ├── eraser.png │ │ │ │ ├── redo.png │ │ │ │ ├── redoH.png │ │ │ │ ├── scale.png │ │ │ │ ├── scaleH.png │ │ │ │ ├── size.png │ │ │ │ ├── undo.png │ │ │ │ └── undoH.png │ │ │ ├── scrawl.css │ │ │ ├── scrawl.html │ │ │ └── scrawl.js │ │ ├── searchreplace │ │ │ ├── searchreplace.html │ │ │ └── searchreplace.js │ │ ├── snapscreen │ │ │ └── snapscreen.html │ │ ├── spechars │ │ │ ├── spechars.html │ │ │ └── spechars.js │ │ ├── table │ │ │ ├── dragicon.png │ │ │ ├── edittable.css │ │ │ ├── edittable.html │ │ │ ├── edittable.js │ │ │ ├── edittd.html │ │ │ └── edittip.html │ │ ├── template │ │ │ ├── config.js │ │ │ ├── images │ │ │ │ ├── bg.gif │ │ │ │ ├── pre0.png │ │ │ │ ├── pre1.png │ │ │ │ ├── pre2.png │ │ │ │ ├── pre3.png │ │ │ │ └── pre4.png │ │ │ ├── template.css │ │ │ ├── template.html │ │ │ └── template.js │ │ ├── video │ │ │ ├── images │ │ │ │ ├── bg.png │ │ │ │ ├── center_focus.jpg │ │ │ │ ├── file-icons.gif │ │ │ │ ├── file-icons.png │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── image.png │ │ │ │ ├── left_focus.jpg │ │ │ │ ├── none_focus.jpg │ │ │ │ ├── progress.png │ │ │ │ ├── right_focus.jpg │ │ │ │ ├── success.gif │ │ │ │ └── success.png │ │ │ ├── video.css │ │ │ ├── video.html │ │ │ └── video.js │ │ ├── webapp │ │ │ └── webapp.html │ │ └── wordimage │ │ │ ├── fClipboard_ueditor.swf │ │ │ ├── imageUploader.swf │ │ │ ├── tangram.js │ │ │ ├── wordimage.html │ │ │ └── wordimage.js │ │ ├── index.html │ │ ├── lang │ │ ├── en │ │ │ ├── en.js │ │ │ └── images │ │ │ │ ├── addimage.png │ │ │ │ ├── alldeletebtnhoverskin.png │ │ │ │ ├── alldeletebtnupskin.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── copy.png │ │ │ │ ├── deletedisable.png │ │ │ │ ├── deleteenable.png │ │ │ │ ├── listbackground.png │ │ │ │ ├── localimage.png │ │ │ │ ├── music.png │ │ │ │ ├── rotateleftdisable.png │ │ │ │ ├── rotateleftenable.png │ │ │ │ ├── rotaterightdisable.png │ │ │ │ ├── rotaterightenable.png │ │ │ │ └── upload.png │ │ └── zh-cn │ │ │ ├── images │ │ │ ├── copy.png │ │ │ ├── localimage.png │ │ │ ├── music.png │ │ │ └── upload.png │ │ │ └── zh-cn.js │ │ ├── net │ │ └── config.json │ │ ├── themes │ │ ├── default │ │ │ ├── css │ │ │ │ ├── ueditor.css │ │ │ │ └── ueditor.min.css │ │ │ ├── dialogbase.css │ │ │ └── images │ │ │ │ ├── anchor.gif │ │ │ │ ├── arrow.png │ │ │ │ ├── arrow_down.png │ │ │ │ ├── arrow_up.png │ │ │ │ ├── button-bg.gif │ │ │ │ ├── cancelbutton.gif │ │ │ │ ├── charts.png │ │ │ │ ├── cursor_h.gif │ │ │ │ ├── cursor_h.png │ │ │ │ ├── cursor_v.gif │ │ │ │ ├── cursor_v.png │ │ │ │ ├── dialog-title-bg.png │ │ │ │ ├── filescan.png │ │ │ │ ├── highlighted.gif │ │ │ │ ├── icons-all.gif │ │ │ │ ├── icons.gif │ │ │ │ ├── icons.png │ │ │ │ ├── loaderror.png │ │ │ │ ├── loading.gif │ │ │ │ ├── lock.gif │ │ │ │ ├── neweditor-tab-bg.png │ │ │ │ ├── pagebreak.gif │ │ │ │ ├── scale.png │ │ │ │ ├── sortable.png │ │ │ │ ├── spacer.gif │ │ │ │ ├── sparator_v.png │ │ │ │ ├── table-cell-align.png │ │ │ │ ├── tangram-colorpicker.png │ │ │ │ ├── toolbar_bg.png │ │ │ │ ├── unhighlighted.gif │ │ │ │ ├── upload.png │ │ │ │ ├── videologo.gif │ │ │ │ ├── word.gif │ │ │ │ └── wordpaste.png │ │ └── iframe.css │ │ ├── third-party │ │ ├── SyntaxHighlighter │ │ │ ├── shCore.js │ │ │ └── shCoreDefault.css │ │ ├── codemirror │ │ │ ├── codemirror.css │ │ │ └── codemirror.js │ │ ├── highcharts │ │ │ ├── adapters │ │ │ │ ├── mootools-adapter.js │ │ │ │ ├── mootools-adapter.src.js │ │ │ │ ├── prototype-adapter.js │ │ │ │ ├── prototype-adapter.src.js │ │ │ │ ├── standalone-framework.js │ │ │ │ └── standalone-framework.src.js │ │ │ ├── highcharts-more.js │ │ │ ├── highcharts-more.src.js │ │ │ ├── highcharts.js │ │ │ ├── highcharts.src.js │ │ │ ├── modules │ │ │ │ ├── annotations.js │ │ │ │ ├── annotations.src.js │ │ │ │ ├── canvas-tools.js │ │ │ │ ├── canvas-tools.src.js │ │ │ │ ├── data.js │ │ │ │ ├── data.src.js │ │ │ │ ├── drilldown.js │ │ │ │ ├── drilldown.src.js │ │ │ │ ├── exporting.js │ │ │ │ ├── exporting.src.js │ │ │ │ ├── funnel.js │ │ │ │ ├── funnel.src.js │ │ │ │ ├── heatmap.js │ │ │ │ ├── heatmap.src.js │ │ │ │ ├── map.js │ │ │ │ ├── map.src.js │ │ │ │ ├── no-data-to-display.js │ │ │ │ └── no-data-to-display.src.js │ │ │ └── themes │ │ │ │ ├── dark-blue.js │ │ │ │ ├── dark-green.js │ │ │ │ ├── gray.js │ │ │ │ ├── grid.js │ │ │ │ └── skies.js │ │ ├── jquery-1.10.2.js │ │ ├── jquery-1.10.2.min.js │ │ ├── jquery-1.10.2.min.map │ │ ├── snapscreen │ │ │ └── UEditorSnapscreen.exe │ │ ├── video-js │ │ │ ├── font │ │ │ │ ├── vjs.eot │ │ │ │ ├── vjs.svg │ │ │ │ ├── vjs.ttf │ │ │ │ └── vjs.woff │ │ │ ├── video-js.css │ │ │ ├── video-js.min.css │ │ │ ├── video-js.swf │ │ │ ├── video.dev.js │ │ │ └── video.js │ │ ├── webuploader │ │ │ ├── Uploader.swf │ │ │ ├── webuploader.css │ │ │ ├── webuploader.custom.js │ │ │ ├── webuploader.custom.min.js │ │ │ ├── webuploader.flashonly.js │ │ │ ├── webuploader.flashonly.min.js │ │ │ ├── webuploader.html5only.js │ │ │ ├── webuploader.html5only.min.js │ │ │ ├── webuploader.js │ │ │ ├── webuploader.min.js │ │ │ ├── webuploader.withoutimage.js │ │ │ └── webuploader.withoutimage.min.js │ │ └── zeroclipboard │ │ │ ├── ZeroClipboard.js │ │ │ ├── ZeroClipboard.min.js │ │ │ └── ZeroClipboard.swf │ │ ├── ueditor.all.js │ │ ├── ueditor.all.min.js │ │ ├── ueditor.config.js │ │ ├── ueditor.parse.js │ │ └── ueditor.parse.min.js ├── favicon.ico └── packages.config ├── MvcSolution.Web ├── Controllers │ ├── ImageController.cs │ └── _MvcSolutionControllerBase.cs ├── Extensions │ ├── HttpRequestResponseExtensions.cs │ └── PrincipalExtensions.cs ├── Images │ ├── DefaultImageParameterFixer.cs │ ├── IImageParameterFixer.cs │ └── ImageParameter.cs ├── ModelBinders │ └── Base64ImageBinder.cs ├── MvcApplication.cs ├── MvcSolution.Web.csproj ├── MvcSolution.Web.csproj.DotSettings ├── MvcSolution.Web.csproj.user ├── Properties │ └── AssemblyInfo.cs ├── Security │ ├── MvcAuthorizeAttribute.cs │ ├── MvcRoleProvider.cs │ └── MvcSession.cs └── ViewModels │ └── LayoutViewModel.cs ├── MvcSolution._Areas ├── Admin │ ├── MvcSolution.Services.Admin │ │ ├── Dtos │ │ │ ├── UserDto.cs │ │ │ └── UserRoleDto.cs │ │ ├── IRoleService.cs │ │ ├── ITagService.cs │ │ ├── IUserService.cs │ │ ├── Implementations │ │ │ ├── RoleService.cs │ │ │ ├── TagService.cs │ │ │ └── UserService.cs │ │ ├── MvcSolution.Services.Admin.csproj │ │ ├── MvcSolution.Services.Admin.csproj.DotSettings │ │ ├── MvcSolution.Services.Admin.csproj.user │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ └── SearchCriterias │ │ │ └── UserSearchCriteria.cs │ └── MvcSolution.Web.Admin │ │ ├── AdminAreaRegistration.cs │ │ ├── Controllers │ │ ├── BaiduController.cs │ │ ├── RoleController.cs │ │ ├── SettingController.cs │ │ ├── TagController.cs │ │ ├── UserController.cs │ │ └── _AdminControllerBase.cs │ │ ├── MvcSolution.Web.Admin.csproj │ │ ├── MvcSolution.Web.Admin.csproj.user │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ └── ViewModels │ │ ├── HomeViewModels.cs │ │ ├── RoleViewModels.cs │ │ ├── SettingViewModels.cs │ │ └── UserViewModels.cs └── Public │ ├── MvcSolution.Services.Public │ ├── IAccountService.cs │ ├── IUserService.cs │ ├── Implementations │ │ └── AccountService.cs │ ├── MvcSolution.Services.Public.csproj │ └── Properties │ │ └── AssemblyInfo.cs │ └── MvcSolution.Web.Public │ ├── Controllers │ ├── AccountController.cs │ ├── HomeController.cs │ ├── ImgController.cs │ └── _PublicControllerBase.cs │ ├── MvcSolution.Web.Public.csproj │ ├── Properties │ └── AssemblyInfo.cs │ └── PublicAreaRegistration.cs ├── MvcSolution._Tests └── MvcSolution.UnitTests │ ├── App.config │ ├── DatabaseTests.cs │ ├── MvcSolution.UnitTests.csproj │ └── Properties │ └── AssemblyInfo.cs ├── MvcSolution.sln ├── MvcSolution.sln.DotSettings.user ├── README.md ├── _doc ├── 01.get-started.md ├── images │ └── project references.jpg └── readme.md ├── _libs ├── EntityFramework.SqlServer.dll ├── EntityFramework.dll ├── Microsoft.Practices.Unity.dll ├── Microsoft.Web.Infrastructure.dll ├── Newtonsoft.Json.dll ├── System.Web.Helpers.dll ├── System.Web.Mvc.dll ├── System.Web.Razor.dll ├── System.Web.WebPages.Deployment.dll ├── System.Web.WebPages.Razor.dll ├── System.Web.WebPages.dll └── nunit.framework.dll └── packages ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1 ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1.nupkg ├── build │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props ├── content │ ├── web.config.install.xdt │ └── web.config.uninstall.xdt ├── lib │ └── net45 │ │ ├── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll │ │ └── Microsoft.CodeDom.Providers.DotNetCompilerPlatform.xml └── tools │ ├── install.ps1 │ └── uninstall.ps1 └── Microsoft.Net.Compilers.1.0.0 ├── Microsoft.Net.Compilers.1.0.0.nupkg ├── ThirdPartyNotices.rtf ├── build └── Microsoft.Net.Compilers.props └── tools ├── Microsoft.Build.Tasks.CodeAnalysis.dll ├── Microsoft.CSharp.Core.targets ├── Microsoft.CodeAnalysis.CSharp.dll ├── Microsoft.CodeAnalysis.VisualBasic.dll ├── Microsoft.CodeAnalysis.dll ├── Microsoft.VisualBasic.Core.targets ├── System.Collections.Immutable.dll ├── System.Reflection.Metadata.dll ├── VBCSCompiler.exe ├── VBCSCompiler.exe.config ├── csc.exe └── vbc.exe /MvcSolution.Data/Entities/Tag.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using MvcSolution; 3 | 4 | namespace MvcSolution.Data 5 | { 6 | public class Tag: EntityBase, ISimpleEntity 7 | { 8 | public string Name { get; set; } 9 | 10 | public virtual ICollection UserTagRLs { get; set; } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Data/Enums/ImageType.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution.Data 2 | { 3 | public enum ImageType 4 | { 5 | Unknown = 0, 6 | UserAvatar = 189 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /MvcSolution.Data/Mappings/RoleMapping.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity.ModelConfiguration; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Data.Mappings 5 | { 6 | public class RoleMapping : EntityTypeConfiguration 7 | { 8 | public RoleMapping() 9 | { 10 | this.Property(x => x.Name).IsRequired().HasMaxLength(50); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MvcSolution.Data/Mappings/SettingMapping.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity.ModelConfiguration; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Data.Mappings 5 | { 6 | public class SettingMapping : EntityTypeConfiguration 7 | { 8 | public SettingMapping() 9 | { 10 | this.Property(x => x.Key).IsRequired().HasMaxLength(100); 11 | this.Property(x => x.Notes).HasMaxLength(250); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Data/Mappings/TagMapping.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity.ModelConfiguration; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Data.Mappings 5 | { 6 | public class TagMapping : EntityTypeConfiguration 7 | { 8 | public TagMapping() 9 | { 10 | this.Property(x => x.Name).IsRequired().HasMaxLength(20); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MvcSolution.Data/Mappings/UserRoleRLMapping.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity.ModelConfiguration; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Data.Mappings 5 | { 6 | public class UserRoleRLMapping : EntityTypeConfiguration 7 | { 8 | public UserRoleRLMapping() 9 | { 10 | this.Require(x => x.User, x => x.UserRoleRLs, x => x.UserId); 11 | this.Require(x => x.Role, x => x.UserRoleRLs, x => x.RoleId); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Data/Mappings/UserTagRLMapping.cs: -------------------------------------------------------------------------------- 1 | using System.Data.Entity.ModelConfiguration; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Data.Mappings 5 | { 6 | public class UserTagRLMapping : EntityTypeConfiguration 7 | { 8 | public UserTagRLMapping() 9 | { 10 | this.Require(x => x.User, x => x.UserTagRLs, x => x.UserId); 11 | this.Require(x => x.Tag, x => x.UserTagRLs, x => x.TagId); 12 | } 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Data/MvcSolution.Data.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Core/KnownException.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MvcSolution 4 | { 5 | public class KnownException : Exception 6 | { 7 | public KnownException(string message) : base(string.IsNullOrEmpty(message) ? "Unknown Exception" : message) 8 | { 9 | 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Extensions/DecimalExtentions.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution 2 | { 3 | public static class DecimalExtentions 4 | { 5 | public static string ToText(this decimal value) 6 | { 7 | return value.ToString("g0"); 8 | } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Extensions/NullableExtensions.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution 2 | { 3 | public static class NullableExtensions 4 | { 5 | public static T To(this T? value) where T : struct 6 | { 7 | return To(value, default(T)); 8 | } 9 | 10 | public static T To(this T? value, T defaultValue) where T : struct 11 | { 12 | return value ?? defaultValue; 13 | } 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MvcSolution 4 | { 5 | public static class TypeExtensions 6 | { 7 | public static bool GenericEq(this Type type, Type toCompare) 8 | { 9 | return type.Namespace == toCompare.Namespace && type.Name == toCompare.Name; 10 | } 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Logging/ILogger.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace MvcSolution 8 | { 9 | public interface ILogger 10 | { 11 | void Entry(string group, string message); 12 | void Start(); 13 | void Stop(); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Mvc/IStandardResult.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution 2 | { 3 | public interface IStandardResult 4 | { 5 | bool Success { get; set; } 6 | string Message { get; set; } 7 | void Succeed(); 8 | void Fail(); 9 | void Succeed(string message); 10 | void Fail(string message); 11 | } 12 | 13 | public interface IStandardResult : IStandardResult 14 | { 15 | T Value { get; set; } 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/MvcSolution.Infrastructure.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution.Infrastructure/Paging/SortDirection.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution 2 | { 3 | public enum SortDirection 4 | { 5 | None = 0, 6 | Asc = 1, 7 | Desc = 2 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MvcSolution.Services/Dtos/ImageDataDto.cs: -------------------------------------------------------------------------------- 1 | using System.Drawing.Imaging; 2 | 3 | namespace MvcSolution.Services 4 | { 5 | public class ImageDataDto 6 | { 7 | public string OriginalPath { get; set; } 8 | public ImageFormat Format { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MvcSolution.Services/ISettingService.cs: -------------------------------------------------------------------------------- 1 | using System.Collections.Generic; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution.Services 5 | { 6 | public interface ISettingService 7 | { 8 | void Init(List settings); 9 | List GetAll(); 10 | void Update(string key, string value); 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Shared/Layout.cshtml"; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/arrow-right-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/arrow-right-b.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/arrows-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/arrows-l.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/arrows-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/arrows-s.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/bg-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/bg-grid.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/close-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/close-top-right.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/file-excel-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/file-excel-128.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/file-word-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/file-word-128.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/iphone5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/iphone5s.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/loading_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/loading_1.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/marker.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/menu-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/menu-more.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/modal-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/modal-black.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/modal-black80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/modal-black80.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/modal.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/progressing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/progressing.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/remove-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/remove-42.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/remove16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/remove16.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/sort-asc.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/sort-desc.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/sort-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/sort-none.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/toast.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/images/zooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Admin/css/images/zooms.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Admin/css/pages/role-index.css: -------------------------------------------------------------------------------- 1 | .cell-avartar img { 2 | width: 50px; 3 | height: 50px; 4 | -ms-border-radius: 4px; 5 | border-radius: 4px; 6 | cursor: pointer; 7 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/Views/_Shared/Error.cshtml: -------------------------------------------------------------------------------- 1 | @model LayoutViewModel 2 | @{ 3 | Model.Title = "出错啦"; 4 | } 5 |
6 |
7 | @Model.Title 8 |
9 |
10 | @Model.Error 11 |
12 |
13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/Views/_Shared/Message.cshtml: -------------------------------------------------------------------------------- 1 | @model LayoutViewModel 2 | { 3 | Model.Title = "Server Message"; 4 | } 5 |
6 |
7 | @Model.Title 8 |
9 |
10 | @Model.Model 11 |
12 |
13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = "_Shared/Layout.cshtml"; 3 | } 4 | 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/arrow-right-b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/arrow-right-b.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/arrows-l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/arrows-l.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/arrows-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/arrows-s.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/bg-grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/bg-grid.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/close-top-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/close-top-right.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/file-excel-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/file-excel-128.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/file-word-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/file-word-128.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/iphone5s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/iphone5s.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/loading_1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/loading_1.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/marker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/marker.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/menu-more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/menu-more.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/modal-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/modal-black.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/modal-black80.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/modal-black80.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/modal.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/progressing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/progressing.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/remove-42.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/remove-42.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/remove16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/remove16.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/sort-asc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/sort-asc.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/sort-desc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/sort-desc.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/sort-none.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/sort-none.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/toast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/toast.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/images/zooms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/Areas/Public/css/images/zooms.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/pad.css: -------------------------------------------------------------------------------- 1 | .inner { 2 | width: 1000px; 3 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/pages/account-register-step1.css: -------------------------------------------------------------------------------- 1 | .txt { 2 | width: 400px; 3 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Areas/Public/css/pages/account-register-step2.css: -------------------------------------------------------------------------------- 1 | .txt { 2 | width: 400px; 3 | } 4 | textarea.txt { 5 | height: 80px; 6 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/Global.asax: -------------------------------------------------------------------------------- 1 | <%@ Application Codebehind="Global.asax.cs" Inherits="MvcSolution.Web.Main.MainApplication" Language="C#" %> 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/debug.bat: -------------------------------------------------------------------------------- 1 | grunt debug -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install -g grunt-cli 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/AUTHORS: -------------------------------------------------------------------------------- 1 | "Cowboy" Ben Alman (http://benalman.com/) 2 | Tyler Kellen (http://goingslowly.com/) 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/docs/concat-overview.md: -------------------------------------------------------------------------------- 1 | Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide. -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/expected/custom_options: -------------------------------------------------------------------------------- 1 | /* THIS TEST IS AWESOME */ 2 | file1 3 | ; 4 | file2dude -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/expected/default_options: -------------------------------------------------------------------------------- 1 | file1 2 | file2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/expected/handling_invalid_files: -------------------------------------------------------------------------------- 1 | file1 2 | file2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/fixtures/banner.js: -------------------------------------------------------------------------------- 1 | 2 | /* THIS 3 | * IS 4 | * A 5 | * SAMPLE 6 | * BANNER! 7 | */ 8 | 9 | // Comment 10 | 11 | /* Comment */ 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/fixtures/banner2.js: -------------------------------------------------------------------------------- 1 | 2 | /*! SAMPLE 3 | * BANNER */ 4 | 5 | // Comment 6 | 7 | /* Comment */ 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/fixtures/banner3.js: -------------------------------------------------------------------------------- 1 | 2 | // This is 3 | // A sample 4 | // Banner 5 | 6 | // But this is not 7 | 8 | /* And neither 9 | * is this 10 | */ 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/fixtures/file1: -------------------------------------------------------------------------------- 1 | file1 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-concat/test/fixtures/file2: -------------------------------------------------------------------------------- 1 | file2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | 12 | [*.md] 13 | trim_trailing_whitespace = false 14 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true 13 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_script: 6 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/AUTHORS: -------------------------------------------------------------------------------- 1 | Tim Branyen (http://goingslowly.com/) 2 | Chris Talkington (http://christalkington.com/) 3 | Thomas Boyt (http://www.thomasboyt.com/) 4 | Liam Kaufman (http://liamkaufman.com/) 5 | Jörn Zaefferer (http://bassistance.de) 6 | Braden Anderson (http://google.com/profiles/bluej100) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/docs/cssmin-overview.md: -------------------------------------------------------------------------------- 1 | Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide. 2 | 3 | Files are compressed with [clean-css](https://github.com/GoalSmashers/clean-css). -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/docs/overview.md: -------------------------------------------------------------------------------- 1 | *This plugin was designed to work with Grunt 0.4.x. If you're still using grunt v0.3.x it's strongly recommended that [you upgrade](http://gruntjs.com/upgrading-from-0.3-to-0.4), but in case you can't please use [v0.3.2](https://github.com/gruntjs/grunt-contrib-cssmin/tree/grunt-0.3-stable).* 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/.bin/cleancss: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../clean-css/bin/cleancss" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../clean-css/bin/cleancss" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/.bin/cleancss.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\clean-css\bin\cleancss" %* 3 | ) ELSE ( 4 | node "%~dp0\..\clean-css\bin\cleancss" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/clean-css/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/clean'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_install: 6 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/AUTHORS: -------------------------------------------------------------------------------- 1 | Tyler Kellen (http://goingslowly.com/) 2 | Chris Talkington (http://christalkington.com/) 3 | Larry Davis (http://lazd.net/) 4 | Sindre Sorhus (http://sindresorhus.com) 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/node_modules/zlib-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/node_modules/grunt-lib-contrib/node_modules/zlib-browserify/readme.md: -------------------------------------------------------------------------------- 1 | Zlib in yo' browser. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/expected/inline_import.css: -------------------------------------------------------------------------------- 1 | body{color:#00f;background-color:red}p{color:#0f0;background-color:#f0f} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/expected/input_bannered.css: -------------------------------------------------------------------------------- 1 | /* custom banner */ 2 | body{border:1px solid gold} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/expected/style.css: -------------------------------------------------------------------------------- 1 | body{margin:0;font-size:18px}a{color:#00f}h1{font-size:48px;font-weight:700} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/expected/with-banner.css: -------------------------------------------------------------------------------- 1 | /* module name - my awesome css banner */ 2 | body{margin:0;font-size:18px}a{color:#00f}h1{font-size:48px;font-weight:700} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/inner/input_inline_import.css: -------------------------------------------------------------------------------- 1 | @import url(input_inline_import2.css); 2 | p { 3 | background-color: #f0f; 4 | } 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/inner/input_inline_import2.css: -------------------------------------------------------------------------------- 1 | p { 2 | color: #0f0; 3 | } 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/input_bannered.css: -------------------------------------------------------------------------------- 1 | /*! special banner comment */ 2 | body { 3 | border: 1px solid gold; 4 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/input_inline_import.css: -------------------------------------------------------------------------------- 1 | @import url(input_inline_import2.css); 2 | body { 3 | background-color: #f00; 4 | } 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/input_inline_import2.css: -------------------------------------------------------------------------------- 1 | body { 2 | color: #00f; 3 | } 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/input_one.css: -------------------------------------------------------------------------------- 1 | body { 2 | margin: 0; 3 | font-size: 18px; 4 | } 5 | a { color: #00f; } 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-cssmin/test/fixtures/input_two.css: -------------------------------------------------------------------------------- 1 | h1 { 2 | font-size: 48px; 3 | font-weight: bold; 4 | } 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/.jshintignore: -------------------------------------------------------------------------------- 1 | test/fixtures/dontlint.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_script: 6 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/AUTHORS: -------------------------------------------------------------------------------- 1 | "Cowboy" Ben Alman (http://benalman.com/) 2 | Tyler Kellen (http://goingslowly.com/) 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/docs/jshint-overview.md: -------------------------------------------------------------------------------- 1 | Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide. 2 | 3 | For more explanations of the lint errors JSHint will throw at you please visit [jslinterrors.com](http://jslinterrors.com/). 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/.bin/jshint: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../jshint/bin/jshint" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../jshint/bin/jshint" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/.bin/jshint.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\jshint\bin\jshint" %* 3 | ) ELSE ( 4 | node "%~dp0\..\jshint\bin\jshint" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/bin/apply: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var shjs = require("shelljs"); 4 | var url = "https://github.com/jshint/jshint/pull/" + process.argv[2] + ".diff"; 5 | 6 | shjs.exec('curl "' + url + '" | git apply'); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/bin/jshint: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../src/cli.js").interpret(process.argv); 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/.bin/shjs: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../shelljs/bin/shjs" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../shelljs/bin/shjs" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/.bin/shjs.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\shelljs\bin\shjs" %* 3 | ) ELSE ( 4 | node "%~dp0\..\shelljs\bin\shjs" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/examples/glob.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var cli = require('cli').enable('glob'); 4 | 5 | //Running `./glob.js *.js` will output a list of .js files in this directory 6 | console.log(cli.args); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/examples/progress.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var cli = require('cli'); 4 | 5 | var i = 0, interval = setInterval(function () { 6 | cli.progress(++i / 100); 7 | if (i === 100) { 8 | clearInterval(interval); 9 | cli.ok('Finished!'); 10 | } 11 | }, 50); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/examples/spinner.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var cli = require('cli'); 4 | 5 | cli.spinner('Working..'); 6 | 7 | setTimeout(function () { 8 | cli.spinner('Working.. done!', true); //End the spinner 9 | }, 3000); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./cli'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/node_modules/inherits/inherits.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inherits 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/test/new-glob-optional-options.js: -------------------------------------------------------------------------------- 1 | var Glob = require('../glob.js').Glob; 2 | var test = require('tap').test; 3 | 4 | test('new glob, with cb, and no options', function (t) { 5 | new Glob(__filename, function(er, results) { 6 | if (er) throw er; 7 | t.same(results, [__filename]); 8 | t.end(); 9 | }); 10 | }); 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/cli/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/console-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .monitor 3 | .*.swp 4 | .nodemonignore 5 | releases 6 | *.log 7 | *.err 8 | fleet.json 9 | public/browserify 10 | bin/*.json 11 | .bin 12 | build 13 | compile 14 | .lock-wscript 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/console-browserify/.testem.json: -------------------------------------------------------------------------------- 1 | { 2 | "launchers": { 3 | "node": { 4 | "command": "npm test" 5 | } 6 | }, 7 | "src_files": [ 8 | "./**/*.js" 9 | ], 10 | "before_tests": "npm run build", 11 | "on_exit": "rm test/static/bundle.js", 12 | "test_page": "test/static/index.html", 13 | "launch_in_dev": ["node", "phantomjs"] 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/console-browserify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/console-browserify/test/static/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | TAPE Example 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/.documentup.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ShellJS", 3 | "twitter": [ 4 | "r2r" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/global.js: -------------------------------------------------------------------------------- 1 | var shell = require('./shell.js'); 2 | for (var cmd in shell) 3 | global[cmd] = shell[cmd]; 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/jshint.json: -------------------------------------------------------------------------------- 1 | { 2 | "loopfunc": true, 3 | "sub": true 4 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/.npmignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/a.txt: -------------------------------------------------------------------------------- 1 | This is line one 2 | This is line two 3 | 4 | This is line four 5 | . 6 | . 7 | More content here 8 | . 9 | . 10 | 11 | This is line eleven 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/a/b/c/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/a/b/c/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/b/a/b/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/b/a/b/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/c/a/b/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/c/a/b/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/chmod/file1: -------------------------------------------------------------------------------- 1 | this is test file 1 2 | default state should be 0644 (rw-r--r--) 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/cp/a: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/cp/b: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/cp/dir_a/z: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/cp/dir_b/dir_b_a/dir_b_a_a/z: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/external/node_script.js: -------------------------------------------------------------------------------- 1 | console.log('node_script_1234'); 2 | 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file1: -------------------------------------------------------------------------------- 1 | test1 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file1.js: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file1.txt: -------------------------------------------------------------------------------- 1 | test1 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file2: -------------------------------------------------------------------------------- 1 | test2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file2.js: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/file2.txt: -------------------------------------------------------------------------------- 1 | test2 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/.hidden: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/a: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/b: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/dir1/a_dir1: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/dir1/dir11/a_dir11: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/find/dir2/a_dir1: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/issue44/main.js: -------------------------------------------------------------------------------- 1 | 123 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/.hidden_dir/nada: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/.hidden_file: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/a_dir/.hidden_dir/nada: -------------------------------------------------------------------------------- 1 | nada -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/a_dir/b_dir/z: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/a_dir/nada: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/file1: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/file1.js: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/file2: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/file2.js: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/ls/filename(with)[chars$]^that.must+be-escaped: -------------------------------------------------------------------------------- 1 | asdf 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/pushd/a/dummy: -------------------------------------------------------------------------------- 1 | meh -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/shelljs/test/resources/pushd/b/c/dummy: -------------------------------------------------------------------------------- 1 | meh -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Rakefile 3 | docs/ 4 | raw/ 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | notifications: 5 | email: false 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/CNAME: -------------------------------------------------------------------------------- 1 | underscorejs.org 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/favicon.ico -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/node_modules/jshint/node_modules/underscore/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./underscore'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/test/fixtures/dontlint.txt: -------------------------------------------------------------------------------- 1 | Dont lint me! -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/test/fixtures/lint.txt: -------------------------------------------------------------------------------- 1 | // This file is encoded with UTF-16 BE, which produces an error on character 0 with JSHint -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/test/fixtures/missingsemicolon.js: -------------------------------------------------------------------------------- 1 | var missingsemicolon = true 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-jshint/test/fixtures/nodemodule.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function() { 4 | }; 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_script: 5 | - npm install -g grunt-cli 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/AUTHORS: -------------------------------------------------------------------------------- 1 | "Cowboy" Ben Alman (http://benalman.com) 2 | Tyler Kellen (http://goingslowly.com) 3 | Jarrod Overson (http://jarrodoverson.com) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/docs/uglify-overview.md: -------------------------------------------------------------------------------- 1 | Task targets, files and options may be specified according to the grunt [Configuring tasks](http://gruntjs.com/configuring-tasks) guide. -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/.bin/uglifyjs: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../uglify-js/bin/uglifyjs" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../uglify-js/bin/uglifyjs" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/.bin/uglifyjs.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\uglify-js\bin\uglifyjs" %* 3 | ) ELSE ( 4 | node "%~dp0\..\uglify-js\bin\uglifyjs" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | before_install: 5 | - npm install -g grunt-cli -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/AUTHORS: -------------------------------------------------------------------------------- 1 | Tyler Kellen (http://goingslowly.com/) 2 | Chris Talkington (http://christalkington.com/) 3 | Larry Davis (http://lazd.net/) 4 | Sindre Sorhus (http://sindresorhus.com) 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/node_modules/zlib-browserify/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/grunt-lib-contrib/node_modules/zlib-browserify/readme.md: -------------------------------------------------------------------------------- 1 | Zlib in yo' browser. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/.npmignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/bool.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var util = require('util'); 3 | var argv = require('optimist').argv; 4 | 5 | if (argv.s) { 6 | util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); 7 | } 8 | console.log( 9 | (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') 10 | ); 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/boolean_double.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .boolean(['x','y','z']) 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y, argv.z ]); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/boolean_single.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .boolean('v') 4 | .argv 5 | ; 6 | console.dir(argv.v); 7 | console.dir(argv._); 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/default_hash.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('optimist') 4 | .default({ x : 10, y : 10 }) 5 | .argv 6 | ; 7 | 8 | console.log(argv.x + argv.y); 9 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/default_singles.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .default('x', 10) 4 | .default('y', 10) 5 | .argv 6 | ; 7 | console.log(argv.x + argv.y); 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/divide.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var argv = require('optimist') 4 | .usage('Usage: $0 -x [num] -y [num]') 5 | .demand(['x','y']) 6 | .argv; 7 | 8 | console.log(argv.x / argv.y); 9 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/nonopt.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | console.log(argv._); 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/reflect.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.dir(require('optimist').argv); 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/short.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | console.log('(%d,%d)', argv.x, argv.y); 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/string.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist') 3 | .string('x', 'y') 4 | .argv 5 | ; 6 | console.dir([ argv.x, argv.y ]); 7 | 8 | /* Turns off numeric coercion: 9 | ./node string.js -x 000123 -y 9876 10 | [ '000123', '9876' ] 11 | */ 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/example/xup.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('optimist').argv; 3 | 4 | if (argv.rif - 5 * argv.xup > 7.138) { 5 | console.log('Buy more riffiwobbles'); 6 | } 7 | else { 8 | console.log('Sell the xupptumblers'); 9 | } 10 | 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/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 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/test/_/argv.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | console.log(JSON.stringify(process.argv)); 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/optimist/test/_/bin.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var argv = require('../../index').argv 3 | console.log(JSON.stringify(argv._)); 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/source-map/.npmignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | node_modules/* 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/source-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - "0.10" -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/source-map/build/suffix-source-map.jsm: -------------------------------------------------------------------------------- 1 | /* -*- Mode: js; js-indent-level: 2; -*- */ 2 | /////////////////////////////////////////////////////////////////////////////// 3 | 4 | this.SourceMapConsumer = require('source-map/source-map-consumer').SourceMapConsumer; 5 | this.SourceMapGenerator = require('source-map/source-map-generator').SourceMapGenerator; 6 | this.SourceNode = require('source-map/source-node').SourceNode; 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/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 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/node_modules/source-map/build/test-suffix.js: -------------------------------------------------------------------------------- 1 | function run_test() { 2 | runSourceMapTests('{THIS_MODULE}', do_throw); 3 | } 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/test/compress/arrays.js: -------------------------------------------------------------------------------- 1 | holes_and_undefined: { 2 | input: { 3 | x = [1, 2, undefined]; 4 | y = [1, , 2, ]; 5 | z = [1, undefined, 3]; 6 | } 7 | expect: { 8 | x=[1,2,void 0]; 9 | y=[1,,2]; 10 | z=[1,void 0,3]; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/node_modules/uglify-js/test/compress/issue-12.js: -------------------------------------------------------------------------------- 1 | keep_name_of_getter: { 2 | options = { unused: true }; 3 | input: { a = { get foo () {} } } 4 | expect: { a = { get foo () {} } } 5 | } 6 | 7 | keep_name_of_setter: { 8 | options = { unused: true }; 9 | input: { a = { set foo () {} } } 10 | expect: { a = { set foo () {} } } 11 | } 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/comments.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * I am a comment 3 | */ 4 | function foo(){return 42}// @preserve preserve 5 | // @license license 6 | function bar(){return 2*foo()}/* @preserve 7 | * multiline preserve 8 | */ 9 | /* @license 10 | * multiline license 11 | */ 12 | function baz(){return bar()*bar()} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/compress.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(argumentC,argumentD){return longNameA+longNameB+argumentC+argumentD}var longNameA=1,longNameB=2,result=longFunctionC(3,4); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/compress_mangle.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(n,o){return longNameA+longNameB+n+o}var longNameA=1,longNameB=2,result=longFunctionC(3,4); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/compress_mangle_beautify.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(n, o) { 2 | return longNameA + longNameB + n + o; 3 | } 4 | 5 | var longNameA = 1, longNameB = 2, result = longFunctionC(3, 4); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/compress_mangle_except.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(argumentC,n){return longNameA+longNameB+argumentC+n}var longNameA=1,longNameB=2,result=longFunctionC(3,4); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/compress_mangle_sourcemap: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"/dev/null","sources":["test/fixtures/src/simple.js"],"names":["longFunctionC","argumentC","argumentD","longNameA","longNameB","result"],"mappings":"AAOA,QAASA,eAAcC,EAAUC,GAC/B,MAAOC,WAAYC,UAAYH,EAAYC,EAL7C,GAAIC,WAAY,EAEZC,UAAY,EAMZC,OAASL,cAAc,EAAE"} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/exportAll.js: -------------------------------------------------------------------------------- 1 | (function(exports,global){function longFunctionC(argumentC,argumentD){return longNameA+longNameB+argumentC+argumentD}global.testExport=exports;var longNameA=1,longNameB=2,result=longFunctionC(3,4);exports.longNameA=longNameA,exports.longNameB=longNameB,exports.longFunctionC=longFunctionC,exports.result=result})({},function(){return this}()); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/multifile.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(argumentC,argumentD){return longNameA+longNameB+argumentC+argumentD}function foo(){return 42}function bar(){return 2*foo()}function baz(){return bar()*bar()}var longNameA=1,longNameB=2,result=longFunctionC(3,4); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/multiple_sourcemaps1.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(n,o){return longNameA+longNameB+n+o}var longNameA=1,longNameB=2,result=longFunctionC(3,4); 2 | //@ sourceMappingURL=test/fixtures/expected/multiple_sourcemaps1.mapurl -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/multiple_sourcemaps1.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"test/fixtures/expected/multiple_sourcemaps1.js","sources":["test/fixtures/src/simple.js"],"names":["longFunctionC","argumentC","argumentD","longNameA","longNameB","result"],"mappings":"AAOA,QAASA,eAAcC,EAAUC,GAC/B,MAAOC,WAAYC,UAAYH,EAAYC,EAL7C,GAAIC,WAAY,EAEZC,UAAY,EAMZC,OAASL,cAAc,EAAE"} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/multiple_sourcemaps2.js: -------------------------------------------------------------------------------- 1 | function foo(){return 42}function bar(){return 2*foo()}function baz(){return bar()*bar()} 2 | //@ sourceMappingURL=test/fixtures/expected/multiple_sourcemaps2.mapurl -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/multiple_sourcemaps2.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"test/fixtures/expected/multiple_sourcemaps2.js","sources":["test/fixtures/src/comments.js"],"names":["foo","bar","baz"],"mappings":"AAGA,QAASA,OACP,MAAO,IAIT,QAASC,OACP,MAAa,GAAND,MAQT,QAASE,OACP,MAAOD,OAAMA"} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/sourcemap_prefix: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"/dev/null","sources":["simple.js"],"names":["longFunctionC","argumentC","argumentD","longNameA","longNameB","result"],"mappings":"AAOA,QAASA,eAAcC,EAAUC,GAC/B,MAAOC,WAAYC,UAAYH,EAAYC,EAL7C,GAAIC,WAAY,EAEZC,UAAY,EAMZC,OAASL,cAAc,EAAE"} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/sourcemapurl.js: -------------------------------------------------------------------------------- 1 | function longFunctionC(n,o){return longNameA+longNameB+n+o}var longNameA=1,longNameB=2,result=longFunctionC(3,4); 2 | //@ sourceMappingURL=js/sourcemapurl.js.map -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/expected/wrap.js: -------------------------------------------------------------------------------- 1 | (function(exports,global){function longFunctionC(argumentC,argumentD){return longNameA+longNameB+argumentC+argumentD}global.testExport=exports;var longNameA=1,longNameB=2;longFunctionC(3,4)})({},function(){return this}()); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/src/comments.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * I am a comment 3 | */ 4 | function foo() { 5 | return 42; 6 | } 7 | // @preserve preserve 8 | // @license license 9 | function bar() { 10 | return foo()*2; 11 | } 12 | /* @preserve 13 | * multiline preserve 14 | */ 15 | /* @license 16 | * multiline license 17 | */ 18 | function baz() { 19 | return bar()*bar(); 20 | } 21 | // end - not preserved -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-uglify/test/fixtures/src/simple.js: -------------------------------------------------------------------------------- 1 | 2 | // Hello world, I'm a comment! 3 | 4 | var longNameA = 1; 5 | 6 | var longNameB = 2; 7 | 8 | function longFunctionC(argumentC,argumentD) { 9 | return longNameA + longNameB + argumentC + argumentD; 10 | } 11 | 12 | var result = longFunctionC(3,4); 13 | 14 | /*! I might be preserved, yay! */ 15 | 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | tmp 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | before_script: 6 | - npm install -g grunt-cli 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/AUTHORS: -------------------------------------------------------------------------------- 1 | Kyle Robinson Young (http://dontkry.com) 2 | "Cowboy" Ben Alman (http://benalman.com) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/docs/watch-faqs.md: -------------------------------------------------------------------------------- 1 | # FAQs 2 | 3 | ## How do I fix the error `EMFILE: Too many opened files.`? 4 | This is because of your system's max opened file limit. For OSX the default is very low (256). Increase your limit with `ulimit -n 10480`, the number being the new max limit. If you're still running into issues then consider setting the option `forceWatchMethod: 'old'` to use the older and slower stat polling watch method. 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/docs/watch-overview.md: -------------------------------------------------------------------------------- 1 | # Overview 2 | 3 | Inside your `Gruntfile.js` file, add a section named `watch`. This section specifies the files to watch, tasks to run when an event occurs and the options used. -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/.editorconfig: -------------------------------------------------------------------------------- 1 | # editorconfig.org 2 | root = true 3 | 4 | [*] 5 | indent_style = space 6 | indent_size = 2 7 | end_of_line = lf 8 | charset = utf-8 9 | trim_trailing_whitespace = true 10 | insert_final_newline = true 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "boss": true, 11 | "eqnull": true, 12 | "node": true, 13 | "es5": true 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - 0.9 5 | before_script: 6 | - npm install -g grunt-cli 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/async/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "deps/nodeunit"] 2 | path = deps/nodeunit 3 | url = git://github.com/caolan/nodeunit.git 4 | [submodule "deps/UglifyJS"] 5 | path = deps/UglifyJS 6 | url = https://github.com/mishoo/UglifyJS.git 7 | [submodule "deps/nodelint"] 8 | path = deps/nodelint 9 | url = https://github.com/tav/nodelint.git 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/async/.npmignore: -------------------------------------------------------------------------------- 1 | deps 2 | dist 3 | test 4 | nodelint.cfg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/async/index.js: -------------------------------------------------------------------------------- 1 | // This file is just added for convenience so this repository can be 2 | // directly checked out into a project's deps folder 3 | module.exports = require('./lib/async'); 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/Project (LO)/one.js: -------------------------------------------------------------------------------- 1 | var one = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/nested/one.js: -------------------------------------------------------------------------------- 1 | var one = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/nested/sub/two.js: -------------------------------------------------------------------------------- 1 | var two = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/nested/three.js: -------------------------------------------------------------------------------- 1 | var three = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/one.js: -------------------------------------------------------------------------------- 1 | var test = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/sub/one.js: -------------------------------------------------------------------------------- 1 | var one = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/node_modules/gaze/test/fixtures/sub/two.js: -------------------------------------------------------------------------------- 1 | var two = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/multiTargets/lib/fail.js: -------------------------------------------------------------------------------- 1 | var fail = false; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/multiTargets/lib/interrupt.js: -------------------------------------------------------------------------------- 1 | var interrupt = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/multiTargets/lib/one.js: -------------------------------------------------------------------------------- 1 | var test = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/multiTargets/lib/two.js: -------------------------------------------------------------------------------- 1 | var test = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/multiTargets/lib/wait.js: -------------------------------------------------------------------------------- 1 | var wait = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt-contrib-watch/test/fixtures/oneTarget/lib/one.js: -------------------------------------------------------------------------------- 1 | var test = true; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | test 3 | .travis.yml 4 | AUTHORS 5 | CHANGELOG 6 | CONTRIBUTING.MD 7 | custom-gruntfile.js 8 | Gruntfile.js 9 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | Please see the [Contributing to grunt](http://gruntjs.com/contributing) guide for information on contributing to this project. 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/lib/grunt/event.js: -------------------------------------------------------------------------------- 1 | /* 2 | * grunt 3 | * http://gruntjs.com/ 4 | * 5 | * Copyright (c) 2013 "Cowboy" Ben Alman 6 | * Licensed under the MIT license. 7 | * https://github.com/gruntjs/grunt/blob/master/LICENSE-MIT 8 | */ 9 | 10 | 'use strict'; 11 | 12 | // External lib. 13 | var EventEmitter2 = require('eventemitter2').EventEmitter2; 14 | 15 | // Awesome. 16 | module.exports = new EventEmitter2({wildcard: true}); 17 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/cake: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../coffee-script/bin/cake" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../coffee-script/bin/cake" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/cake.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\coffee-script\bin\cake" %* 3 | ) ELSE ( 4 | node "%~dp0\..\coffee-script\bin\cake" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/coffee: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../coffee-script/bin/coffee" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../coffee-script/bin/coffee" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/coffee.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\coffee-script\bin\coffee" %* 3 | ) ELSE ( 4 | node "%~dp0\..\coffee-script\bin\coffee" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/js-yaml: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../js-yaml/bin/js-yaml.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../js-yaml/bin/js-yaml.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/js-yaml.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\js-yaml\bin\js-yaml.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\js-yaml\bin\js-yaml.js" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../nopt/bin/nopt.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../nopt/bin/nopt.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/nopt.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\nopt\bin\nopt.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\nopt\bin\nopt.js" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/which: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../which/bin/which" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../which/bin/which" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/.bin/which.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\which\bin\which" %* 3 | ) ELSE ( 4 | node "%~dp0\..\which\bin\which" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/async/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "deps/nodeunit"] 2 | path = deps/nodeunit 3 | url = git://github.com/caolan/nodeunit.git 4 | [submodule "deps/UglifyJS"] 5 | path = deps/UglifyJS 6 | url = https://github.com/mishoo/UglifyJS.git 7 | [submodule "deps/nodelint"] 8 | path = deps/nodelint 9 | url = https://github.com/tav/nodelint.git 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/async/.npmignore: -------------------------------------------------------------------------------- 1 | deps 2 | dist 3 | test 4 | nodelint.cfg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/async/index.js: -------------------------------------------------------------------------------- 1 | // This file is just added for convenience so this repository can be 2 | // directly checked out into a project's deps folder 3 | module.exports = require('./lib/async'); 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/coffee-script/.npmignore: -------------------------------------------------------------------------------- 1 | *.coffee 2 | *.html 3 | .DS_Store 4 | .git* 5 | Cakefile 6 | documentation/ 7 | examples/ 8 | extras/coffee-script.js 9 | raw/ 10 | src/ 11 | test/ 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/coffee-script/CNAME: -------------------------------------------------------------------------------- 1 | coffeescript.org -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/coffee-script/bin/cake: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib'); 6 | 7 | require(lib + '/coffee-script/cake').run(); 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/coffee-script/bin/coffee: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var path = require('path'); 4 | var fs = require('fs'); 5 | var lib = path.join(path.dirname(fs.realpathSync(__filename)), '../lib'); 6 | 7 | require(lib + '/coffee-script/command').run(); 8 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/coffee-script/lib/coffee-script/index.js: -------------------------------------------------------------------------------- 1 | // Generated by CoffeeScript 1.3.3 2 | (function() { 3 | var key, val, _ref; 4 | 5 | _ref = require('./coffee-script'); 6 | for (key in _ref) { 7 | val = _ref[key]; 8 | exports[key] = val; 9 | } 10 | 11 | }).call(this); 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/colors/themes/winston-dark.js: -------------------------------------------------------------------------------- 1 | module['exports'] = { 2 | silly: 'rainbow', 3 | input: 'black', 4 | verbose: 'cyan', 5 | prompt: 'grey', 6 | info: 'green', 7 | data: 'grey', 8 | help: 'cyan', 9 | warn: 'yellow', 10 | debug: 'blue', 11 | error: 'red' 12 | }; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/colors/themes/winston-light.js: -------------------------------------------------------------------------------- 1 | module['exports'] = { 2 | silly: 'rainbow', 3 | input: 'grey', 4 | verbose: 'cyan', 5 | prompt: 'grey', 6 | info: 'green', 7 | data: 'grey', 8 | help: 'cyan', 9 | warn: 'yellow', 10 | debug: 'blue', 11 | error: 'red' 12 | }; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/dateformat/test/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 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/eventemitter2/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/eventemitter2'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": "nofunc", 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "unused": true, 11 | "boss": true, 12 | "eqnull": true, 13 | "node": true 14 | } 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | - '0.10' 5 | before_script: 6 | - npm install -g grunt-cli 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/test/fixtures/10-stderr.txt: -------------------------------------------------------------------------------- 1 | stderr 0 2 | stderr 1 3 | stderr 2 4 | stderr 3 5 | stderr 4 6 | stderr 5 7 | stderr 6 8 | stderr 7 9 | stderr 8 10 | stderr 9 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/test/fixtures/10-stdout-stderr.txt: -------------------------------------------------------------------------------- 1 | stdout 0 2 | stderr 0 3 | stdout 1 4 | stdout 2 5 | stderr 1 6 | stdout 3 7 | stderr 2 8 | stderr 3 9 | stdout 4 10 | stderr 4 11 | stdout 5 12 | stderr 5 13 | stdout 6 14 | stderr 6 15 | stdout 7 16 | stderr 7 17 | stdout 8 18 | stderr 8 19 | stdout 9 20 | stderr 9 21 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/test/fixtures/10-stdout.txt: -------------------------------------------------------------------------------- 1 | stdout 0 2 | stdout 1 3 | stdout 2 4 | stdout 3 5 | stdout 4 6 | stdout 5 7 | stdout 6 8 | stdout 7 9 | stdout 8 10 | stdout 9 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/exit/test/fixtures/create-files.sh: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | 3 | rm 10*.txt 4 | for n in 10 100 1000; do 5 | node log.js 0 $n stdout stderr &> $n-stdout-stderr.txt 6 | node log.js 0 $n stdout &> $n-stdout.txt 7 | node log.js 0 $n stderr &> $n-stderr.txt 8 | done 9 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "loopfunc": true, 3 | "curly": true, 4 | "eqeqeq": true, 5 | "immed": true, 6 | "latedef": true, 7 | "newcap": true, 8 | "noarg": true, 9 | "sub": true, 10 | "undef": true, 11 | "unused": true, 12 | "boss": true, 13 | "eqnull": true, 14 | "node": true, 15 | "es5": true 16 | } 17 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/b/bar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/b/bar.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/foo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/a/foo.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/aaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/findup-sync/test/fixtures/aaa.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/getobject/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "curly": true, 3 | "eqeqeq": true, 4 | "immed": true, 5 | "latedef": true, 6 | "newcap": true, 7 | "noarg": true, 8 | "sub": true, 9 | "undef": true, 10 | "unused": true, 11 | "boss": true, 12 | "eqnull": true, 13 | "node": true, 14 | "es5": true 15 | } 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/getobject/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/getobject/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | before_script: 6 | - npm install -g grunt-cli 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/.npmignore: -------------------------------------------------------------------------------- 1 | .*.swp 2 | test/a/ 3 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/examples/g.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "test/a/**/[cg]/../[cg]" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true, sync:true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/examples/usr-local.js: -------------------------------------------------------------------------------- 1 | var Glob = require("../").Glob 2 | 3 | var pattern = "{./*/*,/*,/usr/local/*}" 4 | console.log(pattern) 5 | 6 | var mg = new Glob(pattern, {mark: true}, function (er, matches) { 7 | console.log("matches", matches) 8 | }) 9 | console.log("after") 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/glob/test/zz-cleanup.js: -------------------------------------------------------------------------------- 1 | // remove the fixtures 2 | var tap = require("tap") 3 | , rimraf = require("rimraf") 4 | , path = require("path") 5 | 6 | tap.test("cleanup fixtures", function (t) { 7 | rimraf(path.resolve(__dirname, "a"), function (er) { 8 | t.ifError(er, "removed") 9 | t.end() 10 | }) 11 | }) 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *~ 3 | *sublime-* 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | - 0.8 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/encodings/big5.js: -------------------------------------------------------------------------------- 1 | var big5Table = require('./table/big5.js'); 2 | module.exports = { 3 | 'windows950': 'big5', 4 | 'cp950': 'big5', 5 | 'big5': { 6 | type: 'table', 7 | table: big5Table 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/encodings/gbk.js: -------------------------------------------------------------------------------- 1 | var gbkTable = require('./table/gbk.js'); 2 | module.exports = { 3 | 'windows936': 'gbk', 4 | 'gb2312': 'gbk', 5 | 'gbk': { 6 | type: 'table', 7 | table: gbkTable 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/test/big5File.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/test/big5File.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/test/gbkFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/iconv-lite/test/gbkFile.txt -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/examples/custom_types.yaml: -------------------------------------------------------------------------------- 1 | subject: Custom types in JS-YAML 2 | spaces: 3 | - !space 4 | height: 1000 5 | width: 1000 6 | points: 7 | - !point [ 10, 43, 23 ] 8 | - !point [ 165, 0, 50 ] 9 | - !point [ 100, 100, 100 ] 10 | 11 | - !space 12 | height: 64 13 | width: 128 14 | points: 15 | - !point [ 12, 43, 0 ] 16 | - !point [ 1, 4, 90 ] 17 | 18 | - !space {} # An empty space 19 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/examples/sample_document.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var inspect = require('util').inspect; 5 | 6 | // just require jsyaml 7 | require('../lib/js-yaml'); 8 | 9 | 10 | try { 11 | var doc = require(__dirname + '/sample_document.yaml'); 12 | console.log(inspect(doc, false, 10, true)); 13 | } catch (e) { 14 | console.log(e.stack || e.toString()); 15 | } 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/js-yaml.js'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/schema/default.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var Schema = require('../schema'); 5 | 6 | 7 | module.exports = Schema.DEFAULT = new Schema({ 8 | include: [ 9 | require('./safe') 10 | ], 11 | explicit: [ 12 | require('../type/js/undefined'), 13 | require('../type/js/regexp'), 14 | require('../type/js/function') 15 | ] 16 | }); 17 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/schema/minimal.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var Schema = require('../schema'); 5 | 6 | 7 | module.exports = new Schema({ 8 | explicit: [ 9 | require('../type/str'), 10 | require('../type/seq'), 11 | require('../type/map') 12 | ] 13 | }); 14 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/type/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var Type = require('../type'); 5 | 6 | 7 | module.exports = new Type('tag:yaml.org,2002:map', { 8 | loader: { 9 | kind: 'object' 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/type/merge.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var NIL = require('../common').NIL; 5 | var Type = require('../type'); 6 | 7 | 8 | function resolveYamlMerge(object /*, explicit*/) { 9 | return '<<' === object ? object : NIL; 10 | } 11 | 12 | 13 | module.exports = new Type('tag:yaml.org,2002:merge', { 14 | loader: { 15 | kind: 'string', 16 | resolver: resolveYamlMerge 17 | } 18 | }); 19 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/type/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var Type = require('../type'); 5 | 6 | 7 | module.exports = new Type('tag:yaml.org,2002:seq', { 8 | loader: { 9 | kind: 'array' 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/lib/js-yaml/type/str.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | 4 | var Type = require('../type'); 5 | 6 | 7 | module.exports = new Type('tag:yaml.org,2002:str', { 8 | loader: { 9 | kind: 'string' 10 | } 11 | }); 12 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../esprima/bin/esparse.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../esprima/bin/esparse.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/.bin/esparse.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\esprima\bin\esparse.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\esprima\bin\esparse.js" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | basedir=`dirname "$0"` 3 | 4 | case `uname` in 5 | *CYGWIN*) basedir=`cygpath -w "$basedir"`;; 6 | esac 7 | 8 | if [ -x "$basedir/node" ]; then 9 | "$basedir/node" "$basedir/../esprima/bin/esvalidate.js" "$@" 10 | ret=$? 11 | else 12 | node "$basedir/../esprima/bin/esvalidate.js" "$@" 13 | ret=$? 14 | fi 15 | exit $ret 16 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/.bin/esvalidate.cmd: -------------------------------------------------------------------------------- 1 | @IF EXIST "%~dp0\node.exe" ( 2 | "%~dp0\node.exe" "%~dp0\..\esprima\bin\esvalidate.js" %* 3 | ) ELSE ( 4 | node "%~dp0\..\esprima\bin\esvalidate.js" %* 5 | ) -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/examples/help.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 'use strict'; 3 | 4 | var ArgumentParser = require('../lib/argparse').ArgumentParser; 5 | var parser = new ArgumentParser({ 6 | version: '0.0.1', 7 | addHelp: true, 8 | description: 'Argparse examples: help', 9 | epilog: 'help epilog', 10 | prog: 'help_example_prog', 11 | usage: 'Usage %(prog)s ' 12 | }); 13 | parser.printHelp(); 14 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/argparse'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/lib/const.js: -------------------------------------------------------------------------------- 1 | // 2 | // Constants 3 | // 4 | module.exports.EOL = '\n'; 5 | 6 | module.exports.SUPPRESS = '==SUPPRESS=='; 7 | 8 | module.exports.OPTIONAL = '?'; 9 | 10 | module.exports.ZERO_OR_MORE = '*'; 11 | 12 | module.exports.ONE_OR_MORE = '+'; 13 | 14 | module.exports.PARSER = 'A...'; 15 | 16 | module.exports.REMAINDER = '...'; 17 | 18 | module.exports._UNRECOGNIZED_ARGS_ATTR = '_unrecognized_args'; 19 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 1.9.3 4 | 5 | before_script: 6 | - "export DISPLAY=:99.0" 7 | - "sh -e /etc/init.d/xvfb start" 8 | - sleep 2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'uglifier' 4 | gem 'rake' 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/Gemfile.lock: -------------------------------------------------------------------------------- 1 | GEM 2 | remote: https://rubygems.org/ 3 | specs: 4 | execjs (1.4.0) 5 | multi_json (~> 1.0) 6 | multi_json (1.3.6) 7 | rake (0.9.2.2) 8 | uglifier (1.3.0) 9 | execjs (>= 0.3.0) 10 | multi_json (~> 1.0, >= 1.0.2) 11 | 12 | PLATFORMS 13 | ruby 14 | 15 | DEPENDENCIES 16 | rake 17 | uglifier 18 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/libpeerconnection.log -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore.string/test/strings_standalone.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | module("String extensions"); 4 | 5 | test("underscore not included", function() { 6 | raises(function() { _("foo") }, /TypeError/); 7 | }); 8 | 9 | test("provides standalone functions", function() { 10 | equal(typeof _.str.trim, "function"); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | Rakefile 3 | docs/ 4 | raw/ 5 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.8 4 | notifications: 5 | email: false 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/CNAME: -------------------------------------------------------------------------------- 1 | underscorejs.org 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/favicon.ico -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/js-yaml/node_modules/argparse/node_modules/underscore/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./underscore'); 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/minimatch/node_modules/lru-cache/.npmignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/nopt/.npmignore -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/AUTHORS: -------------------------------------------------------------------------------- 1 | # Authors sorted by whether or not they're me. 2 | Isaac Z. Schlueter (http://blog.izs.me) 3 | Wayne Larsen (http://github.com/wvl) 4 | ritch 5 | Marcel Laverdet 6 | Yosef Dinerstein 7 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/node_modules/graceful-fs/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/node_modules/graceful-fs/README.md: -------------------------------------------------------------------------------- 1 | Just like node's `fs` module, but it does an incremental back-off when 2 | EMFILE is encountered. 3 | 4 | Useful in asynchronous situations where one needs to try to open lots 5 | and lots of files. 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/test/run.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | for i in test-*.js; do 4 | echo -n $i ... 5 | bash setup.sh 6 | node $i 7 | ! [ -d target ] 8 | echo "pass" 9 | done 10 | rm -rf target 11 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/test/test-async.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf(path.join(__dirname, "target"), function (er) { 4 | if (er) throw er 5 | }) 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/test/test-fiber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/test/test-fiber.js -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/rimraf/test/test-sync.js: -------------------------------------------------------------------------------- 1 | var rimraf = require("../rimraf") 2 | , path = require("path") 3 | rimraf.sync(path.join(__dirname, "target")) 4 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/underscore.string/.travis.yml: -------------------------------------------------------------------------------- 1 | language: ruby 2 | rvm: 3 | - 1.9.3 4 | 5 | before_script: 6 | - "export DISPLAY=:99.0" 7 | - "sh -e /etc/init.d/xvfb start" 8 | - sleep 2 -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/underscore.string/Gemfile: -------------------------------------------------------------------------------- 1 | source :rubygems 2 | 3 | gem 'serve' 4 | gem 'uglifier' 5 | gem 'rake' -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/underscore.string/test/strings_standalone.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function() { 2 | 3 | module("String extensions"); 4 | 5 | test("underscore not included", function() { 6 | raises(function() { _("foo") }, /TypeError/); 7 | }); 8 | 9 | test("provides standalone functions", function() { 10 | equals(typeof _.str.trim, "function"); 11 | }); 12 | }); 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/which/README.md: -------------------------------------------------------------------------------- 1 | The "which" util from npm's guts. 2 | 3 | Finds the first instance of a specified executable in the PATH 4 | environment variable. Does not cache the results, so `hash -r` is not 5 | needed when the PATH changes. 6 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/node_modules/grunt/node_modules/which/bin/which: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | var which = require("../") 3 | if (process.argv.length < 3) { 4 | console.error("Usage: which ") 5 | process.exit(1) 6 | } 7 | 8 | which(process.argv[2], function (er, thing) { 9 | if (er) { 10 | console.error(er.message) 11 | process.exit(er.errno || 127) 12 | } 13 | console.log(thing) 14 | }) 15 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "my-project", 3 | "version": "0.1.0", 4 | "devDependencies": { 5 | "grunt": "~0.4.2", 6 | "grunt-contrib-jshint": "~0.6.0", 7 | "grunt-contrib-concat": "~0.1.1", 8 | "grunt-contrib-uglify": "~0.2.2", 9 | "grunt-contrib-watch": "~0.1.4", 10 | "grunt-contrib-cssmin": "~0.7.0" 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/release.bat: -------------------------------------------------------------------------------- 1 | grunt release --force -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_grunt/watch.bat: -------------------------------------------------------------------------------- 1 | grunt watch -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_app core/00.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | if (window.MvcSolution) { 3 | return; 4 | } 5 | window.MvcSolution = { 6 | guid: { 7 | empty: '00000000-0000-0000-0000-000000000000' 8 | } 9 | }; 10 | })(); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_app core/01.app.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | MvcSolution.app = { 3 | alert: function(msg) { 4 | alert(msg); 5 | } 6 | }; 7 | })(); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/00.infrastructure/guid.js: -------------------------------------------------------------------------------- 1 | MvcSolution.guid = { 2 | empty: function() { 3 | return '00000000-0000-0000-0000-000000000000'; 4 | } 5 | }; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/00.infrastructure/jquery.extensions.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | jQuery.prototype.cssDisable = function() { 3 | return this.each(function() { 4 | $(this).addClass("disabled"); 5 | }); 6 | }; 7 | 8 | jQuery.prototype.cssEnable = function () { 9 | return this.each(function () { 10 | $(this).removeClass("disabled"); 11 | }); 12 | }; 13 | })(); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/00.infrastructure/numberExtensions.js: -------------------------------------------------------------------------------- 1 | if (!window.Number) { 2 | window.Number = function() { 3 | 4 | }; 5 | } 6 | 7 | Number.get2Digits = function(number) { 8 | return number < 10 ? "0" + number : number; 9 | }; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/00.infrastructure/page.js: -------------------------------------------------------------------------------- 1 | var page = { 2 | widgets: { 3 | 4 | }, 5 | init: function() { 6 | this.onLoaded(); 7 | for (var p in this.widgets) { 8 | var widget = this.widgets[p]; 9 | widget.init && widget.init(); 10 | } 11 | }, 12 | onLoaded: function() { 13 | 14 | } 15 | }; 16 | 17 | $(document).ready(function () { 18 | page.init(); 19 | }); 20 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/09.document-ready/documentready.js: -------------------------------------------------------------------------------- 1 | (function() { 2 | 3 | MvcSolution.documentReady.setCkey = function() { 4 | 5 | }; 6 | 7 | 8 | })(); 9 | 10 | $(document).ready(function () { 11 | for (var handler in MvcSolution.documentReady) { 12 | MvcSolution.documentReady[handler](); 13 | } 14 | }); -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_js-source/_core/main.js: -------------------------------------------------------------------------------- 1 | var MvcSolution = { 2 | ajax: { 3 | 4 | }, 5 | notification: { 6 | 7 | }, 8 | shell: { 9 | 10 | }, 11 | documentReady:{ 12 | 13 | }, 14 | utils: { 15 | 16 | }, 17 | pages: { 18 | 19 | }, 20 | ckey: null 21 | }; -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/404.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/404.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/css/jqueryui/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_chm.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_default.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_doc.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_exe.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_jpg.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_mp3.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_mv.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_pdf.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_ppt.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_psd.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_rar.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_txt.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/fileTypeImages/icon_xls.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/alignicon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/alignicon.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/alignicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/alignicon.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/file-icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/file-icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/image.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/progress.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/success.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/attachment/images/success.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/background/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/background/images/bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/background/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/background/images/success.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts0.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts1.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts2.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts3.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts4.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/charts/images/charts5.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/0.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/bface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/bface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/cface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/cface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/fface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/fface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/jxface2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/jxface2.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/tface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/tface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/wface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/wface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/yface.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/emotion/images/yface.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/help/help.css: -------------------------------------------------------------------------------- 1 | .wrapper{width: 370px;margin: 10px auto;zoom: 1;} 2 | .tabbody{height: 360px;} 3 | .tabbody .panel{width:100%;height: 360px;position: absolute;background: #fff;} 4 | .tabbody .panel h1{font-size:26px;margin: 5px 0 0 5px;} 5 | .tabbody .panel p{font-size:12px;margin: 5px 0 0 5px;} 6 | .tabbody table{width:90%;line-height: 20px;margin: 5px 0 0 5px;;} 7 | .tabbody table thead{font-weight: bold;line-height: 25px;} -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/alignicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/alignicon.jpg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/image.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/progress.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/success.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/image/images/success.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/addimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/addimg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/brush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/brush.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/delimg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/delimg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/delimgH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/delimgH.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/empty.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/emptyH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/emptyH.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/eraser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/eraser.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/redo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/redo.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/redoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/redoH.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/scale.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/scaleH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/scaleH.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/size.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/undo.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/undoH.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/scrawl/images/undoH.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/table/dragicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/table/dragicon.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/bg.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre0.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre1.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre2.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre3.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/template/images/pre4.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/center_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/center_focus.jpg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/file-icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/file-icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/file-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/file-icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/image.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/left_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/left_focus.jpg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/none_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/none_focus.jpg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/progress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/progress.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/right_focus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/right_focus.jpg -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/success.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/success.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/video/images/success.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/wordimage/fClipboard_ueditor.swf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/dialogs/wordimage/imageUploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/dialogs/wordimage/imageUploader.swf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/addimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/addimage.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/alldeletebtnhoverskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/alldeletebtnhoverskin.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/alldeletebtnupskin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/alldeletebtnupskin.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/background.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/button.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/copy.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/deletedisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/deletedisable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/deleteenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/deleteenable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/listbackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/listbackground.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/localimage.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/music.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotateleftdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotateleftdisable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotateleftenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotateleftenable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotaterightdisable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotaterightdisable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotaterightenable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/rotaterightenable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/en/images/upload.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/copy.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/localimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/localimage.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/music.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/music.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/lang/zh-cn/images/upload.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/anchor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/anchor.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow_down.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/arrow_up.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/button-bg.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/button-bg.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cancelbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cancelbutton.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/charts.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/charts.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_h.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_h.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_h.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_v.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_v.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/cursor_v.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/dialog-title-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/dialog-title-bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/filescan.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/filescan.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/highlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/highlighted.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons-all.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons-all.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/icons.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/loaderror.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/loaderror.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/loading.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/lock.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/lock.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/neweditor-tab-bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/neweditor-tab-bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/pagebreak.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/pagebreak.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/scale.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/scale.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/sortable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/sortable.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/spacer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/spacer.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/sparator_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/sparator_v.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/table-cell-align.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/table-cell-align.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/tangram-colorpicker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/tangram-colorpicker.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/toolbar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/toolbar_bg.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/unhighlighted.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/unhighlighted.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/upload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/upload.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/videologo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/videologo.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/word.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/word.gif -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/wordpaste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/themes/default/images/wordpaste.png -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/themes/iframe.css: -------------------------------------------------------------------------------- 1 | /*可以在这里添加你自己的css*/ 2 | -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/snapscreen/UEditorSnapscreen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/snapscreen/UEditorSnapscreen.exe -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.eot -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.ttf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/font/vjs.woff -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/video-js.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/video-js/video-js.swf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/webuploader/Uploader.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/webuploader/Uploader.swf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/_storage/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/_storage/js/ueditor/third-party/zeroclipboard/ZeroClipboard.swf -------------------------------------------------------------------------------- /MvcSolution.Web.Main/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/MvcSolution.Web.Main/favicon.ico -------------------------------------------------------------------------------- /MvcSolution.Web.Main/packages.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /MvcSolution.Web/Extensions/PrincipalExtensions.cs: -------------------------------------------------------------------------------- 1 | using System.Security.Principal; 2 | using MvcSolution.Data; 3 | 4 | namespace MvcSolution 5 | { 6 | public static class PrincipalExtensions 7 | { 8 | public static bool IsSuperAdmin(this IPrincipal principal) 9 | { 10 | return principal.IsInRole(Role.Names.SuperAdmin); 11 | } 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MvcSolution.Web/Images/IImageParameterFixer.cs: -------------------------------------------------------------------------------- 1 | namespace MvcSolution.Web.Images 2 | { 3 | public interface IImageParameterFixer 4 | { 5 | ImageParameter Fix(ImageParameter parameter); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /MvcSolution.Web/MvcSolution.Web.csproj.DotSettings: -------------------------------------------------------------------------------- 1 |  2 | True -------------------------------------------------------------------------------- /MvcSolution.Web/MvcSolution.Web.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Services.Admin/ITagService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using MvcSolution.Data; 4 | using MvcSolution; 5 | 6 | namespace MvcSolution.Services.Admin 7 | { 8 | public interface ITagService 9 | { 10 | List GetAll(); 11 | List GetUserTags(Guid userId); 12 | void Save(Tag tag); 13 | void Delete(Guid tagId); 14 | } 15 | } 16 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Services.Admin/IUserService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using MvcSolution; 3 | 4 | namespace MvcSolution.Services.Admin 5 | { 6 | public interface IUserService 7 | { 8 | PageResult Search(UserSearchCriteria criteria, PageRequest request); 9 | void Save(Guid userId, Guid[] tagIds, string notes); 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Services.Admin/MvcSolution.Services.Admin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Services.Admin/SearchCriterias/UserSearchCriteria.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | 3 | namespace MvcSolution.Services.Admin 4 | { 5 | public class UserSearchCriteria 6 | { 7 | public string Keyword { get; set; } 8 | public Guid? TagId { get; set; } 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Web.Admin/Controllers/_AdminControllerBase.cs: -------------------------------------------------------------------------------- 1 | using MvcSolution.Data; 2 | using MvcSolution.Web.Controllers; 3 | using MvcSolution.Web.Security; 4 | 5 | namespace MvcSolution.Web.Admin.Controllers 6 | { 7 | [MvcAuthorize(Role.Names.SuperAdmin)] 8 | public class AdminControllerBase : MvcSolutionControllerBase 9 | { 10 | protected override string AreaName => "admin"; 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Web.Admin/MvcSolution.Web.Admin.csproj.user: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | ProjectFiles 5 | 6 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Admin/MvcSolution.Web.Admin/ViewModels/HomeViewModels.cs: -------------------------------------------------------------------------------- 1 | using MvcSolution.Web.ViewModels; 2 | 3 | namespace MvcSolution.Web.Admin.ViewModels 4 | { 5 | public class HomeIndexViewModel : LayoutViewModel 6 | { 7 | 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Public/MvcSolution.Services.Public/IAccountService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using MvcSolution.Data; 3 | using MvcSolution; 4 | 5 | namespace MvcSolution.Services.Public 6 | { 7 | public interface IAccountService 8 | { 9 | 10 | 11 | 12 | } 13 | } 14 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Public/MvcSolution.Services.Public/IUserService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace MvcSolution.Services.Public 8 | { 9 | public interface IUserService 10 | { 11 | } 12 | } 13 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Public/MvcSolution.Services.Public/Implementations/AccountService.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using MvcSolution.Data; 7 | using MvcSolution; 8 | 9 | namespace MvcSolution.Services.Public 10 | { 11 | public class AccountService : ServiceBase, IAccountService 12 | { 13 | 14 | 15 | 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /MvcSolution._Areas/Public/MvcSolution.Web.Public/Controllers/_PublicControllerBase.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using MvcSolution.Web.Controllers; 3 | 4 | namespace MvcSolution.Web.Public.Controllers 5 | { 6 | public class PublicControllerBase : MvcSolutionControllerBase 7 | { 8 | protected override string AreaName => "public"; 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /_doc/01.get-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_doc/01.get-started.md -------------------------------------------------------------------------------- /_doc/images/project references.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_doc/images/project references.jpg -------------------------------------------------------------------------------- /_libs/EntityFramework.SqlServer.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/EntityFramework.SqlServer.dll -------------------------------------------------------------------------------- /_libs/EntityFramework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/EntityFramework.dll -------------------------------------------------------------------------------- /_libs/Microsoft.Practices.Unity.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/Microsoft.Practices.Unity.dll -------------------------------------------------------------------------------- /_libs/Microsoft.Web.Infrastructure.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/Microsoft.Web.Infrastructure.dll -------------------------------------------------------------------------------- /_libs/Newtonsoft.Json.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/Newtonsoft.Json.dll -------------------------------------------------------------------------------- /_libs/System.Web.Helpers.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.Helpers.dll -------------------------------------------------------------------------------- /_libs/System.Web.Mvc.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.Mvc.dll -------------------------------------------------------------------------------- /_libs/System.Web.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.Razor.dll -------------------------------------------------------------------------------- /_libs/System.Web.WebPages.Deployment.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.WebPages.Deployment.dll -------------------------------------------------------------------------------- /_libs/System.Web.WebPages.Razor.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.WebPages.Razor.dll -------------------------------------------------------------------------------- /_libs/System.Web.WebPages.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/System.Web.WebPages.dll -------------------------------------------------------------------------------- /_libs/nunit.framework.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/_libs/nunit.framework.dll -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1/build/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.props: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | roslyn\%(RecursiveDir)%(Filename)%(Extension) 5 | PreserveNewest 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.1.0.1/lib/net45/Microsoft.CodeDom.Providers.DotNetCompilerPlatform.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/Microsoft.Net.Compilers.1.0.0.nupkg -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.Build.Tasks.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.CSharp.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.VisualBasic.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/Microsoft.CodeAnalysis.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Collections.Immutable.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/System.Reflection.Metadata.dll -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/VBCSCompiler.exe -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/csc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/csc.exe -------------------------------------------------------------------------------- /packages/Microsoft.Net.Compilers.1.0.0/tools/vbc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leotsai/mvcsolution/1fe6862ab6ba3d34774830627c626b89b881c701/packages/Microsoft.Net.Compilers.1.0.0/tools/vbc.exe --------------------------------------------------------------------------------