diff --git a/apps/syndie/jsp/post.jsp b/apps/syndie/jsp/post.jsp index fd8c62fc14..ab976002c0 100644 --- a/apps/syndie/jsp/post.jsp +++ b/apps/syndie/jsp/post.jsp @@ -148,28 +148,8 @@ for (Iterator iter = names.iterator(); iter.hasNext(); ) {
Include public names?
-Post content (in raw SML, no headers):
+Post content (in raw SML, no headers):

-SML cheatsheet:

SML post headers:

<% String s = request.getParameter(ArchiveViewerBean.PARAM_IN_REPLY_TO); diff --git a/apps/syndie/jsp/smlref.jsp b/apps/syndie/jsp/smlref.jsp new file mode 100644 index 0000000000..226023834b --- /dev/null +++ b/apps/syndie/jsp/smlref.jsp @@ -0,0 +1,33 @@ +<%@page contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" import="java.util.*" %><% +request.setCharacterEncoding("UTF-8"); +%> + + +SML Quick Reference + + + +

SML Quick Reference:

+ +SML headers are newline delimited key:value pairs. Example keys are: + + diff --git a/apps/syndie/jsp/syndie.css b/apps/syndie/jsp/syndie.css index 3f2fb63f4b..1aee54aa14 100644 --- a/apps/syndie/jsp/syndie.css +++ b/apps/syndie/jsp/syndie.css @@ -55,6 +55,24 @@ body { border: 0px; border-style: none; } +.s_detail_quote { + margin-left: 1em; + border-width: 1px; + border-color: #DBDBDB; + border-style: solid; + background-color: #E0E0E0; +} +.s_detail_italic { + font-style: italic; +} +.s_detail_bold { + font-style: normal; + font-weight: bold; +} +.s_detail_underline { + font-style: normal; + text-decoration: underline; +} .s_detail_meta { font-size: 10px; text-align: right; @@ -89,6 +107,25 @@ body { border: 0px; border-style: none; } +.s_summary_quote { + margin-left: 1em; + border-width: 1px; + border-color: #DBDBDB; + border-style: solid; + background-color: #E0E0E0; +} +.s_summary_italic { + font-style: italic; +} +.s_summary_bold { + font-style: normal; + font-weight: bold; +} +.s_summary_underline { + font-style: normal; + text-decoration: underline; +} + .s_summary_summDetail { font-size: 10px; } diff --git a/history.txt b/history.txt index 262241267f..6000968a9e 100644 --- a/history.txt +++ b/history.txt @@ -1,4 +1,7 @@ -$Id: history.txt,v 1.310 2005/10/30 00:47:55 dust Exp $ +$Id: history.txt,v 1.311 2005/10/31 15:03:11 jrandom Exp $ + +2005-11-01 jrandom + * Added a few more css elements (thanks identiguy!) 2005-10-31 jrandom * Fix for some syndie reply scenarios (thanks identiguy and CofE!)