ECL mode
27 | 45 | 48 | 49 |Based on CodeMirror's clike mode. For more information see HPCC Systems web site.
50 |MIME types defined: text/x-ecl
.
├── .gitattributes
├── .gitignore
├── DotNetBlog.sln
├── Nuget.config
├── README.md
├── global.json
└── src
├── DotNetBlog.Admin
├── .babelrc
├── actions
│ └── index.js
├── components
│ ├── bootstrap
│ │ └── formgroup.jsx
│ ├── contentheader.jsx
│ ├── editor.jsx
│ ├── form.jsx
│ ├── index.jsx
│ ├── loadingbutton.jsx
│ ├── pager.jsx
│ └── spinner.jsx
├── consts
│ └── index.js
├── img
│ ├── boxed-bg.jpg
│ ├── boxed-bg.png
│ └── icons.png
├── index.jsx
├── jsconfig.json
├── package.json
├── reducers
│ └── index.js
├── resources
│ └── index.js
├── server.js
├── services
│ ├── api.js
│ ├── dialog.js
│ └── index.js
├── store
│ └── index.js
├── styles
│ ├── AdminLTE.css
│ ├── _all-skins.css
│ └── app.css
├── typings
│ ├── globals
│ │ ├── async
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── lodash
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── react-bootstrap
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── react-redux
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── react-router
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── react
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── redux-thunk
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ ├── redux
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ │ └── toastr
│ │ │ ├── index.d.ts
│ │ │ └── typings.json
│ └── index.d.ts
├── views
│ ├── app.jsx
│ ├── config
│ │ ├── advanceconfig.jsx
│ │ ├── basicconfig.jsx
│ │ ├── commentconfig.jsx
│ │ └── emailconfig.jsx
│ ├── content
│ │ ├── categorylist.jsx
│ │ ├── commentlist.jsx
│ │ ├── modifycategory.jsx
│ │ ├── modifypage.jsx
│ │ ├── modifytag.jsx
│ │ ├── modifytopic.jsx
│ │ ├── modifytopicsetting.jsx
│ │ ├── pagelist.jsx
│ │ ├── replycomment.jsx
│ │ ├── taglist.jsx
│ │ └── topiclist.jsx
│ ├── dashboard
│ │ ├── dashboard.jsx
│ │ ├── quickpost.jsx
│ │ ├── recentcomment.jsx
│ │ ├── statistics.jsx
│ │ └── topicdraft.jsx
│ ├── user
│ │ └── profile.jsx
│ └── widget
│ │ ├── editbasic.jsx
│ │ ├── editcategory.jsx
│ │ ├── editrecentcomment.jsx
│ │ ├── editrecenttopic.jsx
│ │ ├── edittag.jsx
│ │ ├── widgetinfo.jsx
│ │ ├── widgetitem.jsx
│ │ └── widgets.jsx
└── webpack.config.js
├── DotNetBlog.Core
├── ClientManager.cs
├── Data
│ ├── BlogContext.cs
│ └── Mappings
│ │ ├── CategoryMapping.cs
│ │ ├── CategoryTopicMapping.cs
│ │ ├── CommentMapping.cs
│ │ ├── LinkMapping.cs
│ │ ├── PageMapping.cs
│ │ ├── SettingMapping.cs
│ │ ├── TagMapping.cs
│ │ ├── TagTopicMapping.cs
│ │ ├── TopicMapping.cs
│ │ ├── UserMapping.cs
│ │ ├── UserTokenMapping.cs
│ │ └── WidgetMapping.cs
├── DotNetBlog.Core.csproj
├── Entity
│ ├── Category.cs
│ ├── CategoryTopic.cs
│ ├── Comment.cs
│ ├── Link.cs
│ ├── Page.cs
│ ├── Setting.cs
│ ├── Tag.cs
│ ├── TagTopic.cs
│ ├── Topic.cs
│ ├── User.cs
│ ├── UserToken.cs
│ └── Widget.cs
├── Enums
│ ├── CommentStatus.cs
│ ├── PageStatus.cs
│ ├── TopicStatus.cs
│ └── WidgetType.cs
├── Extensions
│ ├── BlogContextExtensions.cs
│ ├── MemoryCacheExtensions.cs
│ └── StringExtensions.cs
├── IServiceCollectionExtensions.cs
├── Model
│ ├── Category
│ │ ├── CategoryBasicModel.cs
│ │ └── CategoryModel.cs
│ ├── Comment
│ │ ├── AddCommentModel.cs
│ │ ├── CommentCountModel.cs
│ │ ├── CommentItemModel.cs
│ │ └── CommentModel.cs
│ ├── Email
│ │ ├── CommentEmailModel.cs
│ │ └── TestEmailConfigModel.cs
│ ├── Install
│ │ └── InstallModel.cs
│ ├── OperationResult.cs
│ ├── Page
│ │ ├── AddPageModel.cs
│ │ ├── EditPageModel.cs
│ │ ├── PageBasicModel.cs
│ │ ├── PageCountModel.cs
│ │ └── PageModel.cs
│ ├── Setting
│ │ └── SettingModel.cs
│ ├── Statistics
│ │ └── BlogStatisticsModel.cs
│ ├── Tag
│ │ └── TagModel.cs
│ ├── Theme
│ │ └── ThemeModel.cs
│ ├── Topic
│ │ ├── AddTopicModel.cs
│ │ ├── EditTopicModel.cs
│ │ ├── ITopicModel.cs
│ │ ├── MonthStatisticsModel.cs
│ │ ├── TopicBasicModel.cs
│ │ ├── TopicCountModel.cs
│ │ └── TopicModel.cs
│ └── Widget
│ │ ├── AvailableWidgetModel.cs
│ │ ├── WidgetConfigModel.cs
│ │ └── WidgetModel.cs
├── Properties
│ └── AssemblyInfo.cs
├── Resources
│ ├── Model
│ │ ├── Setting
│ │ │ ├── SettingModel.en-GB.resx
│ │ │ └── SettingModel.zh-CN.resx
│ │ └── Widget
│ │ │ ├── WidgetConfigModelBase.en-GB.resx
│ │ │ └── WidgetConfigModelBase.zh-CN.resx
│ └── Service
│ │ ├── AuthService.en-GB.resx
│ │ ├── AuthService.zh-CN.resx
│ │ ├── CategoryService.en-GB.resx
│ │ ├── CategoryService.zh-CN.resx
│ │ ├── CommentService.en-GB.resx
│ │ ├── CommentService.zh-CN.resx
│ │ ├── EmailService.en-GB.resx
│ │ ├── EmailService.zh-CN.resx
│ │ ├── InstallService.en-GB.resx
│ │ ├── InstallService.zh-CN.resx
│ │ ├── PageService.en-GB.resx
│ │ ├── PageService.zh-CN.resx
│ │ ├── TagService.en-GB.resx
│ │ ├── TagService.zh-CN.resx
│ │ ├── TopicService.en-GB.resx
│ │ ├── TopicService.zh-CN.resx
│ │ ├── UserService.en-GB.resx
│ │ └── UserService.zh-CN.resx
├── Service
│ ├── AuthService.cs
│ ├── CategoryService.cs
│ ├── CommentService.cs
│ ├── EmailService.cs
│ ├── InstallService.cs
│ ├── PageService.cs
│ ├── SettingService.cs
│ ├── StatisticsService.cs
│ ├── TagService.cs
│ ├── ThemeService.cs
│ ├── TopicService.cs
│ ├── UserService.cs
│ └── WidgetService.cs
└── Utilities
│ └── EncryptHelper.cs
└── DotNetBlog.Web
├── Areas
└── Api
│ ├── Controllers
│ ├── CategoryController.cs
│ ├── CommentController.cs
│ ├── ConfigController.cs
│ ├── ControllerBase.cs
│ ├── MyController.cs
│ ├── PageController.cs
│ ├── StatisticsController.cs
│ ├── TagController.cs
│ ├── TopicController.cs
│ ├── UploadController.cs
│ └── WidgetController.cs
│ ├── Filters
│ ├── ErrorHandlerFilter.cs
│ ├── RequireLoginApiFilter.cs
│ └── ValidateRequestApiFilter.cs
│ └── Models
│ ├── ApiResponse.cs
│ ├── Category
│ ├── RemoveCategoryModel.cs
│ └── SaveCategoryModel.cs
│ ├── Comment
│ ├── BatchModel.cs
│ ├── QueryCommentModel.cs
│ └── ReplyCommentModel.cs
│ ├── Config
│ ├── AdvanceConfigModel.cs
│ ├── BasicConfigModel.cs
│ ├── CommentConfigModel.cs
│ └── EmailConfigModel.cs
│ ├── My
│ └── EditMyInfoModel.cs
│ ├── Page
│ └── BatchModel.cs
│ ├── Tag
│ ├── DeleteTagModel.cs
│ ├── QueryTagModel.cs
│ └── SaveTagModel.cs
│ ├── Topic
│ ├── BatchModel.cs
│ └── QueryTopicModel.cs
│ ├── Upload
│ └── UploadImageModel.cs
│ └── Widget
│ └── SaveWidgetModel.cs
├── AutoMapperConfig.cs
├── Controllers
├── AccountController.cs
├── AdminController.cs
├── ExceptionController.cs
├── HomeController.cs
├── InstallController.cs
└── QuickActionController.cs
├── DotNetBlog.Web.csproj
├── Filters
├── ErrorHandleFilter.cs
├── RequireLoginFilter.cs
└── ValidateRequestFilter.cs
├── Middlewares
└── ClientManagerMiddleware.cs
├── NLog.config
├── Program.cs
├── Properties
├── PublishProfiles
│ ├── publish-module.psm1
│ ├── release-publish.ps1
│ └── release.pubxml
└── launchSettings.json
├── Resources
├── Areas
│ ├── Controllers
│ │ ├── ControllerBase.en-GB.resx
│ │ ├── ControllerBase.zh-CN.resx
│ │ ├── TopicController.en-GB.resx
│ │ ├── TopicController.zh-CN.resx
│ │ ├── UploadController.en-GB.resx
│ │ └── UploadController.zh-CN.resx
│ └── Filters
│ │ ├── ErrorHandlerFilter.en-GB.resx
│ │ ├── ErrorHandlerFilter.zh-CN.resx
│ │ ├── RequireLoginApiFilter.en-GB.resx
│ │ └── RequireLoginApiFilter.zh-CN.resx
├── Controllers
│ ├── AccountController.en-GB.resx
│ ├── AccountController.zh-CN.resx
│ ├── HomeController.en-GB.resx
│ ├── HomeController.zh-CN.resx
│ ├── InstallController.en-GB.resx
│ └── InstallController.zh-CN.resx
├── TagHelpers
│ ├── PagerTagHelper.en-GB.resx
│ └── PagerTagHelper.zh-CN.resx
└── Views
│ ├── Account
│ ├── ChangePassword.en-GB.resx
│ ├── ChangePassword.zh-CN.resx
│ ├── Login.en-GB.resx
│ └── Login.zh-CN.resx
│ ├── Exception
│ ├── Error.en-GB.resx
│ ├── Error.zh-CN.resx
│ ├── NotFound.en-GB.resx
│ └── NotFound.zh-CN.resx
│ ├── Home
│ ├── Components
│ │ ├── AdministrationWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── CategoryWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── MonthStatisticsWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── PageListNav
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── PageWidget
│ │ │ └── Default.zh-CN.resx
│ │ ├── RecentCommentWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── RecentTopicWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── SearchWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ ├── TagWidget
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ │ └── Widgets
│ │ │ ├── Default.en-GB.resx
│ │ │ └── Default.zh-CN.resx
│ ├── Notice.en-GB.resx
│ ├── Notice.zh-CN.resx
│ ├── Page.en-GB.resx
│ ├── Page.zh-CN.resx
│ ├── Search.en-GB.resx
│ ├── Search.zh-CN.resx
│ ├── Topic.en-GB.resx
│ ├── Topic.zh-CN.resx
│ ├── _CommentList.en-GB.resx
│ ├── _CommentList.zh-CN.resx
│ ├── _Layout.en-GB.resx
│ ├── _Layout.zh-CN.resx
│ ├── _TopicList.en-GB.resx
│ └── _TopicList.zh-CN.resx
│ └── Install
│ ├── Index.en-GB.resx
│ └── Index.zh-CN.resx
├── Startup.cs
├── TagHelpers
├── BlogTitleTagHelper.cs
├── MarkdownTagHelper.cs
├── PageLinkTagHelper.cs
├── PagerTagHelper.cs
├── ThemeUrlResolutionTagHelper.cs
├── TopicLinkTagHelper.cs
└── VisibleTagHelper.cs
├── Themes
└── default
│ ├── Account
│ ├── ChangePassword.cshtml
│ ├── Login.cshtml
│ ├── _Layout.cshtml
│ └── _ViewImports.cshtml
│ ├── Admin
│ └── Index.cshtml
│ ├── Exception
│ ├── Error.cshtml
│ ├── NotFound.cshtml
│ └── _Layout.cshtml
│ ├── Home
│ ├── Category.cshtml
│ ├── Components
│ │ ├── AdministrationWidget
│ │ │ └── Default.cshtml
│ │ ├── CategoryWidget
│ │ │ └── Default.cshtml
│ │ ├── MonthStatisticsWidget
│ │ │ └── Default.cshtml
│ │ ├── PageListNav
│ │ │ └── Default.cshtml
│ │ ├── PageWidget
│ │ │ └── Default.cshtml
│ │ ├── RecentCommentWidget
│ │ │ └── Default.cshtml
│ │ ├── RecentTopicWidget
│ │ │ └── Default.cshtml
│ │ ├── SearchWidget
│ │ │ └── Default.cshtml
│ │ ├── TagWidget
│ │ │ └── Default.cshtml
│ │ ├── Widgets
│ │ │ └── Default.cshtml
│ │ └── _ViewImports.cshtml
│ ├── Index.cshtml
│ ├── Month.cshtml
│ ├── Notice.cshtml
│ ├── Page.cshtml
│ ├── Search.cshtml
│ ├── Tag.cshtml
│ ├── Topic.cshtml
│ ├── _CommentList.cshtml
│ ├── _Layout.cshtml
│ ├── _TopicList.cshtml
│ └── _ViewImports.cshtml
│ ├── Install
│ └── Index.cshtml
│ ├── _ViewImports.cshtml
│ ├── _ViewStart.cshtml
│ └── theme.json
├── ViewComponents
├── PageListNav.cs
└── Widgets.cs
├── ViewEngines
└── ThemeViewEngine.cs
├── ViewModels
├── Account
│ ├── ChangePasswordModel.cs
│ ├── ChangePasswordViewModel.cs
│ ├── LoginModel.cs
│ └── LoginViewModel.cs
├── Exception
│ └── ErrorViewModel.cs
├── Home
│ ├── CategoryPageViewModel.cs
│ ├── CommentFormModel.cs
│ ├── CommentListViewModel.cs
│ ├── IndexPageViewModel.cs
│ ├── MonthPageViewModel.cs
│ ├── NoticePageViewModel.cs
│ ├── SearchPageViewModel.cs
│ ├── TagPageViewModel.cs
│ ├── TopicListModel.cs
│ └── TopicPageViewModel.cs
└── Install
│ └── IndexViewModel.cs
├── Widgets
├── AdministrationWidget.cs
├── CategoryWidget.cs
├── MonthStatisticsWidget.cs
├── PageWidget.cs
├── RecentCommentWidget.cs
├── RecentTopicWidget.cs
├── SearchWidget.cs
└── TagWidget.cs
├── config.json
├── runtimeconfig.template.json
├── web.config
└── wwwroot
├── images
├── carrow.png
└── widget
│ ├── Administration.png
│ ├── Category.png
│ ├── MonthStatistics.png
│ ├── Page.png
│ ├── RecentComment.png
│ ├── RecentTopic.png
│ ├── Search.png
│ └── Tag.png
├── lib
├── adminlte
│ ├── AdminLTE.css
│ └── _all-skins.css
├── editor.md
│ ├── css
│ │ ├── editormd.css
│ │ ├── editormd.logo.css
│ │ ├── editormd.logo.min.css
│ │ ├── editormd.min.css
│ │ ├── editormd.preview.css
│ │ └── editormd.preview.min.css
│ ├── editormd.js
│ ├── editormd.min.js
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── editormd-logo.eot
│ │ ├── editormd-logo.svg
│ │ ├── editormd-logo.ttf
│ │ ├── editormd-logo.woff
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.svg
│ │ ├── fontawesome-webfont.ttf
│ │ ├── fontawesome-webfont.woff
│ │ └── fontawesome-webfont.woff2
│ ├── images
│ │ ├── loading.gif
│ │ ├── loading@2x.gif
│ │ ├── loading@3x.gif
│ │ └── logos
│ │ │ ├── editormd-favicon-16x16.ico
│ │ │ ├── editormd-favicon-24x24.ico
│ │ │ ├── editormd-favicon-32x32.ico
│ │ │ ├── editormd-favicon-48x48.ico
│ │ │ ├── editormd-favicon-64x64.ico
│ │ │ ├── editormd-logo-114x114.png
│ │ │ ├── editormd-logo-120x120.png
│ │ │ ├── editormd-logo-144x144.png
│ │ │ ├── editormd-logo-16x16.png
│ │ │ ├── editormd-logo-180x180.png
│ │ │ ├── editormd-logo-240x240.png
│ │ │ ├── editormd-logo-24x24.png
│ │ │ ├── editormd-logo-320x320.png
│ │ │ ├── editormd-logo-32x32.png
│ │ │ ├── editormd-logo-48x48.png
│ │ │ ├── editormd-logo-57x57.png
│ │ │ ├── editormd-logo-64x64.png
│ │ │ ├── editormd-logo-72x72.png
│ │ │ ├── editormd-logo-96x96.png
│ │ │ └── vi.png
│ ├── languages
│ │ ├── en.js
│ │ └── zh-tw.js
│ ├── lib
│ │ ├── codemirror
│ │ │ ├── AUTHORS
│ │ │ ├── LICENSE
│ │ │ ├── README.md
│ │ │ ├── addon
│ │ │ │ ├── comment
│ │ │ │ │ ├── comment.js
│ │ │ │ │ └── continuecomment.js
│ │ │ │ ├── dialog
│ │ │ │ │ ├── dialog.css
│ │ │ │ │ └── dialog.js
│ │ │ │ ├── display
│ │ │ │ │ ├── fullscreen.css
│ │ │ │ │ ├── fullscreen.js
│ │ │ │ │ ├── panel.js
│ │ │ │ │ ├── placeholder.js
│ │ │ │ │ └── rulers.js
│ │ │ │ ├── edit
│ │ │ │ │ ├── closebrackets.js
│ │ │ │ │ ├── closetag.js
│ │ │ │ │ ├── continuelist.js
│ │ │ │ │ ├── matchbrackets.js
│ │ │ │ │ ├── matchtags.js
│ │ │ │ │ └── trailingspace.js
│ │ │ │ ├── fold
│ │ │ │ │ ├── brace-fold.js
│ │ │ │ │ ├── comment-fold.js
│ │ │ │ │ ├── foldcode.js
│ │ │ │ │ ├── foldgutter.css
│ │ │ │ │ ├── foldgutter.js
│ │ │ │ │ ├── indent-fold.js
│ │ │ │ │ ├── markdown-fold.js
│ │ │ │ │ └── xml-fold.js
│ │ │ │ ├── hint
│ │ │ │ │ ├── anyword-hint.js
│ │ │ │ │ ├── css-hint.js
│ │ │ │ │ ├── html-hint.js
│ │ │ │ │ ├── javascript-hint.js
│ │ │ │ │ ├── show-hint.css
│ │ │ │ │ ├── show-hint.js
│ │ │ │ │ ├── sql-hint.js
│ │ │ │ │ └── xml-hint.js
│ │ │ │ ├── lint
│ │ │ │ │ ├── coffeescript-lint.js
│ │ │ │ │ ├── css-lint.js
│ │ │ │ │ ├── javascript-lint.js
│ │ │ │ │ ├── json-lint.js
│ │ │ │ │ ├── lint.css
│ │ │ │ │ ├── lint.js
│ │ │ │ │ └── yaml-lint.js
│ │ │ │ ├── merge
│ │ │ │ │ ├── merge.css
│ │ │ │ │ └── merge.js
│ │ │ │ ├── mode
│ │ │ │ │ ├── loadmode.js
│ │ │ │ │ ├── multiplex.js
│ │ │ │ │ ├── multiplex_test.js
│ │ │ │ │ ├── overlay.js
│ │ │ │ │ └── simple.js
│ │ │ │ ├── runmode
│ │ │ │ │ ├── colorize.js
│ │ │ │ │ ├── runmode-standalone.js
│ │ │ │ │ ├── runmode.js
│ │ │ │ │ └── runmode.node.js
│ │ │ │ ├── scroll
│ │ │ │ │ ├── annotatescrollbar.js
│ │ │ │ │ ├── scrollpastend.js
│ │ │ │ │ ├── simplescrollbars.css
│ │ │ │ │ └── simplescrollbars.js
│ │ │ │ ├── search
│ │ │ │ │ ├── match-highlighter.js
│ │ │ │ │ ├── matchesonscrollbar.css
│ │ │ │ │ ├── matchesonscrollbar.js
│ │ │ │ │ ├── search.js
│ │ │ │ │ └── searchcursor.js
│ │ │ │ ├── selection
│ │ │ │ │ ├── active-line.js
│ │ │ │ │ ├── mark-selection.js
│ │ │ │ │ └── selection-pointer.js
│ │ │ │ ├── tern
│ │ │ │ │ ├── tern.css
│ │ │ │ │ ├── tern.js
│ │ │ │ │ └── worker.js
│ │ │ │ └── wrap
│ │ │ │ │ └── hardwrap.js
│ │ │ ├── addons.min.js
│ │ │ ├── bower.json
│ │ │ ├── codemirror.min.css
│ │ │ ├── codemirror.min.js
│ │ │ ├── lib
│ │ │ │ ├── codemirror.css
│ │ │ │ └── codemirror.js
│ │ │ ├── mode
│ │ │ │ ├── apl
│ │ │ │ │ ├── apl.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── asterisk
│ │ │ │ │ ├── asterisk.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── clike
│ │ │ │ │ ├── clike.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── scala.html
│ │ │ │ ├── clojure
│ │ │ │ │ ├── clojure.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── cobol
│ │ │ │ │ ├── cobol.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── coffeescript
│ │ │ │ │ ├── coffeescript.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── commonlisp
│ │ │ │ │ ├── commonlisp.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── css
│ │ │ │ │ ├── css.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── less.html
│ │ │ │ │ ├── less_test.js
│ │ │ │ │ ├── scss.html
│ │ │ │ │ ├── scss_test.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── cypher
│ │ │ │ │ ├── cypher.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── d
│ │ │ │ │ ├── d.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── dart
│ │ │ │ │ ├── dart.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── diff
│ │ │ │ │ ├── diff.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── django
│ │ │ │ │ ├── django.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── dockerfile
│ │ │ │ │ ├── dockerfile.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── dtd
│ │ │ │ │ ├── dtd.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── dylan
│ │ │ │ │ ├── dylan.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── ebnf
│ │ │ │ │ ├── ebnf.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── ecl
│ │ │ │ │ ├── ecl.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── eiffel
│ │ │ │ │ ├── eiffel.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── erlang
│ │ │ │ │ ├── erlang.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── forth
│ │ │ │ │ ├── forth.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── fortran
│ │ │ │ │ ├── fortran.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── gas
│ │ │ │ │ ├── gas.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── gfm
│ │ │ │ │ ├── gfm.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── test.js
│ │ │ │ ├── gherkin
│ │ │ │ │ ├── gherkin.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── go
│ │ │ │ │ ├── go.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── groovy
│ │ │ │ │ ├── groovy.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── haml
│ │ │ │ │ ├── haml.js
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── test.js
│ │ │ │ ├── haskell
│ │ │ │ │ ├── haskell.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── haxe
│ │ │ │ │ ├── haxe.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── htmlembedded
│ │ │ │ │ ├── htmlembedded.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── htmlmixed
│ │ │ │ │ ├── htmlmixed.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── http
│ │ │ │ │ ├── http.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── idl
│ │ │ │ │ ├── idl.js
│ │ │ │ │ └── index.html
│ │ │ │ ├── index.html
│ │ │ │ ├── jade
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── jade.js
│ │ │ │ ├── javascript
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── javascript.js
│ │ │ │ │ ├── json-ld.html
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── typescript.html
│ │ │ │ ├── jinja2
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── jinja2.js
│ │ │ │ ├── julia
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── julia.js
│ │ │ │ ├── kotlin
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── kotlin.js
│ │ │ │ ├── livescript
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── livescript.js
│ │ │ │ ├── lua
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── lua.js
│ │ │ │ ├── markdown
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── markdown.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── meta.js
│ │ │ │ ├── mirc
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── mirc.js
│ │ │ │ ├── mllike
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── mllike.js
│ │ │ │ ├── modelica
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── modelica.js
│ │ │ │ ├── nginx
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── nginx.js
│ │ │ │ ├── ntriples
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── ntriples.js
│ │ │ │ ├── octave
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── octave.js
│ │ │ │ ├── pascal
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── pascal.js
│ │ │ │ ├── pegjs
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── pegjs.js
│ │ │ │ ├── perl
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── perl.js
│ │ │ │ ├── php
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── php.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── pig
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── pig.js
│ │ │ │ ├── properties
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── properties.js
│ │ │ │ ├── puppet
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── puppet.js
│ │ │ │ ├── python
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── python.js
│ │ │ │ ├── q
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── q.js
│ │ │ │ ├── r
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── r.js
│ │ │ │ ├── rpm
│ │ │ │ │ ├── changes
│ │ │ │ │ │ └── index.html
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── rpm.js
│ │ │ │ ├── rst
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── rst.js
│ │ │ │ ├── ruby
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── ruby.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── rust
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── rust.js
│ │ │ │ ├── sass
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sass.js
│ │ │ │ ├── scheme
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── scheme.js
│ │ │ │ ├── shell
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── shell.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── sieve
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sieve.js
│ │ │ │ ├── slim
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── slim.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── smalltalk
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── smalltalk.js
│ │ │ │ ├── smarty
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── smarty.js
│ │ │ │ ├── smartymixed
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── smartymixed.js
│ │ │ │ ├── solr
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── solr.js
│ │ │ │ ├── soy
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── soy.js
│ │ │ │ ├── sparql
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sparql.js
│ │ │ │ ├── spreadsheet
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── spreadsheet.js
│ │ │ │ ├── sql
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── sql.js
│ │ │ │ ├── stex
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── stex.js
│ │ │ │ │ └── test.js
│ │ │ │ ├── stylus
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── stylus.js
│ │ │ │ ├── tcl
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── tcl.js
│ │ │ │ ├── textile
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── textile.js
│ │ │ │ ├── tiddlywiki
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── tiddlywiki.css
│ │ │ │ │ └── tiddlywiki.js
│ │ │ │ ├── tiki
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── tiki.css
│ │ │ │ │ └── tiki.js
│ │ │ │ ├── toml
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── toml.js
│ │ │ │ ├── tornado
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── tornado.js
│ │ │ │ ├── turtle
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── turtle.js
│ │ │ │ ├── vb
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── vb.js
│ │ │ │ ├── vbscript
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── vbscript.js
│ │ │ │ ├── velocity
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── velocity.js
│ │ │ │ ├── verilog
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── verilog.js
│ │ │ │ ├── xml
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── xml.js
│ │ │ │ ├── xquery
│ │ │ │ │ ├── index.html
│ │ │ │ │ ├── test.js
│ │ │ │ │ └── xquery.js
│ │ │ │ ├── yaml
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── yaml.js
│ │ │ │ └── z80
│ │ │ │ │ ├── index.html
│ │ │ │ │ └── z80.js
│ │ │ ├── modes.min.js
│ │ │ ├── package.json
│ │ │ └── theme
│ │ │ │ ├── 3024-day.css
│ │ │ │ ├── 3024-night.css
│ │ │ │ ├── ambiance-mobile.css
│ │ │ │ ├── ambiance.css
│ │ │ │ ├── base16-dark.css
│ │ │ │ ├── base16-light.css
│ │ │ │ ├── blackboard.css
│ │ │ │ ├── cobalt.css
│ │ │ │ ├── colorforth.css
│ │ │ │ ├── eclipse.css
│ │ │ │ ├── elegant.css
│ │ │ │ ├── erlang-dark.css
│ │ │ │ ├── lesser-dark.css
│ │ │ │ ├── mbo.css
│ │ │ │ ├── mdn-like.css
│ │ │ │ ├── midnight.css
│ │ │ │ ├── monokai.css
│ │ │ │ ├── neat.css
│ │ │ │ ├── neo.css
│ │ │ │ ├── night.css
│ │ │ │ ├── paraiso-dark.css
│ │ │ │ ├── paraiso-light.css
│ │ │ │ ├── pastel-on-dark.css
│ │ │ │ ├── rubyblue.css
│ │ │ │ ├── solarized.css
│ │ │ │ ├── the-matrix.css
│ │ │ │ ├── tomorrow-night-bright.css
│ │ │ │ ├── tomorrow-night-eighties.css
│ │ │ │ ├── twilight.css
│ │ │ │ ├── vibrant-ink.css
│ │ │ │ ├── xq-dark.css
│ │ │ │ ├── xq-light.css
│ │ │ │ └── zenburn.css
│ │ ├── flowchart.min.js
│ │ ├── jquery.flowchart.min.js
│ │ ├── marked.min.js
│ │ ├── prettify.min.js
│ │ ├── raphael.min.js
│ │ ├── sequence-diagram.min.js
│ │ └── underscore.min.js
│ └── plugins
│ │ ├── code-block-dialog
│ │ └── code-block-dialog.js
│ │ ├── emoji-dialog
│ │ ├── emoji-dialog.js
│ │ └── emoji.json
│ │ ├── goto-line-dialog
│ │ └── goto-line-dialog.js
│ │ ├── help-dialog
│ │ ├── help-dialog.js
│ │ └── help.md
│ │ ├── html-entities-dialog
│ │ ├── html-entities-dialog.js
│ │ └── html-entities.json
│ │ ├── image-dialog
│ │ └── image-dialog.js
│ │ ├── link-dialog
│ │ └── link-dialog.js
│ │ ├── plugin-template.js
│ │ ├── preformatted-text-dialog
│ │ └── preformatted-text-dialog.js
│ │ ├── reference-link-dialog
│ │ └── reference-link-dialog.js
│ │ ├── table-dialog
│ │ └── table-dialog.js
│ │ └── test-plugin
│ │ └── test-plugin.js
└── fileapi
│ ├── FileAPI.html5.js
│ ├── FileAPI.html5.min.js
│ ├── FileAPI.js
│ └── FileAPI.min.js
├── scripts
└── tinymce.plugins
│ └── imageupload
│ ├── dialog.html
│ └── plugin.js
└── themes
└── default
└── styles
├── account.css
└── main.css
/.gitignore:
--------------------------------------------------------------------------------
1 | ################################################################################
2 | # 此 .gitignore 文件已由 Microsoft(R) Visual Studio 自动创建。
3 | ################################################################################
4 |
5 |
6 | # User-specific files
7 | *.suo
8 | *.user
9 | *.userosscache
10 | *.sln.docstates
11 |
12 | # User-specific files (MonoDevelop/Xamarin Studio)
13 | *.userprefs
14 |
15 | # Build results
16 | [Dd]ebug/
17 | [Dd]ebugPublic/
18 | [Rr]elease/
19 | [Rr]eleases/
20 | [Xx]64/
21 | [Xx]86/
22 | [Bb]uild/
23 | bld/
24 | [Bb]in/
25 | [Oo]bj/
26 |
27 | /.vs
28 | /src/DotNetBlog.Admin/node_modules
29 | /src/DotNetBlog.Admin/**/*.js.map
30 | /src/DotNetBlog.Web/wwwroot/app/**/*.js.map
31 | /src/DotNetBlog.Web/wwwroot/dist
32 | /src/DotNetBlog.Web/wwwroot/upload
33 | /src/DotNetBlog.Web/wwwroot/app/dist
34 | !/src/DotNetBlog.Web/wwwroot/app/webpack.config.js
35 | /src/DotNetBlog.Web/App_Data/
36 | .vs/
--------------------------------------------------------------------------------
/Nuget.config:
--------------------------------------------------------------------------------
1 |
2 |
36 |
37 |
12 | @Model.Content 13 |
14 |15 | @L["You can"] @L["return to home page"], @L["or search for other resources"] 16 |
17 | 18 | 29 |10 | @L["Access to the page does not exist, you can"]@L["return to the home page"], @L["or search for other resources"] 11 |
12 | 13 | 24 |27 | @L["Go back to the last page"] 28 |
29 |Based on CodeMirror's clike mode. For more information see HPCC Systems web site.
50 |MIME types defined: text/x-ecl
.
MIME types defined: message/http
.
MIME types defined: text/n-triples
.
MIME types defined: text/x-rustsrc
.
MIME types defined: text/x-solr
.
MIME types defined: text/x-spreadsheet
.
Created by Robert Plummer
42 |MIME types defined: text/turtle
.
MIME type defined: text/x-z80
.
@config.Title
10 |12 | @foreach (var comment in Model) 13 | { 14 |-
15 | @comment.Topic.Title (@comment.Topic.Comments.Approved)
16 |
18 | }
19 | @*-
20 |
21 | 评论RSS
22 |
23 | *@
24 |
25 |@comment.Name @L["Wrote"]: @comment.Content 17 |