Author: lkrzyzanek
Date: 2009-11-04 08:54:40 -0500 (Wed, 04 Nov 2009)
New Revision: 29953
Added:
labs/jbosslabs/labs-3.0-build/integration/cs-wiki/trunk/src/main/web/README.html
Log:
Added readme.html
Content is taken from:
http://forums.adobe.com/servlet/JiveServlet/download/3384-445069-2024949-10091/Text+Markup+Syntax+Help.htm
more info:
http://www.jivesoftware.com/jivespace/thread/59561
Added: labs/jbosslabs/labs-3.0-build/integration/cs-wiki/trunk/src/main/web/README.html
===================================================================
--- labs/jbosslabs/labs-3.0-build/integration/cs-wiki/trunk/src/main/web/README.html (rev 0)
+++ labs/jbosslabs/labs-3.0-build/integration/cs-wiki/trunk/src/main/web/README.html 2009-11-04 13:54:40 UTC (rev 29953)
@@ -0,0 +1,536 @@
+
+<!-- saved from url=(0050)http://oatmeal:8080/clearspace/markuphelpfull.jspa -->
+<HTML><HEAD><META http-equiv="Content-Type" content="text/html; charset=UTF-8">
+ <TITLE>Text Markup Syntax Help</TITLE>
+
+ <STYLE type="text/css">
+ @import "/clearspace/styles/jive-global.css";
+ </STYLE>
+
+<TITLE><!-- Plain Text Help -->
+ Text Markup Syntax Help </TITLE><STYLE type="text/css">
+ @import "/clearspace/styles/jive-popup.css";
+ </STYLE></HEAD><BODY>
+
+
+
+
+
+
+
+
+
+
+ <!-- BEGIN main body popup container -->
+ <DIV id="jive-body-popup-container">
+
+ <!-- BEGIN jive body popup -->
+ <DIV id="jive-body-popup">
+
+ <!-- BEGIN header & intro -->
+ <DIV id="jive-body-intro">
+ <DIV id="jive-body-intro-content">
+ <H1>
+ <!-- Plain Text Help -->
+Plain Text Markup Help </H1>
+ </DIV>
+ </DIV>
+ <!-- END header & intro -->
+
+ <!-- Starting help-markup-syntax include -->
+
+ <!-- BEGIN jive-markup-help -->
+ <DIV id="jive-markup-help">
+ <P>This page describes the special markup you can use to format your content in the plain text editor.</P>
+ <H3>Text Formatting</H3>
+ <TABLE cellpadding="0" cellspacing="0" border="0">
+ <THEAD>
+ <TR>
+ <TH>Item</TH>
+
+ <TH>
+ <!-- Markup -->
+Markup </TH>
+ <TH>
+ <!-- Result -->
+Result </TH>
+ </TR>
+ </THEAD>
+ <TBODY>
+
+ <TR>
+ <TD>Bold</TD>
+ <TD>
+ <!-- *bold* -->
+
+ *ABC*
+ </TD>
+ <TD>
+ <!-- <b>bold</b> -->
+ <B>ABC</B>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Italic</TD>
+ <TD>
+ <!-- +italics+ -->
+ +ABC+
+ </TD>
+ <TD>
+ <!-- <i>italics</i> -->
+ <I>ABC</I>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Underline</TD>
+ <TD>
+ <!-- _underline_ -->
+ _ABC_
+ </TD>
+ <TD>
+ <!-- <u>underline</u> -->
+ <U>ABC</U>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Superscript</TD>
+ <TD>
+ <!-- Superscript: 3^rd^ -->
+ 3^rd^
+ </TD>
+ <TD>
+ <!--3<sup>rd</sup>-->
+ 3
+ <SUP>rd</SUP>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Subscript</TD>
+ <TD>
+ <!-- Subscript: 2~n~ -->
+ 2~n~
+ </TD>
+ <TD>
+ <!-- 2<sub>n</sub> -->
+ 2
+ <SUB>n</SUB>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Strikethrough</TD>
+ <TD>
+ <!-- --strike-- -->
+ --ABC--
+ </TD>
+ <TD>
+ <!--<strike>strike</strike>-->
+ <STRIKE>ABC</STRIKE>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Numbered list</TD>
+ <TD>
+ <!-- # ABC
+ # ABC -->
+ # ABC<BR>
+ # ABC
+ </TD>
+ <TD>
+ <!-- 1 ABC
+ 2 ABC -->
+ <OL><LI>ABC</LI>
+ <LI>ABC</LI></OL>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Bulleted list</TD>
+ <TD>
+ <!-- * ABC
+ * ABC -->
+ * ABC<BR>
+ * ABC
+ </TD>
+ <TD>
+ <!-- - ABC
+ - ABC -->
+ <UL><LI>ABC</LI>
+ <LI>ABC</LI>
+ </UL>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Blockquote</TD>
+ <TD>bq. ABC</TD>
+ <TD>
+ <BLOCKQUOTE>ABC</BLOCKQUOTE>
+ </TD>
+ </TR>
+ <TR>
+ <TD>No formatting</TD>
+ <TD>{noformat}ABC{noformat}</TD>
+ <TD>
+ <CODE>ABC</CODE>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Color</TD>
+ <TD>{color:#f00}ABC{color}</TD>
+ <TD>
+ <SPAN style="color:#f00">ABC</SPAN>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Color</TD>
+ <TD>{color:red}ABC{color}</TD>
+ <TD>
+ <SPAN style="color:red">ABC</SPAN>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Font</TD>
+ <TD>{font:courier new}ABC{font}</TD>
+ <TD>
+ <SPAN style="font-family:courier new">ABC</SPAN>
+ </TD>
+
+ </TR>
+ <TR>
+ <TD>Size</TD>
+ <TD>{size:16px}ABC{size}</TD>
+ <TD>
+ <SPAN style="font-size:16px">ABC</SPAN>
+ </TD>
+ </TR>
+
+ <TR>
+ <TD>Line</TD>
+ <TD>
+ <!-- Line: ----- -->
+ -----
+ </TD>
+ <TD>
+ <!-- <hr /> -->
+ <HR>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 1</TD>
+ <TD>
+ <!-- Heading 1: h1. -->
+ h1. ABC
+ </TD>
+ <TD>
+ <!-- <h1>ABC</h1> -->
+ <H1>ABC</H1>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 2</TD>
+ <TD>
+ <!-- Heading 2: h2. -->
+ h2. ABC
+ </TD>
+ <TD>
+ <!-- <h2>ABC</h2> -->
+ <H2>ABC</H2>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 3</TD>
+ <TD>
+ <!-- Heading 3: h3. -->
+ h3. ABC
+ </TD>
+ <TD>
+ <!-- <h3>ABC</h3> -->
+ <H3>ABC</H3>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 4</TD>
+ <TD>
+ <!-- Heading 4: h4. -->
+ h4. ABC
+ </TD>
+ <TD>
+ <!-- <h4>ABC</h4> -->
+ <H4>ABC</H4>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 5</TD>
+ <TD>
+ <!-- Heading 5: h5. -->
+ h5. ABC
+ </TD>
+ <TD>
+ <!-- <h5>ABC</h5> -->
+ <H5>ABC</H5>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Heading 6</TD>
+ <TD>
+ <!-- Heading 6: h6. -->
+ h6. ABC
+ </TD>
+ <TD>
+ <!-- <h6>ABC</h6> -->
+ <H6>ABC</H6>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Quoted text</TD>
+ <TD>{quote}ABC{quote}</TD>
+ <TD>
+ <DIV class="jive-quote">ABC</DIV>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Quoted text/title</TD>
+ <TD>{quote:title=ABC title}ABC text{quote}</TD>
+ <TD>
+ <SPAN class="jive-quote-header">ABC title</SPAN>
+ <DIV class="jive-quote">ABC text</DIV>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Java code</TD>
+ <TD>{code}import com.jivesoftware.community.*;{code}</TD>
+ <TD>
+ <PRE class="jive-pre"><CODE class="jive-code jive-java"><FONT color="navy"><B>import</B></FONT> com.jivesoftware.community.*;</CODE></PRE>
+ </TD>
+ </TR>
+ <TR>
+ <TD>SQL code</TD>
+ <TD>{code:sql}SELECT COUNT(*) FROM abc;{code}</TD>
+ <TD>
+ <PRE class="jive-pre"><CODE class="jive-code jive-sql"><FONT color="navy"><B>SELECT COUNT</B></FONT>(*) <FONT color="navy"><B>FROM</B></FONT> abc;</CODE></PRE>
+ </TD>
+ </TR>
+ <TR>
+ <TD>XML code</TD>
+ <TD>{code:xml}<xmlnode prop="abc">abc</xmlnode>{code}
+ </TD>
+ <TD>
+ <PRE class="jive-pre"><CODE class="jive-code jive-xml"><FONT color="navy"><B><xmlnode prop=</B></FONT><FONT color="red"><B>"abc"</B></FONT>>abc<FONT color="navy"><B></xmlnode></B></FONT></CODE></PRE>
+ </TD>
+ </TR>
+ </TBODY></TABLE>
+ <!--</div>-->
+ <H3>Tables</H3>
+ <!--<div id="jive-markup-help">-->
+ <TABLE cellpadding="0" cellspacing="0" border="0">
+ <TBODY><TR>
+ <TH>Item</TH>
+ <TH>Markup</TH>
+ <TH>Result</TH>
+ </TR>
+ </TBODY><TBODY>
+ <TR>
+ <TD>Table headers</TD>
+ <TD>||ABC||DEF||</TD>
+ <TD>
+ <TABLE class="example-table">
+ <THEAD>
+ <TR><TH>ABC</TH>
+ <TH>DEF</TH>
+ </TR></THEAD>
+ </TABLE>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Table cells</TD>
+ <TD>|ABC|DEF|</TD>
+ <TD>
+ <TABLE class="example-table">
+ <TBODY><TR>
+ <TD>ABC</TD>
+ <TD>DEF</TD>
+ </TR>
+ </TBODY></TABLE>
+ </TD>
+ </TR>
+ </TBODY>
+
+ </TABLE>
+ <!--</div>-->
+ <H3>Links</H3>
+ <P>Some links require the ID number of the content you're linking to. You can get this by navigating to the content and noting its number at the far right of your browser's address bar.</P>
+ <!--<div id="jive-markup-help">-->
+ <TABLE cellpadding="0" cellspacing="0" border="0">
+ <THEAD>
+ <TR>
+
+ <TH>Item</TH>
+ <TH>Markup</TH>
+ <TH>Result</TH>
+
+ </TR>
+ </THEAD>
+ <TBODY>
+ <TR>
+ <TD>External image</TD>
+ <TD>
+ <!-- Image: !http://../post.gif! -->
+ !http://../post.gif!
+ </TD>
+ <TD>
+ <IMG src="./Text Markup Syntax Help_files/post-16x16.gif" alt="Post" border="0">
+ </TD>
+ </TR>
+ <TR>
+ <TD>Internal image</TD>
+ <TD>!post.gif!</TD>
+ <TD><IMG src="./Text Markup Syntax Help_files/post-16x16.gif" alt="Post" border="0"></TD>
+ </TR>
+ <TR>
+ <TD>External site</TD>
+ <TD>
+
+ <!--Link: [http://www.example.com] -->
+ [http://www.example.com]
+ </TD>
+ <TD>
+ <!-- <a href="http://www.example.com" onclick="return false;" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">http://www.example.com</a> -->
+ <A href="http://www.example.com/" onclick="return false;" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">http://www.example.com
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>External site with label</TD>
+ <TD>
+
+ <!--Link: [Example site|http://www.example.com] -->
+ [Example site|http://www.example.com]
+ </TD>
+ <TD>
+ <!-- <a href="http://www.example.com" onclick="return false;" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">Example site</a> -->
+ <A href="http://www.example.com/" onclick="return false;" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">Example site
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>External site with label and tip</TD>
+ <TD>
+
+ <!--Link: [Example site|http://www.example.com|Example site tip] -->
+ [Example site|http://www.example.com|Example site tip]
+ </TD>
+ <TD>
+ <!-- <a href="http://www.example.com" onclick="return false;" title="Example site tip" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">Example site</a> -->
+ <A href="http://www.example.com/" onclick="return false;" title="Example site tip" onmouseover="window.status='http://www.example.com';" onmouseout="window.status='';">Example site
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Email</TD>
+ <TD>
+
+ <!--Email: [someone at example.com] -->
+ [someone at example.com]
+ </TD>
+ <TD>
+ <!-- <a href="mailto:someone at example.com" onclick="return false;" onmouseover="window.status='mailto:someone at example.com';" onmouseout="window.status='';">someone at example.com</a> -->
+ <A href="mailto:someone at example.com" onclick="return false;" onmouseover="window.status='someone at example.com';" onmouseout="window.status='';">someone at example.com
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Attachment</TD>
+ <TD>[^1571]</TD>
+ <TD>
+ <A href="http://clearspace/servlet/JiveServlet/download/2530-5-1571/abc.gif">
+ abc.gif
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Blog</TD>
+ <TD>{blog:id=1032}</TD>
+ <TD>
+ <A href="https://clearspace/blogs/abc" class="jive-link-blog">ABC</A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Blog post</TD>
+ <TD>{blogpost:id=1420}</TD>
+ <TD>
+ <A href="https://clearspace/blogs/abc/2007/03/05" class="jive-link-blogpost">ABC
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Space</TD>
+ <TD>{community:id=2007}</TD>
+ <TD>
+ <A href="https://clearspace/community/abc" class="jive-link-community">
+ABC </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Discussion thread</TD>
+ <TD>{thread:id=1921}</TD>
+ <TD>
+ <A href="http://clearspace/thread/1921" class="jive-link-thread">ABC</A>
+ </TD>
+
+ </TR>
+ <TR>
+ <TD>Discussion message</TD>
+ <TD>{message:id=3311}</TD>
+ <TD>
+ <A href="http://clearspace/message/3311#3311" class="jive-link-message">
+ Re: ABC
+ </A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>Document</TD>
+ <TD>{document:id=2135}</TD>
+ <TD>
+ <A href="http://clearspace/docs/DOC-2135" class="jive-link-wiki">ABC</A>
+ </TD>
+ </TR>
+ <TR>
+ <TD>User profile</TD>
+ <TD>{user:id=1}</TD>
+ <TD>
+ <A href="http://clearspace/people/user" class="jive-link-profile">User
+ </A>
+ </TD>
+
+ </TR>
+ <TR>
+ <TD>User profile</TD>
+ <TD>{user:username=user}</TD>
+ <TD>
+ <A href="http://clearspace/people/user" class="jive-link-profile">User
+ </A>
+ </TD>
+ </TR>
+ </TBODY>
+ </TABLE>
+</DIV>
+ <!-- END jive-markup-help -->
+
+ <!-- Ending help-markup-syntax include -->
+
+
+</DIV>
+ <!-- END main body popup -->
+
+ </DIV>
+ <!-- END main body popup container -->
+
+
+
+
+
+</BODY></HTML>
\ No newline at end of file
Property changes on: labs/jbosslabs/labs-3.0-build/integration/cs-wiki/trunk/src/main/web/README.html
___________________________________________________________________
Name: svn:mime-type
+ text/plain