HypertWiki:Forms/blog/post: Difference between revisions
adding !TPLTSTART and !TPLTSTOP |
another w3tpl syntax update |
||
(3 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
<noinclude>[[category:forms/entry]]</noinclude><hide> | <noinclude>[[category:forms/entry]]</noinclude><hide> | ||
<let name=timestamp pre>{{CURRENTYEAR}} | <let name=timestamp pre>{{CURRENTYEAR}}/{{CURRENTMONTH}}/{{CURRENTDAY2}}/{{CURRENTTIME}}</let> | ||
<let name=tpltpage>project:Forms/handling/blog/post</let> | <let name=tpltpage>project:Forms/handling/blog/post</let> | ||
Line 7: | Line 7: | ||
<let name=wtTplt append>]]</let> | <let name=wtTplt append>]]</let> | ||
<let name=user | <let name=user val=@user.dbkey /> | ||
<if not flag=title-prefix> | <if not flag=$title-prefix> | ||
<let name=title-prefix pre>User:</let> | <let name=title-prefix pre>User:</let> | ||
<let name=title-prefix append copy=user /> | <let name=title-prefix append copy=user /> | ||
Line 21: | Line 21: | ||
<let name=tag2 append>input type=hidden name=!TITLETPLT value="</let> | <let name=tag2 append>input type=hidden name=!TITLETPLT value="</let> | ||
<let name=tag2 append copy=title-prefix /> | <let name=tag2 append copy=title-prefix /> | ||
<let name=tag2 append>[$!TIMESTAMP$] [$posttitle$]"</let> | <let name=tag2 append>[$!TIMESTAMP$]/[$posttitle$]"</let> | ||
<let name=tag2 append chr=62 /> | <let name=tag2 append chr=62 /> | ||
</hide> | </hide> | ||
'''User''': <get name=user /> | '''Prefix''': <get name=title-prefix /> | |||
<echo raw vars now> | <echo raw vars now> | ||
<form action="/Special:MakePage" target=_blank method=POST> | <form action="/Special:MakePage" target=_blank method=POST> | ||
Line 37: | Line 37: | ||
| align=right | '''Post title''': || <echo raw now><input name=posttitle size=60></echo> | | align=right | '''Post title''': || <echo raw now><input name=posttitle size=60></echo> | ||
|- | |- | ||
| align=right | '''Page title''': || <get name=title-prefix />[timestamp] [post title] | | align=right | '''Page title''': || <get name=title-prefix />[timestamp]/[post title] | ||
|- | |- | ||
| align=right | '''User topic list''': || <echo raw now><input name=topics-user size=80></echo> | | align=right | '''User topic list''': || <echo raw now><input name=topics-user size=80></echo> | ||
Line 51: | Line 51: | ||
<echo raw vars now></form></echo> | <echo raw vars now></form></echo> | ||
* "topic lists" should look like this: \a topic\another topic\third topic\and so on | * "topic lists" should look like this: \a topic\another topic\third topic\and so on | ||
** You can use whatever character you want as a divider; the first character in the | ** You can use whatever character you want as a divider; the first character in the text becomes the divider. | ||
** Topics in the "user topic list" will be prefixed with your username, to distinguish them from global topics (which are common to the entire wiki) | ** Topics in the "user topic list" will be prefixed with your username, to distinguish them from global topics (which are common to the entire wiki) | ||
* "above the fold" text will appear in summaries/compilations and | * "above the fold" text will appear in summaries/compilations and in the RSS feed; "below the fold" generally only appears when you look at the actual posting page. | ||
* If you want the post to replace the form window instead of showing up in a new window/tab, remove "target=_blank" from the form tag near the top | * If you want the post to replace the form window instead of showing up in a new window/tab, remove "target=_blank" from the form tag near the top | ||
* The intrinsic form variable !TIMEFMT uses the PHP date format, which is documented [http://php.net/manual/en/function.date.php here]. | * The intrinsic form variable !TIMEFMT uses the PHP date format, which is documented [http://php.net/manual/en/function.date.php here]. | ||
* The template for formatting the data in this form is: <get name=wtTplt /> | * The template for formatting the data in this form is: <get name=wtTplt /> | ||
* Timestamp will be set to the time at which you first preview the post |
Latest revision as of 19:19, 22 January 2013
<hide> <let name=timestamp pre>2025/04/03/09:43</let> <let name=tpltpage>project:Forms/handling/blog/post</let>
<let name=wtTplt>[[</let> <let name=wtTplt append copy=tpltpage /> <let name=wtTplt append>]]</let>
<let name=user val=@user.dbkey /> <if not flag=$title-prefix>
<let name=title-prefix pre>User:</let> <let name=title-prefix append copy=user /> <let name=title-prefix append>/blog/</let>
</if> <let name=tag1 chr=60 /> <let name=tag1 append>input type=hidden name=user value="</let> <let name=tag1 append copy=user /> <let name=tag1 append>"</let> <let name=tag1 append chr=62 /> <let name=tag2 chr=60 /> <let name=tag2 append>input type=hidden name=!TITLETPLT value="</let> <let name=tag2 append copy=title-prefix /> <let name=tag2 append>[$!TIMESTAMP$]/[$posttitle$]"</let> <let name=tag2 append chr=62 /> </hide> User: <get name=user /> | Prefix: <get name=title-prefix /> <echo raw vars now> <form action="/Special:MakePage" target=_blank method=POST> <input type=hidden name="!TPLTPAGE" value="[$tpltpage$]"> <input type=hidden name="!TIMEFMT" value="Y-m-d Hi">
<input type=hidden name="!TPLTSTART" value="
"> <input type=hidden name="!TPLTSTOP" value="
">
</echo> <get name=tag1 raw /><get name=tag2 raw />
Post title: | <echo raw now><input name=posttitle size=60></echo> |
Page title: | <get name=title-prefix />[timestamp]/[post title] |
User topic list: | <echo raw now><input name=topics-user size=80></echo> |
Global topic list: | <echo raw now><input name=topics-global size=80></echo> |
Above the fold: <echo raw now><textarea name=text-above rows=3></textarea></echo> | |
Below the fold: <echo raw now><textarea name=text-below rows=20></textarea></echo> | |
<echo raw now><input type=submit value=Preview></echo><echo raw now><input type=reset value=-clear-></echo> |
<echo raw vars now></form></echo>
- "topic lists" should look like this: \a topic\another topic\third topic\and so on
- You can use whatever character you want as a divider; the first character in the text becomes the divider.
- Topics in the "user topic list" will be prefixed with your username, to distinguish them from global topics (which are common to the entire wiki)
- "above the fold" text will appear in summaries/compilations and in the RSS feed; "below the fold" generally only appears when you look at the actual posting page.
- If you want the post to replace the form window instead of showing up in a new window/tab, remove "target=_blank" from the form tag near the top
- The intrinsic form variable !TIMEFMT uses the PHP date format, which is documented here.
- The template for formatting the data in this form is: <get name=wtTplt />
- Timestamp will be set to the time at which you first preview the post