Adding Markdown module

--HG--
branch : 1.x
This commit is contained in:
Sebastien Ros 2011-09-27 16:36:48 -07:00
parent 8db0168073
commit 75089931cf
22 changed files with 4464 additions and 0 deletions

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,433 @@
<?xml version="1.0"?>
<doc>
<assembly>
<name>MarkdownSharp</name>
</assembly>
<members>
<member name="P:MarkdownSharp.IMarkdownOptions.AutoHyperlink">
<summary>
when true, (most) bare plain URLs are auto-hyperlinked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.IMarkdownOptions.AutoNewLines">
<summary>
when true, RETURN becomes a literal newline
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.IMarkdownOptions.EmptyElementSuffix">
<summary>
use ">" for HTML output, or " />" for XHTML output
</summary>
</member>
<member name="P:MarkdownSharp.IMarkdownOptions.EncodeProblemUrlCharacters">
<summary>
when true, problematic URL characters like [, ], (, and so forth will be encoded
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.IMarkdownOptions.LinkEmails">
<summary>
when false, email addresses will never be auto-linked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.IMarkdownOptions.StrictBoldItalic">
<summary>
when true, bold and italic require non-word characters on either side
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="T:MarkdownSharp.Markdown">
<summary>
Markdown is a text-to-HTML conversion tool for web writers.
Markdown allows you to write using an easy-to-read, easy-to-write plain text format,
then convert it to structurally valid XHTML (or HTML).
</summary>
</member>
<member name="F:MarkdownSharp.Markdown._nestDepth">
<summary>
maximum nested depth of [] and () supported by the transform; implementation detail
</summary>
</member>
<member name="F:MarkdownSharp.Markdown._tabWidth">
<summary>
Tabs are automatically converted to spaces as part of the transform
this constant determines how "wide" those tabs become in spaces
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor">
<summary>
Create a new Markdown instance using default options
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor(MarkdownSharp.IMarkdownOptions)">
<summary>
Create a new Markdown instance and optionally load options from the supplied options parameter.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#ctor(System.Boolean)">
<summary>
Create a new Markdown instance and optionally load options from a configuration
file. There they should be stored in the appSettings section, available options are:
Markdown.StrictBoldItalic (true/false)
Markdown.EmptyElementSuffix (">" or " />" without the quotes)
Markdown.LinkEmails (true/false)
Markdown.AutoNewLines (true/false)
Markdown.AutoHyperlink (true/false)
Markdown.EncodeProblemUrlCharacters (true/false)
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.#cctor">
<summary>
In the static constuctor we'll initialize what stays the same across all transforms.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Transform(System.String)">
<summary>
Transforms the provided Markdown-formatted text to HTML;
see http://en.wikipedia.org/wiki/Markdown
</summary>
<remarks>
The order in which other subs are called here is
essential. Link and image substitutions need to happen before
EscapeSpecialChars(), so that any *'s or _'s in the a
and img tags get encoded.
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.RunBlockGamut(System.String)">
<summary>
Perform transformations that form block-level tags like paragraphs, headers, and list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.RunSpanGamut(System.String)">
<summary>
Perform transformations that occur *within* block-level tags like paragraphs, headers, and list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.FormParagraphs(System.String)">
<summary>
splits on two or more newlines, to form "paragraphs";
each paragraph is then unhashed (if it is a hash) or wrapped in HTML p tag
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.GetNestedBracketsPattern">
<summary>
Reusable pattern to match balanced [brackets]. See Friedl's
"Mastering Regular Expressions", 2nd Ed., pp. 328-331.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.GetNestedParensPattern">
<summary>
Reusable pattern to match balanced (parens). See Friedl's
"Mastering Regular Expressions", 2nd Ed., pp. 328-331.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.StripLinkDefinitions(System.String)">
<summary>
Strips link definitions from text, stores the URLs and titles in hash references.
</summary>
<remarks>
^[id]: url "optional title"
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.GetBlockPattern">
<summary>
derived pretty much verbatim from PHP Markdown
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.HashHTMLBlocks(System.String)">
<summary>
replaces any block-level HTML blocks with hash entries
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.TokenizeHTML(System.String)">
<summary>
returns an array of HTML tokens comprising the input string. Each token is
either a tag (possibly with nested, tags contained therein, such
as &lt;a href="&lt;MTFoo&gt;"&gt;, or a run of text between tags. Each element of the
array is a two-element array; the first is either 'tag' or 'text'; the second is
the actual value.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoAnchors(System.String)">
<summary>
Turn Markdown link shortcuts into HTML anchor tags
</summary>
<remarks>
[link text](url "title")
[link text][id]
[id]
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoImages(System.String)">
<summary>
Turn Markdown image shortcuts into HTML img tags.
</summary>
<remarks>
![alt text][id]
![alt text](url "optional title")
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoHeaders(System.String)">
<summary>
Turn Markdown headers into HTML header tags
</summary>
<remarks>
Header 1
========
Header 2
--------
# Header 1
## Header 2
## Header 2 with closing hashes ##
...
###### Header 6
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoHorizontalRules(System.String)">
<summary>
Turn Markdown horizontal rules into HTML hr tags
</summary>
<remarks>
***
* * *
---
- - -
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.DoLists(System.String)">
<summary>
Turn Markdown lists into HTML ul and ol and li tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.ProcessListItems(System.String,System.String)">
<summary>
Process the contents of a single ordered or unordered list, splitting it
into individual list items.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoCodeBlocks(System.String)">
<summary>
/// Turn Markdown 4-space indented code into HTML pre code blocks
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoCodeSpans(System.String)">
<summary>
Turn Markdown `code spans` into HTML code tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoItalicsAndBold(System.String)">
<summary>
Turn Markdown *italics* and **bold** into HTML strong and em tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoHardBreaks(System.String)">
<summary>
Turn markdown line breaks (two space at end of line) into HTML break tags
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoBlockQuotes(System.String)">
<summary>
Turn Markdown > quoted blocks into HTML blockquote blocks
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.DoAutoLinks(System.String)">
<summary>
Turn angle-delimited URLs into HTML anchor tags
</summary>
<remarks>
&lt;http://www.example.com&gt;
</remarks>
</member>
<member name="M:MarkdownSharp.Markdown.Outdent(System.String)">
<summary>
Remove one level of line-leading spaces
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeEmailAddress(System.String)">
<summary>
encodes email address randomly
roughly 10% raw, 45% hex, 45% dec
note that @ is always encoded and : never is
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeCode(System.String)">
<summary>
Encode/escape certain Markdown characters inside code blocks and spans where they are literals
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeAmpsAndAngles(System.String)">
<summary>
Encode any ampersands (that aren't part of an HTML entity) and left or right angle brackets
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeBackslashes(System.String)">
<summary>
Encodes any escaped characters such as \`, \*, \[ etc
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Unescape(System.String)">
<summary>
swap back in all the special characters we've hidden
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeBoldItalic(System.String)">
<summary>
escapes Bold [ * ] and Italic [ _ ] characters
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EncodeProblemUrlChars(System.String)">
<summary>
hex-encodes some unusual "problem" chars in URLs to avoid URL detection problems
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.EscapeSpecialCharsWithinTagAttributes(System.String)">
<summary>
Within tags -- meaning between &lt; and &gt; -- encode [\ ` * _] so they
don't conflict with their use in Markdown for code, italics and strong.
We're replacing each such character with its corresponding hash
value; this is likely overkill, but it should prevent us from colliding
with the escape values by accident.
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.Normalize(System.String)">
<summary>
convert all tabs to _tabWidth spaces;
standardizes line endings from DOS (CR LF) or Mac (CR) to UNIX (LF);
makes sure text ends with a couple of newlines;
removes any blank lines (only spaces) in the text
</summary>
</member>
<member name="M:MarkdownSharp.Markdown.RepeatString(System.String,System.Int32)">
<summary>
this is to emulate what's evailable in PHP
</summary>
</member>
<member name="P:MarkdownSharp.Markdown.Version">
<summary>
current version of MarkdownSharp;
see http://code.google.com/p/markdownsharp/ for the latest code or to contribute
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.#cctor">
<summary>
Static constructor
</summary>
<remarks>
In the static constuctor we'll initialize what stays the same across all transforms.
</remarks>
</member>
<!-- Badly formed XML comment ignored for member "M:MarkdownSharp.MarkdownOld.Transform(System.String)" -->
<member name="M:MarkdownSharp.MarkdownOld.StripLinkDefinitions(System.String)">
<summary>
Strips link definitions from text, stores the URLs and titles in hash references.
</summary>
<remarks>Link defs are in the form: ^[id]: url "optional title"</remarks>
</member>
<member name="M:MarkdownSharp.MarkdownOld.HashHTMLBlocks(System.String)">
<summary>
Hashify HTML blocks
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.RunBlockGamut(System.String)">
<summary>
These are all the transformations that form block-level
tags like paragraphs, headers, and list items.
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.RunSpanGamut(System.String)">
<summary>
These are all the transformations that occur *within* block-level
tags like paragraphs, headers, and list items.
</summary>
</member>
<!-- Badly formed XML comment ignored for member "M:MarkdownSharp.MarkdownOld.TokenizeHTML(System.String)" -->
<!-- Badly formed XML comment ignored for member "M:MarkdownSharp.MarkdownOld.DoAnchors(System.String)" -->
<!-- Badly formed XML comment ignored for member "M:MarkdownSharp.MarkdownOld.DoImages(System.String)" -->
<member name="M:MarkdownSharp.MarkdownOld.ProcessListItems(System.String,System.String)">
<summary>
Process the contents of a single ordered or unordered list, splitting it
into individual list items.
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.EncodeCode(System.String)">
<summary>
Encode/escape certain characters inside Markdown code runs.
</summary>
<remarks>
The point is that in code, these characters are literals, and lose their
special Markdown meanings.
</remarks>
</member>
<member name="M:MarkdownSharp.MarkdownOld.EncodeAmpsAndAngles(System.String)">
<summary>
Smart processing for ampersands and angle brackets that need to be encoded.
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.UnescapeSpecialChars(System.String)">
<summary>
Swap back in all the special characters we've hidden.
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.Outdent(System.String)">
<summary>
Remove one level of line-leading tabs or spaces
</summary>
</member>
<member name="M:MarkdownSharp.MarkdownOld.RepeatString(System.String,System.Int32)">
<summary>
This is to emulate what's evailable in PHP
</summary>
<param name="text"></param>
<param name="count"></param>
<returns></returns>
</member>
<member name="M:MarkdownSharp.MarkdownOld.ComputeMD5(System.String)">
<summary>
Calculate an MD5 hash of an arbitrary string
</summary>
<param name="text"></param>
<returns></returns>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.AutoHyperlink">
<summary>
when true, (most) bare plain URLs are auto-hyperlinked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.AutoNewLines">
<summary>
when true, RETURN becomes a literal newline
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.EmptyElementSuffix">
<summary>
use ">" for HTML output, or " />" for XHTML output
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.EncodeProblemUrlCharacters">
<summary>
when true, problematic URL characters like [, ], (, and so forth will be encoded
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.LinkEmails">
<summary>
when false, email addresses will never be auto-linked
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
<member name="P:MarkdownSharp.MarkdownOptions.StrictBoldItalic">
<summary>
when true, bold and italic require non-word characters on either side
WARNING: this is a significant deviation from the markdown spec
</summary>
</member>
</members>
</doc>

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.6 KiB

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
<!-- iis6 - for any request in this location, return via managed static file handler -->
<add path="*" verb="*" type="System.Web.StaticFileHandler" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers accessPolicy="Script,Read">
<!--
iis7 - for any request to a file exists on disk, return it via native http module.
accessPolicy 'Script' is to allow for a managed 404 page.
-->
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
</handlers>
</system.webServer>
</configuration>

View File

@ -0,0 +1,138 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProductVersion>9.0.30729</ProductVersion>
<SchemaVersion>2.0</SchemaVersion>
<ProjectGuid>{3158C928-888C-4A84-8BC1-4A8257489538}</ProjectGuid>
<ProjectTypeGuids>{349c5851-65df-11da-9384-00065b846f21};{fae04ec0-301f-11d3-bf4b-00c04f79efbc}</ProjectTypeGuids>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Markdown</RootNamespace>
<AssemblyName>Markdown</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<MvcBuildViews>false</MvcBuildViews>
<FileUpgradeFlags>
</FileUpgradeFlags>
<OldToolsVersion>3.5</OldToolsVersion>
<UpgradeBackupLocation />
<TargetFrameworkProfile />
<UseIISExpress>false</UseIISExpress>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>..\..\..\OrchardBasicCorrectness.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<CodeAnalysisRuleSet>AllRules.ruleset</CodeAnalysisRuleSet>
</PropertyGroup>
<ItemGroup>
<Reference Include="MarkdownSharp">
<HintPath>..\..\..\..\lib\markdown\MarkdownSharp.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Web" />
<Reference Include="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\..\..\..\lib\aspnetmvc\System.Web.Mvc.dll</HintPath>
</Reference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\Orchard\Orchard.Framework.csproj">
<Project>{2D1D92BB-4555-4CBE-8D0E-63563D6CE4C6}</Project>
<Name>Orchard.Framework</Name>
</ProjectReference>
<ProjectReference Include="..\..\Core\Orchard.Core.csproj">
<Project>{9916839C-39FC-4CEB-A5AF-89CA7E87119F}</Project>
<Name>Orchard.Core</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Content\Admin\Images\grippie.png" />
<Content Include="Scripts\orchard-markdown.js" />
<Content Include="Scripts\jquery.textarearesizer.min.js" />
<Content Include="Styles\admin-markdown.css" />
<Content Include="Content\Admin\Images\wmd-buttons.png" />
<Content Include="Module.txt" />
<Content Include="Scripts\Markdown.Converter.js" />
<Content Include="Scripts\Markdown.Editor.js" />
<Content Include="Scripts\Markdown.Sanitizer.js" />
<Content Include="Scripts\Web.config">
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="web.config" />
</ItemGroup>
<ItemGroup>
<Content Include="Views\Body-Markdown.Editor.cshtml" />
<Content Include="Views\Web.config" />
</ItemGroup>
<ItemGroup>
<Compile Include="ResourceManifest.cs" />
<Compile Include="Services\MarkdownFilter.cs" />
</ItemGroup>
<ItemGroup>
<Content Include="Content\Web.config">
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<ItemGroup>
<Content Include="Styles\Web.config">
<SubType>Designer</SubType>
</Content>
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v10.0\WebApplications\Microsoft.WebApplication.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
</Target> -->
<Target Name="AfterBuild" DependsOnTargets="AfterBuildCompiler">
<PropertyGroup>
<AreasManifestDir>$(ProjectDir)\..\Manifests</AreasManifestDir>
</PropertyGroup>
<!-- If this is an area child project, uncomment the following line:
<CreateAreaManifest AreaName="$(AssemblyName)" AreaType="Child" AreaPath="$(ProjectDir)" ManifestPath="$(AreasManifestDir)" ContentFiles="@(Content)" />
-->
<!-- If this is an area parent project, uncomment the following lines:
<CreateAreaManifest AreaName="$(AssemblyName)" AreaType="Parent" AreaPath="$(ProjectDir)" ManifestPath="$(AreasManifestDir)" ContentFiles="@(Content)" />
<CopyAreaManifests ManifestPath="$(AreasManifestDir)" CrossCopy="false" RenameViews="true" />
-->
</Target>
<Target Name="AfterBuildCompiler" Condition="'$(MvcBuildViews)'=='true'">
<AspNetCompiler VirtualPath="temp" PhysicalPath="$(ProjectDir)\..\$(ProjectName)" />
</Target>
<ProjectExtensions>
<VisualStudio>
<FlavorProperties GUID="{349c5851-65df-11da-9384-00065b846f21}">
<WebProjectProperties>
<UseIIS>False</UseIIS>
<AutoAssignPort>True</AutoAssignPort>
<DevelopmentServerPort>53593</DevelopmentServerPort>
<DevelopmentServerVPath>/</DevelopmentServerVPath>
<IISUrl>
</IISUrl>
<NTLMAuthentication>False</NTLMAuthentication>
<UseCustomServer>True</UseCustomServer>
<CustomServerUrl>http://orchard.codeplex.com</CustomServerUrl>
<SaveServerSettingsInUserFile>False</SaveServerSettingsInUserFile>
</WebProjectProperties>
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
</Project>

View File

@ -0,0 +1,10 @@
Name: Markdown
AntiForgery: enabled
Author: The Orchard Team
Website: http://orchardproject.net
Version: 1.2.0
OrchardVersion: 1.2.0
Description: The Markdown module enables rich text contents to be created using the Markdown syntax.
FeatureDescription: Markdown editor.
Category: Input Editor
Dependencies: Common

View File

@ -0,0 +1,16 @@
using Orchard.UI.Resources;
namespace Markdown {
public class ResourceManifest : IResourceManifestProvider {
public void BuildManifests(ResourceManifestBuilder builder) {
var manifest = builder.Add();
manifest.DefineScript("Markdown_Converter").SetUrl("Markdown.Converter.js");
manifest.DefineScript("Markdown_Sanitizer").SetUrl("Markdown.Sanitizer.js").SetDependencies("Markdown_Converter");
manifest.DefineScript("Markdown_Editor").SetUrl("Markdown.Editor.js").SetDependencies("Markdown_Sanitizer");
manifest.DefineScript("Resizer").SetUrl("jquery.textarearesizer.min.js");
manifest.DefineScript("OrchardMarkdown").SetUrl("orchard-markdown.js").SetDependencies("Resizer", "Markdown_Editor"); ;
manifest.DefineStyle("OrchardMarkdown").SetUrl("admin-markdown.css");
}
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,108 @@
(function () {
var output, Converter;
if (typeof exports === "object" && typeof require === "function") { // we're in a CommonJS (e.g. Node.js) module
output = exports;
Converter = require("./Markdown.Converter").Converter;
} else {
output = window.Markdown;
Converter = output.Converter;
}
output.getSanitizingConverter = function () {
var converter = new Converter();
converter.hooks.chain("postConversion", sanitizeHtml);
converter.hooks.chain("postConversion", balanceTags);
return converter;
}
function sanitizeHtml(html) {
return html.replace(/<[^>]*>?/gi, sanitizeTag);
}
// (tags that can be opened/closed) | (tags that stand alone)
var basic_tag_whitelist = /^(<\/?(b|blockquote|code|del|dd|dl|dt|em|h1|h2|h3|i|kbd|li|ol|p|pre|s|sup|sub|strong|strike|ul)>|<(br|hr)\s?\/?>)$/i;
// <a href="url..." optional title>|</a>
var a_white = /^(<a\shref="((https?|ftp):\/\/|\/)[-A-Za-z0-9+&@#\/%?=~_|!:,.;\(\)]+"(\stitle="[^"<>]+")?\s?>|<\/a>)$/i;
// <img src="url..." optional width optional height optional alt optional title
var img_white = /^(<img\ssrc="(https?:\/\/|\/)[-A-Za-z0-9+&@#\/%?=~_|!:,.;\(\)]+"(\swidth="\d{1,3}")?(\sheight="\d{1,3}")?(\salt="[^"<>]*")?(\stitle="[^"<>]*")?\s?\/?>)$/i;
function sanitizeTag(tag) {
if (tag.match(basic_tag_whitelist) || tag.match(a_white) || tag.match(img_white))
return tag;
else
return "";
}
/// <summary>
/// attempt to balance HTML tags in the html string
/// by removing any unmatched opening or closing tags
/// IMPORTANT: we *assume* HTML has *already* been
/// sanitized and is safe/sane before balancing!
///
/// adapted from CODESNIPPET: A8591DBA-D1D3-11DE-947C-BA5556D89593
/// </summary>
function balanceTags(html) {
if (html == "")
return "";
var re = /<\/?\w+[^>]*(\s|$|>)/g;
// convert everything to lower case; this makes
// our case insensitive comparisons easier
var tags = html.toLowerCase().match(re);
// no HTML tags present? nothing to do; exit now
var tagcount = (tags || []).length;
if (tagcount == 0)
return html;
var tagname, tag;
var ignoredtags = "<p><img><br><li><hr>";
var match;
var tagpaired = [];
var tagremove = [];
var needsRemoval = false;
// loop through matched tags in forward order
for (var ctag = 0; ctag < tagcount; ctag++) {
tagname = tags[ctag].replace(/<\/?(\w+).*/, "$1");
// skip any already paired tags
// and skip tags in our ignore list; assume they're self-closed
if (tagpaired[ctag] || ignoredtags.search("<" + tagname + ">") > -1)
continue;
tag = tags[ctag];
match = -1;
if (!/^<\//.test(tag)) {
// this is an opening tag
// search forwards (next tags), look for closing tags
for (var ntag = ctag + 1; ntag < tagcount; ntag++) {
if (!tagpaired[ntag] && tags[ntag] == "</" + tagname + ">") {
match = ntag;
break;
}
}
}
if (match == -1)
needsRemoval = tagremove[ctag] = true; // mark for removal
else
tagpaired[match] = true; // mark paired
}
if (!needsRemoval)
return html;
// delete all orphaned tags from the string
var ctag = 0;
html = html.replace(re, function (match) {
var res = tagremove[ctag] ? "" : match;
ctag++;
return res;
});
return html;
}
})();

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
<!-- iis6 - for any request in this location, return via managed static file handler -->
<add path="*" verb="*" type="System.Web.StaticFileHandler" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers accessPolicy="Script,Read">
<!--
iis7 - for any request to a file exists on disk, return it via native http module.
accessPolicy 'Script' is to allow for a managed 404 page.
-->
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
</handlers>
</system.webServer>
</configuration>

View File

@ -0,0 +1 @@
(function($){var textarea,staticOffset;var iLastMousePos=0;var iMin=32;var grip;$.fn.TextAreaResizer=function(){return this.each(function(){textarea=$(this).addClass('processed'),staticOffset=null;$(this).wrap('<div class="resizable-textarea"><span></span></div>').parent().append($('<div class="grippie"></div>').bind("mousedown",{el:this},startDrag));var grippie=$('div.grippie',$(this).parent())[0];grippie.style.marginRight=(grippie.offsetWidth-$(this)[0].offsetWidth)+'px'})};function startDrag(e){textarea=$(e.data.el);textarea.blur();iLastMousePos=mousePosition(e).y;staticOffset=textarea.height()-iLastMousePos;textarea.css('opacity',0.25);$(document).mousemove(performDrag).mouseup(endDrag);return false}function performDrag(e){var iThisMousePos=mousePosition(e).y;var iMousePos=staticOffset+iThisMousePos;if(iLastMousePos>=(iThisMousePos)){iMousePos-=5}iLastMousePos=iThisMousePos;iMousePos=Math.max(iMin,iMousePos);textarea.height(iMousePos+'px');if(iMousePos<iMin){endDrag(e)}return false}function endDrag(e){$(document).unbind('mousemove',performDrag).unbind('mouseup',endDrag);textarea.css('opacity',1);textarea.focus();textarea=null;staticOffset=null;iLastMousePos=0}function mousePosition(e){return{x:e.clientX+document.documentElement.scrollLeft,y:e.clientY+document.documentElement.scrollTop}}})(jQuery);

View File

@ -0,0 +1,43 @@
(function () {
var marker = '<!-- markdown -->';
var converter = Markdown.getSanitizingConverter();
var editor = new Markdown.Editor(converter, "", function () { alert("Do you need help?"); });
editor.hooks.set("insertImageDialog", function (callback) {
// see if there's an image selected that they intend on editing
var wmd = $('#wmd-input');
var editImage, content = wmd.selection ? wmd.selection.createRange().text : null;
if (content) {
// replace <img> with <editimg>, so we can easily use jquery to get the 'src' without it
// being resolved by the browser (e.g. prevent '/foo.png' becoming 'http://localhost:12345/orchardlocal/foo.png').
content = content.replace(/\<IMG/gi, "<editimg");
var firstImg = $(content).filter("editimg");
if (firstImg.length) {
editImage = {
src: firstImg.attr("src"),
"class": firstImg.attr("class"),
style: firstImg.css("cssText"),
alt: firstImg.attr("alt"),
width: firstImg.attr("width"),
height: firstImg.attr("height"),
align: firstImg.attr("align")
};
}
}
wmd.trigger("orchard-admin-pickimage-open", {
img: editImage,
uploadMediaPath: wmd.data("mediapicker-uploadpath"),
callback: function (data) {
wmd.focus();
alert(data);
callback(data.img.src);
}
});
return true;
});
editor.run();
$('.grippie').TextAreaResizer();
})();

View File

@ -0,0 +1,18 @@
using System;
using Orchard.Services;
namespace Markdown.Services {
public class MarkdownFilter : IHtmlFilter {
public string ProcessContent(string text, string flavor) {
return flavor.Equals("markdown", StringComparison.OrdinalIgnoreCase) ? MarkdownReplace(text) : text;
}
private static string MarkdownReplace(string text) {
if (string.IsNullOrEmpty(text))
return string.Empty;
var markdown = new MarkdownSharp.Markdown();
return markdown.Transform(text);
}
}
}

View File

@ -0,0 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
<!-- iis6 - for any request in this location, return via managed static file handler -->
<add path="*" verb="*" type="System.Web.StaticFileHandler" />
</httpHandlers>
</system.web>
<system.webServer>
<handlers accessPolicy="Script,Read">
<!--
iis7 - for any request to a file exists on disk, return it via native http module.
accessPolicy 'Script' is to allow for a managed 404 page.
-->
<add name="StaticFile" path="*" verb="*" modules="StaticFileModule" preCondition="integratedMode" resourceType="File" requireAccess="Read" />
</handlers>
</system.webServer>
</configuration>

View File

@ -0,0 +1,87 @@
.wmd-button {
width: 20px;
height: 20px;
padding-left: 2px;
padding-right: 3px;
position: absolute;
display: inline-block;
list-style: none;
cursor: pointer;
}
.wmd-button > span {
background-image: url(../Content/Admin/Images/wmd-buttons.png);
background-repeat: no-repeat;
background-position: 0px 0px;
width: 20px;
height: 20px;
display: inline-block;
}
.wmd-button-row
{
position: relative;
margin-left: 5px;
margin-right: 5px;
margin-bottom: 5px;
margin-top: 10px;
padding: 0px;
height: 20px;
}
.wmd-input {
font-family: Consolas, Menlo, Monaco, Lucida Console, Liberation Mono, DejaVu Sans Mono, Bitstream Vera Sans Mono, Courier New, monospace, serif;
width: 660px;
padding: 3px;
height: 200px;
line-height: 1.2;
}
.wmd-preview {
border: 2px dotted #CCC;
padding: 3px;
margin-top: 6px;
}
.wmd-preview ol {
list-style: decimal;
text-align: match-parent;
}
.wmd-preview ul {
list-style: disc;
text-align: match-parent;
}
.wmd-preview blockquote {
margin: 1em 3em;
color: #999;
border-left: 2px solid #999;
padding-left: 1em;
}
.wmd-preview pre {
margin: 1em 3em;
color: #999;
border-left: 2px solid #999;
padding-left: 1em;
font-family: Courier New;
}
/* Grippie */
div.grippie {
background:#EEEEEE url(../Content/Admin/Images/grippie.png) no-repeat scroll center 2px;
border-color:#DDDDDD;
border-style:solid;
border-width:0pt 1px 1px;
cursor:s-resize;
height:9px;
overflow:hidden;
}
.resizable-textarea textarea {
display:block;
margin-bottom:0pt;
width:95%;
height: 20%;
}

View File

@ -0,0 +1,20 @@
@{
Script.Require("OrchardMarkdown");
Style.Require("OrchardMarkdown");
}
<fieldset>
<div id="wmd-button-bar" class="wmd-button-bar"></div>
@Html.TextArea("Text", (string)Model.Text, 25, 80,
new Dictionary<string,object> {
{"id", "wmd-input"},
{"class", "wmd-input grippie"},
{"data-mediapicker-uploadpath", Model.AddMediaPath},
{"data-mediapicker-title", T("Insert/Update Media")}
})
</fieldset>
<fieldset>
<label>@T("Preview")</label>
<div id="wmd-preview" class="wmd-panel wmd-preview"></div>
</fieldset>

View File

@ -0,0 +1,41 @@
<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="webpages:Enabled" value="false" />
</appSettings>
<system.web>
<httpHandlers>
</httpHandlers>
<!--
Enabling request validation in view pages would cause validation to occur
after the input has already been processed by the controller. By default
MVC performs request validation before a controller processes the input.
To change this behavior apply the ValidateInputAttribute to a
controller or action.
-->
<pages
validateRequest="false"
pageParserFilterType="System.Web.Mvc.ViewTypeParserFilter, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
pageBaseType="System.Web.Mvc.ViewPage, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL"
userControlBaseType="System.Web.Mvc.ViewUserControl, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
<controls>
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL" namespace="System.Web.Mvc" tagPrefix="mvc" />
</controls>
</pages>
</system.web>
<system.webServer>
<validation validateIntegratedModeConfiguration="false"/>
<handlers>
</handlers>
</system.webServer>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.Web.Mvc" publicKeyToken="31bf3856ad364e35" />
<bindingRedirect oldVersion="2.0.0.0" newVersion="3.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>

View File

@ -0,0 +1,39 @@
<?xml version="1.0"?>
<configuration>
<configSections>
<sectionGroup name="system.web.webPages.razor" type="System.Web.WebPages.Razor.Configuration.RazorWebSectionGroup, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35">
<remove name="host" />
<remove name="pages" />
<section name="host" type="System.Web.WebPages.Razor.Configuration.HostSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
<section name="pages" type="System.Web.WebPages.Razor.Configuration.RazorPagesSection, System.Web.WebPages.Razor, Version=1.0.0.0, Culture=neutral, PublicKeyToken=31BF3856AD364E35" requirePermission="false" />
</sectionGroup>
</configSections>
<system.web.webPages.razor>
<host factoryType="System.Web.Mvc.MvcWebRazorHostFactory, System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
<pages pageBaseType="Orchard.Mvc.ViewEngines.Razor.WebViewPage">
<namespaces>
<add namespace="System.Web.Mvc" />
<add namespace="System.Web.Mvc.Ajax" />
<add namespace="System.Web.Mvc.Html" />
<add namespace="System.Web.Routing" />
<add namespace="System.Linq"/>
<add namespace="System.Collections.Generic"/>
<add namespace="Orchard.Mvc.Html"/>
</namespaces>
</pages>
</system.web.webPages.razor>
<system.web>
<compilation targetFramework="4.0">
<assemblies>
<add assembly="System.Web.Abstractions, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add assembly="System.Web.Routing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35"/>
<add assembly="System.Data.Linq, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
<add assembly="System.Web.Mvc, Version=3.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
</assemblies>
</compilation>
</system.web>
</configuration>

View File

@ -120,6 +120,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Orchard.Forms", "Orchard.We
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Orchard.Rules", "Orchard.Web\Modules\Orchard.Rules\Orchard.Rules.csproj", "{966EC390-3C7F-4D98-92A6-F0F30D02E9B1}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Markdown", "Orchard.Web\Modules\Markdown\Markdown.csproj", "{3158C928-888C-4A84-8BC1-4A8257489538}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
CodeCoverage|Any CPU = CodeCoverage|Any CPU
@ -640,6 +642,16 @@ Global
{966EC390-3C7F-4D98-92A6-F0F30D02E9B1}.FxCop|Any CPU.Build.0 = Release|Any CPU
{966EC390-3C7F-4D98-92A6-F0F30D02E9B1}.Release|Any CPU.ActiveCfg = Release|Any CPU
{966EC390-3C7F-4D98-92A6-F0F30D02E9B1}.Release|Any CPU.Build.0 = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.CodeCoverage|Any CPU.ActiveCfg = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.CodeCoverage|Any CPU.Build.0 = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Coverage|Any CPU.ActiveCfg = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Coverage|Any CPU.Build.0 = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.FxCop|Any CPU.ActiveCfg = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.FxCop|Any CPU.Build.0 = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Release|Any CPU.ActiveCfg = Release|Any CPU
{3158C928-888C-4A84-8BC1-4A8257489538}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
@ -683,6 +695,7 @@ Global
{6F759635-13D7-4E94-BCC9-80445D63F117} = {E9C9F120-07BA-4DFB-B9C3-3AFB9D44C9D5}
{642A49D7-8752-4177-80D6-BFBBCFAD3DE0} = {E9C9F120-07BA-4DFB-B9C3-3AFB9D44C9D5}
{966EC390-3C7F-4D98-92A6-F0F30D02E9B1} = {E9C9F120-07BA-4DFB-B9C3-3AFB9D44C9D5}
{3158C928-888C-4A84-8BC1-4A8257489538} = {E9C9F120-07BA-4DFB-B9C3-3AFB9D44C9D5}
{ABC826D4-2FA1-4F2F-87DE-E6095F653810} = {74E681ED-FECC-4034-B9BD-01B0BB1BDECA}
{F112851D-B023-4746-B6B1-8D2E5AD8F7AA} = {74E681ED-FECC-4034-B9BD-01B0BB1BDECA}
{6CB3EB30-F725-45C0-9742-42599BA8E8D2} = {74E681ED-FECC-4034-B9BD-01B0BB1BDECA}