在好例子网,分享、交流、成长!
您当前所在位置:首页Others 开发实例一般编程问题 → Jumony源码下载指南:一站式网页模板引擎解决方案

Jumony源码下载指南:一站式网页模板引擎解决方案

一般编程问题

下载此实例
  • 开发语言:Others
  • 实例大小:7.07M
  • 下载次数:0
  • 浏览次数:4
  • 发布时间:2024-04-14
  • 实例类别:一般编程问题
  • 发 布 人:chenxiaolan
  • 文件格式:.zip
  • 所需积分:2
 相关标签:

实例介绍

【实例简介】
Jumony是由Ivony开发的一个强大的网页模板引擎,它旨在为开发者提供一个简单、灵活且高效的方式来生成和管理网页内容。Jumony源码下载让您能够深入了解其背后的机制和实现方法,从而更好地利用这一工具为您的项目或产品添加动态内容。
【实例截图】
【核心代码】
文件清单
└── Jumony-6018346925ceb8922553a8caea42eb504ec6282d
    ├── APITest
    │   ├── APITest.csproj
    │   ├── CssStyleSettingTest1.html
    │   ├── DocumentAPITest.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── StyleAPITest.cs
    │   └── Test1.html
    ├── BindingTest
    │   ├── BindingExpressionParserTest.cs
    │   ├── BindingTest.csproj
    │   ├── DynamicTest.cs
    │   ├── EvalExpressionTest.cs
    │   ├── ExpressionBinderTest.cs
    │   ├── ListTest1.html
    │   ├── ListTest2.html
    │   ├── ListTest3.html
    │   ├── ListTest.cs
    │   ├── LiteralBinderTest.cs
    │   ├── packages.config
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ScriptBinderTest.cs
    │   ├── StyleBinderTest.cs
    │   ├── StyleTest1.html
    │   └── Test1.html
    ├── FormsTest
    │   ├── FormsTest1.html
    │   ├── FormsTest.cs
    │   ├── FormsTest.csproj
    │   ├── FormValidationTest.html
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── TextControlTest.html
    ├── HtmlTranslater
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── CandidateTermsConverter.cs
    │   ├── HtmlTranslater.csproj
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── TranslateDictionary.cs
    │   ├── TranslateTask.cs
    │   └── TranslationTerm.cs
    ├── Ivony.Core
    │   ├── Data
    │   │   ├── IPagingData.cs
    │   │   └── PagingExtension.cs
    │   ├── Fluent
    │   │   ├── ConvertExtensions.cs
    │   │   ├── DisposableHelper.cs
    │   │   ├── EnumerableExtension.cs
    │   │   └── StringExtensions.cs
    │   ├── Ivony.Core.csproj
    │   ├── KeyedCache.cs
    │   ├── Parser
    │   │   └── TokenizerBase.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── ReadOnlyEnumerable.cs
    ├── Ivony.Html
    │   ├── Css
    │   │   ├── CacheableSelector.cs
    │   │   ├── CssAttributeSelector.cs
    │   │   ├── CssCasecadingSelector.cs
    │   │   ├── CssElementSelector.cs
    │   │   ├── CssElementsRestrictionSelector.cs
    │   │   ├── CssMultipleSelector.cs
    │   │   ├── CssParser.cs
    │   │   ├── CssPropertyParser.cs
    │   │   ├── CssRelativeSelector.cs
    │   │   ├── CssSelector.cs
    │   │   ├── CssSpecificity.cs
    │   │   ├── CssStyle.cs
    │   │   ├── CssStyleProperty.cs
    │   │   ├── CssStyleSpecificationBase.cs
    │   │   ├── ICssPseudoClassProvider.cs
    │   │   ├── ICssPseudoClassSelector.cs
    │   │   ├── ICssSelector.cs
    │   │   ├── ICssStyleShorthandRule.cs
    │   │   ├── InternalPseudoClassProvider.cs
    │   │   ├── ISelector.cs
    │   │   ├── NegationPseudoClass.cs
    │   │   └── SelectorExtensions.cs
    │   ├── EnumerableWrapper.cs
    │   ├── Extensions
    │   │   ├── AttributeExtensions.cs
    │   │   ├── ContentExtensions.cs
    │   │   ├── DocumentExtensions.cs
    │   │   ├── DomExtensions.cs
    │   │   ├── DomModifierExtensions.cs
    │   │   ├── ExpandedDomExtensions.cs
    │   │   ├── ExpandedNavigateExtensions.cs
    │   │   ├── LocationExtensions.cs
    │   │   ├── NavigateExtensions.cs
    │   │   ├── ParserExtension.cs
    │   │   └── StyleExtensions.cs
    │   ├── Html41Specification.cs
    │   ├── Html5DraftSpecification.cs
    │   ├── HtmlDocumentWrapper.cs
    │   ├── HtmlDomDependency.cs
    │   ├── HtmlElementAdapter.cs
    │   ├── HtmlElementWrapper.cs
    │   ├── HtmlEncoding.cs
    │   ├── HtmlList.cs
    │   ├── HtmlNodeWrapper.cs
    │   ├── HtmlRange.cs
    │   ├── HtmlRenderContext.cs
    │   ├── HtmlSpecificationBase.cs
    │   ├── IHtmlAttribute.cs
    │   ├── IHtmlCollection.cs
    │   ├── IHtmlComment.cs
    │   ├── IHtmlContainer.cs
    │   ├── IHtmlDocument.cs
    │   ├── IHtmlDomModifier.cs
    │   ├── IHtmlDomObject.cs
    │   ├── IHtmlDomProvider.cs
    │   ├── IHtmlElement.cs
    │   ├── IHtmlFragment.cs
    │   ├── IHtmlFragmentManager.cs
    │   ├── IHtmlNode.cs
    │   ├── IHtmlParser.cs
    │   ├── IHtmlRenderable.cs
    │   ├── IHtmlRenderAdapter.cs
    │   ├── IHtmlSpecial.cs
    │   ├── IHtmlTextNode.cs
    │   ├── Ivony.Html.csproj
    │   ├── Ivony.Html.nuspec
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Regulars.cs
    │   ├── Styles
    │   │   ├── StyleClassManager.cs
    │   │   └── StyleManager.cs
    │   └── SynchronizedCollection.cs
    ├── Ivony.Html.Binding
    │   ├── BindingExpression.cs
    │   ├── BindingExpressionParser.cs
    │   ├── DataBinder.cs
    │   ├── DynamicBinder.cs
    │   ├── ElementExpression.cs
    │   ├── EvalExpressionBinder.cs
    │   ├── EvalListExpressionBinder.cs
    │   ├── ExpressionBinderCollection.cs
    │   ├── ExpressionElementBinder.cs
    │   ├── HtmlBindingContext.cs
    │   ├── HtmlBinding.cs
    │   ├── HtmlElementBinderCollection.cs
    │   ├── HtmlListBindingContext.cs
    │   ├── IBindingExpressionEvaluator.cs
    │   ├── IBindingExpressionValueObject.cs
    │   ├── ICustomBindingContextModel.cs
    │   ├── IElementExpressionBinder.cs
    │   ├── IExpressionBinder.cs
    │   ├── IHtmlBinder.cs
    │   ├── IHtmlElementBinder.cs
    │   ├── Ivony.Html.Binding.csproj
    │   ├── ListBindingMode.cs
    │   ├── ListDataModel.cs
    │   ├── LiteralBinder.cs
    │   ├── packages.config
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ScriptBinder.cs
    │   └── StyleBinder.cs
    ├── Ivony.Html.Dynamic
    │   ├── DynamicElement.cs
    │   ├── DynamicExtension.cs
    │   ├── ElementDynamic.cs
    │   ├── Ivony.Html.Dynamic.csproj
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Ivony.Html.Forms
    │   ├── DataAnnotationMeatadataProvider.cs
    │   ├── FormButtonGroup.cs
    │   ├── FormButtonGroupItem.cs
    │   ├── FormConfiguration.cs
    │   ├── FormControlCollection.cs
    │   ├── FormControl.cs
    │   ├── FormControlException.cs
    │   ├── FormExtensions.cs
    │   ├── FormFieldMetadata.cs
    │   ├── FormFieldValidatorCollection.cs
    │   ├── FormGroupControlBase.cs
    │   ├── FormGroupControl.cs
    │   ├── FormGroupControlItem.cs
    │   ├── FormMetadata.cs
    │   ├── FormPresenter.cs
    │   ├── FormTextControl.cs
    │   ├── FormValidationErrorCollection.cs
    │   ├── FormValidationError.cs
    │   ├── FormValidationResult.cs
    │   ├── FormValidator.cs
    │   ├── FormValueFormatException.cs
    │   ├── HtmlForm.cs
    │   ├── HtmlInputText.cs
    │   ├── HtmlSelect.cs
    │   ├── HtmlTextArea.cs
    │   ├── IFormControl.cs
    │   ├── IFormFieldValidator.cs
    │   ├── IFormMetadataProvider.cs
    │   ├── IFormPresenter.cs
    │   ├── IFormProvider.cs
    │   ├── IFormValidationResult.cs
    │   ├── IFormValidationRule.cs
    │   ├── IFormValidator.cs
    │   ├── Ivony.Html.Forms.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── StandardFormProvider.cs
    ├── Ivony.Html.JQuery
    │   ├── Ivony.Html.JQuery.csproj
    │   ├── jQuery.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Ivony.Html.LegacyDomModel
    │   ├── FreeComment.cs
    │   ├── FreeElement.cs
    │   ├── FreeNode.cs
    │   ├── FreeTextNode.cs
    │   ├── HtmlFragment.cs
    │   ├── HtmlNodeFactory.cs
    │   ├── IFreeNode.cs
    │   ├── IHtmlNodeFactory.cs
    │   ├── Ivony.Html.LegacyDomModel.csproj
    │   ├── LegacyDomExtensions.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── Ivony.Html.Parser
    │   ├── ContentModels
    │   │   ├── HtmlAttributeSetting.cs
    │   │   ├── HtmlBeginTag.cs
    │   │   ├── HtmlCommentContent.cs
    │   │   ├── HtmlContentFragment.cs
    │   │   ├── HtmlDoctypeDeclaration.cs
    │   │   ├── HtmlEndTag.cs
    │   │   ├── HtmlSpecialTag.cs
    │   │   └── HtmlTextContent.cs
    │   ├── DomAttribute.cs
    │   ├── DomComment.cs
    │   ├── DomDocument.cs
    │   ├── DomDocumentType.cs
    │   ├── DomElement.cs
    │   ├── DomFragment.cs
    │   ├── DomFragmentManager.cs
    │   ├── DomModifier.cs
    │   ├── DomNodeCollection.cs
    │   ├── DomNode.cs
    │   ├── DomObject.cs
    │   ├── DomProvider.cs
    │   ├── DomSpecial.cs
    │   ├── DomTextNode.cs
    │   ├── HtmlParserBase.cs
    │   ├── IDomContainer.cs
    │   ├── IDomFragmentParserProvider.cs
    │   ├── IHtmlReader.cs
    │   ├── Ivony.Html.Parser.csproj
    │   ├── JumonyParser.cs
    │   ├── JumonyReader.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── Regulars
    │       └── Ivony.Html.Parser.Regulars.dll
    ├── Ivony.Html.Styles
    │   ├── CssBox.cs
    │   ├── CssColorValue.cs
    │   ├── CssLengthValue.cs
    │   ├── CssPercentageValue.cs
    │   ├── CssStyleValue.cs
    │   ├── DisplaySetting.cs
    │   ├── Ivony.Html.Styles.csproj
    │   ├── PaddingSetting.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── VisibilitySetting.cs
    ├── Ivony.Html.Templates
    │   ├── HtmlTemplate.cs
    │   ├── IHtmlTemplate.cs
    │   ├── Ivony.Html.Templates.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── TemplateExtensions.cs
    ├── Ivony.Html.Web
    │   ├── DefaultProviders.cs
    │   ├── HtmlBuildProvider.cs
    │   ├── HtmlHandlerBase.cs
    │   ├── HtmlHandler.cs
    │   ├── HtmlHandlerProvider.cs
    │   ├── HtmlRequestContext.cs
    │   ├── HtmlServices.cs
    │   ├── HttpHandlerBase.cs
    │   ├── IHandlerWrapper.cs
    │   ├── IHtmlContentProvider.cs
    │   ├── IHtmlDocumentProvider.cs
    │   ├── IHtmlFilter.cs
    │   ├── IHtmlFilterProvider.cs
    │   ├── IHtmlHandler.cs
    │   ├── IHtmlHandlerProvider.cs
    │   ├── IHtmlParserProvider.cs
    │   ├── IHtmlRequestRoute.cs
    │   ├── Ivony.Html.Web.csproj
    │   ├── JumonyHandler.cs
    │   ├── JumonyPartialHandler.cs
    │   ├── JumonyRequestRoute.cs
    │   ├── JumonyRouteHandler.cs
    │   ├── JumonyWebConfiguration.cs
    │   ├── PartialExecutor.cs
    │   ├── PartialRenderAdapter.cs
    │   ├── PartialResponse.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ResourceManager.cs
    │   ├── StaticFileContentProvider.cs
    │   ├── WebExtenions.cs
    │   ├── WebFormPageContentProvider.cs
    │   └── WebParser.cs
    ├── Ivony.Html.Web.Binding
    │   ├── BindingContext.cs
    │   ├── Binding.cs
    │   ├── BindingExpression.cs
    │   ├── BindingManager.cs
    │   ├── DefaultBindingProvider.cs
    │   ├── IBindingProvider.cs
    │   ├── IBindingTarget.cs
    │   ├── IValueBinder.cs
    │   ├── IValueConverter.cs
    │   ├── Ivony.Html.Web.Binding.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── Regulars.cs
    │   └── TextElementBindingTarget.cs
    ├── Ivony.Html.Web.Mvc
    │   ├── ActionUrlBinder.cs
    │   ├── CachableAttribute.cs
    │   ├── CacheFilterBase.cs
    │   ├── ContentAdapter.cs
    │   ├── ControllerCachePolicyProvider.cs
    │   ├── FallbackCachePolicyProvider.cs
    │   ├── HtmlViewHandlerWrapper.cs
    │   ├── ICachableResult.cs
    │   ├── IContentView.cs
    │   ├── IMasterView.cs
    │   ├── IMvcCachePolicy.cs
    │   ├── IMvcCachePolicyProvider.cs
    │   ├── IViewFilter.cs
    │   ├── IViewFilterProvider.cs
    │   ├── IViewHandler.cs
    │   ├── IViewHandlerProvider.cs
    │   ├── IViewProvider.cs
    │   ├── Ivony.Html.Web.Mvc.csproj
    │   ├── JumonyMasterView.cs
    │   ├── JumonyUrlHelper.cs
    │   ├── JumonyView.cs
    │   ├── JumonyViewEngine.cs
    │   ├── JumonyViewHandler.cs
    │   ├── JumonyViewLocationCache.cs
    │   ├── MvcCachePolicyProviderWrapper.cs
    │   ├── MvcConfiguration.cs
    │   ├── MvcEnvironment.cs
    │   ├── MvcFormExtensions.cs
    │   ├── MvcFormValidationResult.cs
    │   ├── packages.config
    │   ├── PartialViewAdapter.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── ViewBase.cs
    │   ├── ViewHandler.cs
    │   └── ViewHandlerProvider.cs
    ├── Ivony.Html.Xml
    │   ├── Ivony.Html.Xml.csproj
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── XLINQExtensions.cs
    ├── Ivony.Web
    │   ├── AspNetTraceService.cs
    │   ├── CacheExtensions.cs
    │   ├── CacheHelper.cs
    │   ├── CacheItem.cs
    │   ├── CachePolicy.cs
    │   ├── CacheToken.cs
    │   ├── ClientCachePolicy.cs
    │   ├── ClientCachePolicyModule.cs
    │   ├── ConflictCheckList.cs
    │   ├── ICacheDependency.cs
    │   ├── ICachedResponse.cs
    │   ├── ICachePolicyProvider.cs
    │   ├── ICacheStorageProvider.cs
    │   ├── IClientCachePolicy.cs
    │   ├── ITraceService.cs
    │   ├── Ivony.Web.csproj
    │   ├── PersistentCacheStorageProvider.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── RawResponse.cs
    │   ├── SimpleRouteRule.cs
    │   ├── SimpleRouteTable.cs
    │   ├── StandardCachePolicy.cs
    │   ├── VirtualPathBasedProviders.cs
    │   ├── VirtualPathHelper.cs
    │   ├── WebExtensions.cs
    │   └── WebServiceLocator.cs
    ├── Ivony.Web.Mvc
    │   ├── ExtController.cs
    │   ├── Ivony.Web.Mvc.csproj
    │   ├── MvcRouteExtensions.cs
    │   ├── packages.config
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SimpleAreaRouteTable.cs
    │   ├── WebSocketOnlyAttribute.cs
    │   └── WebSocketResult.cs
    ├── Jumony.sln
    ├── LICENSE.txt
    ├── MhtCreator
    │   ├── MhtCreator.csproj
    │   ├── Program.cs
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── MSHTML.Adapter
    │   ├── AttributeAdapter.cs
    │   ├── CommentAdapter.cs
    │   ├── ConvertExtensions.cs
    │   ├── DocumentAdapter.cs
    │   ├── ElementAdapter.cs
    │   ├── MSHTML.Adapter.csproj
    │   ├── NodeAdapter.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── TextNodeAdapter.cs
    ├── packages
    │   ├── DbUtility2.2.1.0
    │   │   ├── DbUtility2.2.1.0.nupkg
    │   │   ├── DbUtility2.2.1.0.nuspec
    │   │   └── lib
    │   │       └── net40
    │   │           ├── DbUtility.v2.dll
    │   │           └── DbUtility.v2.xml
    │   ├── DbUtility3.3.1.0-beta
    │   │   ├── DbUtility3.3.1.0-beta.nupkg
    │   │   └── lib
    │   │       └── net45
    │   │           ├── DbUtility.v3.dll
    │   │           └── DbUtility.v3.xml
    │   ├── Ivony.Core.1.0.1
    │   │   ├── Ivony.Core.1.0.1.nupkg
    │   │   └── lib
    │   │       ├── Ivony.Core.dll
    │   │       └── Ivony.Core.XML
    │   ├── Ivony.Web.Test.1.2.5083.43046
    │   │   ├── Ivony.Web.Test.1.2.5083.43046.nupkg
    │   │   └── lib
    │   │       └── net45
    │   │           └── Ivony.Web.Test.dll
    │   ├── jQuery.1.9.1
    │   │   ├── jQuery.1.9.1.nupkg
    │   │   ├── jQuery.1.9.1.nuspec
    │   │   └── Tools
    │   │       ├── common.ps1
    │   │       ├── install.ps1
    │   │       ├── jquery-1.9.1.intellisense.js
    │   │       └── uninstall.ps1
    │   ├── Microsoft.AspNet.Mvc.3.0.20105.1
    │   │   ├── lib
    │   │   │   └── net40
    │   │   │       └── System.Web.Mvc.dll
    │   │   └── Microsoft.AspNet.Mvc.3.0.20105.1.nupkg
    │   ├── Microsoft.AspNet.Mvc.5.1.1
    │   │   ├── lib
    │   │   │   └── net45
    │   │   │       ├── System.Web.Mvc.dll
    │   │   │       └── System.Web.Mvc.xml
    │   │   ├── Microsoft.AspNet.Mvc.5.1.1.nupkg
    │   │   └── Microsoft.AspNet.Mvc.5.1.1.nuspec
    │   ├── Microsoft.AspNet.Mvc.5.2.3
    │   │   ├── lib
    │   │   │   └── net45
    │   │   │       ├── System.Web.Mvc.dll
    │   │   │       └── System.Web.Mvc.xml
    │   │   └── Microsoft.AspNet.Mvc.5.2.3.nupkg
    │   ├── Microsoft.AspNet.Razor.1.0.20105.408
    │   │   ├── lib
    │   │   │   └── net40
    │   │   │       └── System.Web.Razor.dll
    │   │   └── Microsoft.AspNet.Razor.1.0.20105.408.nupkg
    │   ├── Microsoft.AspNet.Razor.3.2.3
    │   │   ├── lib
    │   │   │   └── net45
    │   │   │       ├── System.Web.Razor.dll
    │   │   │       └── System.Web.Razor.xml
    │   │   └── Microsoft.AspNet.Razor.3.2.3.nupkg
    │   ├── Microsoft.AspNet.WebPages.1.0.20105.408
    │   │   ├── lib
    │   │   │   └── net40
    │   │   │       ├── System.Web.Helpers.dll
    │   │   │       ├── System.Web.WebPages.Deployment.dll
    │   │   │       ├── System.Web.WebPages.dll
    │   │   │       └── System.Web.WebPages.Razor.dll
    │   │   └── Microsoft.AspNet.WebPages.1.0.20105.408.nupkg
    │   ├── Microsoft.AspNet.WebPages.3.1.1
    │   │   ├── lib
    │   │   │   └── net45
    │   │   │       ├── System.Web.Helpers.dll
    │   │   │       ├── System.Web.Helpers.xml
    │   │   │       ├── System.Web.WebPages.Deployment.dll
    │   │   │       ├── System.Web.WebPages.Deployment.xml
    │   │   │       ├── System.Web.WebPages.dll
    │   │   │       ├── System.Web.WebPages.Razor.dll
    │   │   │       ├── System.Web.WebPages.Razor.xml
    │   │   │       └── System.Web.WebPages.xml
    │   │   ├── Microsoft.AspNet.WebPages.3.1.1.nupkg
    │   │   └── Microsoft.AspNet.WebPages.3.1.1.nuspec
    │   ├── Microsoft.AspNet.WebPages.3.2.3
    │   │   ├── lib
    │   │   │   └── net45
    │   │   │       ├── System.Web.Helpers.dll
    │   │   │       ├── System.Web.Helpers.xml
    │   │   │       ├── System.Web.WebPages.Deployment.dll
    │   │   │       ├── System.Web.WebPages.Deployment.xml
    │   │   │       ├── System.Web.WebPages.dll
    │   │   │       ├── System.Web.WebPages.Razor.dll
    │   │   │       ├── System.Web.WebPages.Razor.xml
    │   │   │       └── System.Web.WebPages.xml
    │   │   └── Microsoft.AspNet.WebPages.3.2.3.nupkg
    │   ├── Microsoft.Bcl.Build.1.0.14
    │   │   └── tools
    │   │       └── Microsoft.Bcl.Build.Tasks.dll
    │   ├── Microsoft.Web.Infrastructure.1.0.0.0
    │   │   ├── lib
    │   │   │   └── net40
    │   │   │       └── Microsoft.Web.Infrastructure.dll
    │   │   └── Microsoft.Web.Infrastructure.1.0.0.0.nupkg
    │   ├── Newtonsoft.Json.6.0.8
    │   │   ├── lib
    │   │   │   ├── net20
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   ├── net35
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   ├── net40
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   ├── net45
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   ├── netcore45
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   ├── portable-net40 sl5 wp80 win8 wpa81
    │   │   │   │   ├── Newtonsoft.Json.dll
    │   │   │   │   └── Newtonsoft.Json.xml
    │   │   │   └── portable-net45 wp80 win8 wpa81 aspnetcore50
    │   │   │       ├── Newtonsoft.Json.dll
    │   │   │       └── Newtonsoft.Json.xml
    │   │   ├── Newtonsoft.Json.6.0.8.nupkg
    │   │   └── tools
    │   │       └── install.ps1
    │   └── repositories.config
    ├── PostBuild.bat
    ├── PreBuild.bat
    ├── RegularsAssemblyBuilder
    │   ├── app.config
    │   ├── Program.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── RegularsAssemblyBuilder.csproj
    │   └── Regulars.cs
    ├── SelectorTest
    │   ├── CssClassSelectorTest.cs
    │   ├── CssSelectorTest1.html
    │   ├── CssSelectorTest.cs
    │   ├── CssTest.csproj
    │   ├── NegationPseudoClassTest.html
    │   └── Properties
    │       └── AssemblyInfo.cs
    ├── SpeficationTest
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   ├── SpecificationTest10.html
    │   ├── SpecificationTest1.html
    │   ├── SpecificationTest2.html
    │   ├── SpecificationTest3.html
    │   ├── SpecificationTest4.html
    │   ├── SpecificationTest5.html
    │   ├── SpecificationTest6.html
    │   ├── SpecificationTest7.html
    │   ├── SpecificationTest8.html
    │   ├── SpecificationTest9.html
    │   ├── SpecificationTest.cs
    │   ├── SpeficationTest6.html
    │   └── SpeficationTest.csproj
    ├── TestConsole
    │   ├── App.config
    │   ├── Program.cs
    │   ├── Properties
    │   │   └── AssemblyInfo.cs
    │   └── TestConsole.csproj
    ├── WebBrowser
    │   ├── App.xaml
    │   ├── App.xaml.cs
    │   ├── MainWindow.xaml
    │   ├── MainWindow.xaml.cs
    │   ├── Properties
    │   │   ├── AssemblyInfo.cs
    │   │   ├── Resources.Designer.cs
    │   │   ├── Resources.resx
    │   │   ├── Settings.Designer.cs
    │   │   └── Settings.settings
    │   ├── TranslateTask.cs
    │   ├── TranslationTerm.cs
    │   └── WebBrowser.csproj
    ├── WebSite
    │   ├── JumonyGuide
    │   │   ├── Global.asax
    │   │   ├── index.htm
    │   │   ├── index.htm.ashx
    │   │   ├── links.aspx
    │   │   ├── links.aspx.ashx
    │   │   ├── links.aspx.cs
    │   │   ├── ranks.htm
    │   │   ├── ranks.htm.ashx
    │   │   ├── Scripts
    │   │   │   ├── jquery-1.4.1.js
    │   │   │   ├── jquery-1.4.1.min.js
    │   │   │   └── jquery-1.4.1-vsdoc.js
    │   │   ├── Styles
    │   │   │   └── Site.css
    │   │   └── Web.config
    │   ├── JumonyPage.zip
    │   └── PartialTest
    │       ├── App_Code
    │       │   └── TestController.cs
    │       ├── Global.asax
    │       ├── Views
    │       │   └── Test
    │       │       ├── Test.html
    │       │       └── Test.html.ashx
    │       └── Web.config
    └── WebTest
        ├── ActionUrlTest
        │   └── Test1.html
        ├── App_Code
        │   ├── ActionUrlTest.cs
        │   ├── DefaultProviderTest.cs
        │   ├── HandlerProviderTest.cs
        │   ├── HtmlHandlerTest.cs
        │   ├── PartialTest.cs
        │   ├── TestJumonyHandler.cs
        │   └── WebServiceTest.cs
        ├── Bin
        │   ├── Ivony.Web.Test.dll.refresh
        │   ├── System.Web.Helpers.dll.refresh
        │   ├── System.Web.Mvc.dll.refresh
        │   ├── System.Web.Razor.dll.refresh
        │   ├── System.Web.WebPages.Deployment.dll.refresh
        │   ├── System.Web.WebPages.dll.refresh
        │   └── System.Web.WebPages.Razor.dll.refresh
        ├── Global.asax
        ├── HandlerTest
        │   ├── Test1.html
        │   └── Test1.html.ashx
        ├── packages.config
        ├── PartialTest
        │   ├── Partial1.html
        │   ├── Partial2.html
        │   ├── Partial2.html.ashx
        │   ├── Test1.html
        │   ├── Test1.html.ashx
        │   ├── Test2.html
        │   ├── Test2.html.ashx
        │   ├── Test3.html
        │   └── Test3.html.ashx
        ├── RouteTest
        │   ├── DefaultHandler
        │   │   ├── _handler.ashx
        │   │   └── Test1.html
        │   └── NonDefaultHandler
        │       ├── Test1.html
        │       ├── Test1.html.ashx
        │       └── Test2.html
        ├── Web.config
        └── Web.Debug.config

133 directories, 556 files

标签:

网友评论

发表评论

(您的评论需要经过审核才能显示)

查看所有0条评论>>

小贴士

感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。

  • 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
  • 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
  • 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
  • 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。

关于好例子网

本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明

;
报警