Note: this list is kept only as a demonstration for CVSNotice. For the latest CVS notices, see the Xaraya and Postnuke sites
View Statistics - Next Notice - Previous NoticeDirectory filter : [ all ] / postnuke_modules / articles / pntemplates [ view in CVS ]
| Date | Directory [filter] | File(s) [view] | Author [filter] |
| 27 Aug 2002 21:32:59 | postnuke_modules/articles/pntemplates | admin-modify.pnd,1.3,1.4 admin-modifyconfig.pnd,1.2,1.3 admin-new.pnd,1.3,1.4 admin-pubtypes.pnd,1.2,1.3 user-archive.pnd,1.2,1.3 user-display-faqs.pnd,1.4,1.5 user-display-news.pnd,1.7,1.8 user-display-sections.pnd,1.5,1.6 user-view.pnd,1.3,1.4 | Mike |
| stop asking "what do you want" and do something | |||
Update of /home/cvsroot/postnuke_modules/articles/pntemplates
In directory ns7.hostnuke.net:/tmp/cvs-serv24581/pntemplates
Modified Files:
admin-modify.pnd admin-modifyconfig.pnd admin-new.pnd
admin-pubtypes.pnd user-archive.pnd user-display-faqs.pnd
user-display-news.pnd user-display-sections.pnd user-view.pnd
Log Message:
stop asking "what do you want" and do something
Index: admin-modify.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/admin-modify.pnd,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** admin-modify.pnd 5 Aug 2002 01:43:12 -0000 1.3
--- admin-modify.pnd 27 Aug 2002 21:32:57 -0000 1.4
***************
*** 21,25 ****
// compatibility with future versions of PostNuke
-->
! <form method="post" action="&pnt-modurl-articles-admin-update;">
<!--
// Add an authorisation ID - this adds a hidden field in the form that
--- 21,25 ----
// compatibility with future versions of PostNuke
-->
! <form method="post" action="&pnt-modurl-articles-admin-update;" enctype="multipart/form-data">
<!--
// Add an authorisation ID - this adds a hidden field in the form that
***************
*** 34,87 ****
<tr align="left" valign="middle">
<td><pnt:var name="labels.pubtype" /></td>
! <td><pnt:var name="item.pubtype" /></td>
</tr>
<tr align="left" valign="middle">
<td><pnt:var name="labels.categories" /></td>
! <td><pnt:var name="item.categories" /></td>
! </tr>
!
! <pnt:if condition="!empty($labels['authorid'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.authorid" /></td>
! <td><pnt:var name="item.author" /></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['title'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.title" /></td>
! <td><input type="text" name="title" value="&pnt-var-item.title;" size="50" /></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['pubdate'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.pubdate" /></td>
! <td><pnt:var name="item.date" /> // TODO: use calendar ?</td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['summary'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.summary" /></td>
! <td><textarea name="summary" wrap="soft" rows="8" cols="50"><pnt:var name="item.summary" /></textarea></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['notes'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.notes" /></td>
! <td><textarea name="notes" wrap="soft" rows="2" cols="50">&pnt-var-item.notes;</textarea></td>
</tr>
- </pnt:if>
! <pnt:if condition="!empty($labels['status'])">
<tr align="left" valign="middle">
! <td><pnt:var name="labels.status" /></td>
<td>
! <select name="status">
! <pnt:loop name="labels.statusoptions">
! <pnt:if condition="$item['status'] == $nr">
<option value="&pnt-var-nr;" selected>&pnt-var-label;
<pnt:else>
--- 34,71 ----
<tr align="left" valign="middle">
<td><pnt:var name="labels.pubtype" /></td>
! <td><pnt:var name="values.pubtype" /></td>
</tr>
<tr align="left" valign="middle">
<td><pnt:var name="labels.categories" /></td>
! <td><pnt:var name="values.categories" /></td>
</tr>
! <pnt:loop name="fields">
<tr align="left" valign="middle">
! <td>&pnt-var-label;</td>
<td>
! <pnt:if condition="$format == 'static'">
! &pnt-var-value;
! <pnt:elseif condition="$format == 'username'">
! &pnt-var-value;
! // TODO: add link to user profile
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textbox'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_small'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="2" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_medium'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="8" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_large'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="20" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'status'">
! <select name="&pnt-var-name;">
! <pnt:loop name="options">
! <pnt:if condition="$value == $nr">
<option value="&pnt-var-nr;" selected>&pnt-var-label;
<pnt:else>
***************
*** 91,129 ****
</pnt:loop>
</select>
! </td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['bodytext'])">
! <tr align="left" valign="middle">
! <td><pnt:if condition="!empty($labels['bodyfile'])">
! <input type="radio" name="bodytype" value="text" checked />
! <pnt:else>
! <input type="hidden" name="bodytype" value="text" />
! </pnt:else>
</pnt:if>
! <pnt:var name="labels.bodytext" />
! </td>
! <td><textarea name="bodytext" wrap="soft" rows="20" cols="50"><pnt:var name="item.bodytext" /></textarea></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['bodyfile'])">
! <tr align="left" valign="middle">
! <td><pnt:if condition="!empty($labels['bodytext'])">
! <input type="radio" name="bodytype" value="file" />
! <pnt:else>
! <input type="hidden" name="bodytype" value="file" />
! </pnt:else>
</pnt:if>
! <pnt:var name="labels.bodyfile" />
</td>
- <td><input type="file" name="bodyfile" size="40" /></td>
</tr>
! </pnt:if>
<tr align="left" valign="middle">
<td><pnt:var name="labels.allowedhtml" /></td>
! <td><pnt:var name="item.allowedhtml" /></td>
</tr>
--- 75,113 ----
</pnt:loop>
</select>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'fileupload'">
! <input type="hidden" name="MAX_FILE_SIZE" value="1000000">
! <input type="file" name="&pnt-var-name;" size="40" />
! </pnt:elseif>
! <pnt:elseif condition="$format == 'dropdown'">
! <select name="notes">
! <option value="">
! </select>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'calendar'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="30" />
! // TODO: use calendar
! </pnt:elseif>
! <pnt:elseif condition="$format == 'url'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! <pnt:if condition="!empty($value)">
! <a href="&pnt-var-value;" target="preview">preview</a>
</pnt:if>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'image'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! <pnt:if condition="!empty($value)">
! <a href="&pnt-var-value;" target="preview">show</a>
</pnt:if>
! <br />// TODO: add image picker ?
! </pnt:elseif>
! </pnt:if>
</td>
</tr>
! </pnt:loop>
<tr align="left" valign="middle">
<td><pnt:var name="labels.allowedhtml" /></td>
! <td><pnt:var name="values.allowedhtml" /></td>
</tr>
Index: admin-modifyconfig.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/admin-modifyconfig.pnd,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** admin-modifyconfig.pnd 5 Aug 2002 01:43:12 -0000 1.2
--- admin-modifyconfig.pnd 27 Aug 2002 21:32:57 -0000 1.3
***************
*** 44,48 ****
--- 44,55 ----
<tr><td><pnt:var name="labels.shorturls" /></td>
<td><input type="checkbox" name="shorturls" value="1" &pnt-var-shorturls;></td></tr>
+
</pnt:if>
+
+ <tr><td><pnt:var name="labels.numcols" /></td>
+ <td><input type="text" name="number_of_columns" size=1 maxlength=2 value="&pnt-var-numcols;"></td></tr>
+
+ <tr><td><pnt:var name="labels.itemsperpage" /></td>
+ <td><input type="text" name="itemsperpage" size=3 maxlength=3 value="&pnt-var-itemsperpage;"></td></tr>
<tr><td><pnt:var name="labels.numcats" /></td>
Index: admin-new.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/admin-new.pnd,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** admin-new.pnd 5 Aug 2002 01:43:12 -0000 1.3
--- admin-new.pnd 27 Aug 2002 21:32:57 -0000 1.4
***************
*** 14,18 ****
<center><strong><pnt:var name="labels.header" /></strong></center>
<br />
! Publication Type :
<pnt:loop name="pubfilters">
<pnt:if condition="empty($plink)">
--- 14,18 ----
<center><strong><pnt:var name="labels.header" /></strong></center>
<br />
! <pnt:var name="labels.pubtype" /> :
<pnt:loop name="pubfilters">
<pnt:if condition="empty($plink)">
***************
*** 34,38 ****
// compatibility with future versions of PostNuke
-->
! <form method="post" action="&pnt-modurl-articles-admin-create;">
<!--
// Add an authorisation ID - this adds a hidden field in the form that
--- 34,38 ----
// compatibility with future versions of PostNuke
-->
! <form method="post" action="&pnt-modurl-articles-admin-create;" enctype="multipart/form-data">
<!--
// Add an authorisation ID - this adds a hidden field in the form that
***************
*** 46,97 ****
<tr align="left" valign="middle">
<td><pnt:var name="labels.categories" /></td>
! <td><pnt:var name="item.categories" /></td>
! </tr>
!
! <pnt:if condition="!empty($labels['title'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.title" /></td>
! <td><input type="text" name="title" value="" size="50" /></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['summary'])">
! <tr align="left" valign="middle">
! <td><pnt:var name="labels.summary" /></td>
! <td><textarea name="summary" wrap="soft" rows="8" cols="50"></textarea></td>
! </tr>
! </pnt:if>
!
! <pnt:if condition="!empty($labels['bodytext'])">
! <tr align="left" valign="middle">
! <td><pnt:if condition="!empty($labels['bodyfile'])">
! <input type="radio" name="bodytype" value="text" checked />
! <pnt:else>
! <input type="hidden" name="bodytype" value="text" />
! </pnt:else>
! </pnt:if>
! <pnt:var name="labels.bodytext" />
! </td>
! <td><textarea name="bodytext" wrap="soft" rows="20" cols="50"></textarea></td>
</tr>
- </pnt:if>
! <pnt:if condition="!empty($labels['bodyfile'])">
<tr align="left" valign="middle">
! <td><pnt:if condition="!empty($labels['bodytext'])">
! <input type="radio" name="bodytype" value="file" />
! <pnt:else>
! <input type="hidden" name="bodytype" value="file" />
! </pnt:else>
! </pnt:if>
! <pnt:var name="labels.bodyfile" />
</td>
- <td><input type="file" name="bodyfile" size="40" /></td>
</tr>
! </pnt:if>
<tr align="left" valign="middle">
<td><pnt:var name="labels.allowedhtml" /></td>
! <td><pnt:var name="item.allowedhtml" /></td>
</tr>
--- 46,114 ----
<tr align="left" valign="middle">
<td><pnt:var name="labels.categories" /></td>
! <td><pnt:var name="values.categories" /></td>
</tr>
! <pnt:loop name="fields">
<tr align="left" valign="middle">
! <td>&pnt-var-label;</td>
! <td>
! <pnt:if condition="$format == 'static'">
! &pnt-var-value;
! <pnt:elseif condition="$format == 'username'">
! &pnt-var-value;
! // TODO: add link to user profile
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textbox'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_small'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="2" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_medium'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="8" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'textarea_large'">
! <textarea name="&pnt-var-name;" wrap="soft" rows="20" cols="50">&pnt-var-value;</textarea>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'status'">
! <select name="&pnt-var-name;">
! <pnt:loop name="options">
! <pnt:if condition="$value == $nr">
! <option value="&pnt-var-nr;" selected>&pnt-var-label;
! <pnt:else>
! <option value="&pnt-var-nr;">&pnt-var-label;
! </pnt:else>
! </pnt:if>
! </pnt:loop>
! </select>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'fileupload'">
! <input type="hidden" name="MAX_FILE_SIZE" value="1000000">
! <input type="file" name="&pnt-var-name;" size="40" />
! </pnt:elseif>
! <pnt:elseif condition="$format == 'dropdown'">
! <select name="notes">
! <option value="">
! </select>
! </pnt:elseif>
! <pnt:elseif condition="$format == 'calendar'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="30" />
! // TODO: use calendar
! </pnt:elseif>
! <pnt:elseif condition="$format == 'url'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! </pnt:elseif>
! <pnt:elseif condition="$format == 'image'">
! <input type="text" name="&pnt-var-name;" value="&pnt-var-value;" size="50" />
! <br />// TODO: add image picker ?
! </pnt:elseif>
! </pnt:if>
</td>
</tr>
! </pnt:loop>
<tr align="left" valign="middle">
<td><pnt:var name="labels.allowedhtml" /></td>
! <td><pnt:var name="values.allowedhtml" /></td>
</tr>
Index: admin-pubtypes.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/admin-pubtypes.pnd,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** admin-pubtypes.pnd 16 Aug 2002 15:42:23 -0000 1.2
--- admin-pubtypes.pnd 27 Aug 2002 21:32:57 -0000 1.3
***************
*** 21,41 ****
<td align="right"><pnt:var name="labels.name" /> :</td>
<td><input type="text" name="name" value="" size="20" maxlength="20"></td>
</tr>
<tr>
<td align="right"><pnt:var name="labels.descr" /> :</td>
! <td><input type="text" name="descr" value="" size="50" maxlength="250"></td>
</tr>
<tr>
! <td align="right"><pnt:var name="labels.fields" /> :</td>
! <td><pnt:var name="labels.explanation" /></td>
</tr>
<pnt:loop name="fields">
<tr>
<td align="right">&pnt-var-name;</td>
! <td><input type="text" name="config[&pnt-var-name;]" value="&pnt-var-descr;" /></td>
</tr>
</pnt:loop>
<tr>
! <td colspan="2" align="center">
<input type="checkbox" name="usealias">
<pnt:var name="labels.usealias" />
--- 21,63 ----
<td align="right"><pnt:var name="labels.name" /> :</td>
<td><input type="text" name="name" value="" size="20" maxlength="20"></td>
+ <td colspan="3"> </td>
</tr>
<tr>
<td align="right"><pnt:var name="labels.descr" /> :</td>
! <td colspan="4"><input type="text" name="descr" value="" size="50" maxlength="250"></td>
</tr>
<tr>
! <td align="right"><pnt:var name="labels.config" /> :</td>
! <td colspan="4">( <pnt:var name="labels.explanation" /> )</td>
! </tr>
! <tr>
! <td align="right"><strong><pnt:var name="labels.field" /></strong></td>
! <td><strong><pnt:var name="labels.label" /></strong></td>
! <td><strong><pnt:var name="labels.format" /></strong></td>
! <td><strong><pnt:var name="labels.input" /></strong></td>
! <td><strong><pnt:var name="labels.type" /></strong></td>
</tr>
<pnt:loop name="fields">
<tr>
<td align="right">&pnt-var-name;</td>
! <td><input type="text" name="label[&pnt-var-name;]" value="&pnt-var-label;" /></td>
! <td>
! <select name="format[&pnt-var-name;]">
! <pnt:loop name="formats">
! <pnt:if condition="$fname == $format">
! <option value="&pnt-var-fname;" selected>&pnt-var-flabel;
! <pnt:else>
! <option value="&pnt-var-fname;">&pnt-var-flabel;
! </pnt:else>
! </pnt:if>
! </pnt:loop>
! </select>
! </td>
! <td align="center"><input type="checkbox" name="input[&pnt-var-name;]" &pnt-var-input;/></td>
! <td>&pnt-var-type;</td>
</tr>
</pnt:loop>
<tr>
! <td colspan="5" align="center">
<input type="checkbox" name="usealias">
<pnt:var name="labels.usealias" />
***************
*** 43,47 ****
</tr>
<tr>
! <td colspan="2" align="center"><br><input type="submit" value="&pnt-var-submitbutton;"></td>
</tr>
</table>
--- 65,69 ----
</tr>
<tr>
! <td colspan="5" align="center"><br><input type="submit" value="&pnt-var-submitbutton;"></td>
</tr>
</table>
***************
*** 58,84 ****
<td align="right"><pnt:var name="labels.name" /> :</td>
<td>&pnt-var-item.name;</td>
</tr>
<tr>
<td align="right"><pnt:var name="labels.descr" /> :</td>
! <td><input type="text" name="descr" value="&pnt-var-item.descr;" size="50" maxlength="250"></td>
</tr>
<tr>
! <td align="right"><pnt:var name="labels.fields" /> :</td>
! <td><pnt:var name="labels.explanation" /></td>
</tr>
<pnt:loop name="fields">
<tr>
<td align="right">&pnt-var-name;</td>
! <td><input type="text" name="config[&pnt-var-name;]" value="&pnt-var-descr;" /></td>
</tr>
</pnt:loop>
<tr>
! <td colspan="2" align="center">
! <input type="checkbox" name="usealias" &pnt-var-aliaschecked;>
<pnt:var name="labels.usealias" />
</td>
</tr>
<tr>
! <td colspan="2" align="center"><br><input type="submit" value="&pnt-var-submitbutton;"></td>
</tr>
</table>
--- 80,128 ----
<td align="right"><pnt:var name="labels.name" /> :</td>
<td>&pnt-var-item.name;</td>
+ <td colspan="3"> </td>
</tr>
<tr>
<td align="right"><pnt:var name="labels.descr" /> :</td>
! <td colspan="4"><input type="text" name="descr" value="&pnt-var-item.descr;" size="50" maxlength="250"></td>
</tr>
<tr>
! <td align="right"><pnt:var name="labels.config" /> :</td>
! <td colspan="4">( <pnt:var name="labels.explanation" /> )</td>
! </tr>
! <tr>
! <td align="right"><strong><pnt:var name="labels.field" /></strong></td>
! <td><strong><pnt:var name="labels.label" /></strong></td>
! <td><strong><pnt:var name="labels.format" /></strong></td>
! <td><strong><pnt:var name="labels.input" /></strong></td>
! <td><strong><pnt:var name="labels.type" /></strong></td>
</tr>
<pnt:loop name="fields">
<tr>
<td align="right">&pnt-var-name;</td>
! <td><input type="text" name="label[&pnt-var-name;]" value="&pnt-var-label;" /></td>
! <td>
! <select name="format[&pnt-var-name;]">
! <pnt:loop name="formats">
! <pnt:if condition="$fname == $format">
! <option value="&pnt-var-fname;" selected>&pnt-var-flabel;
! <pnt:else>
! <option value="&pnt-var-fname;">&pnt-var-flabel;
! </pnt:else>
! </pnt:if>
! </pnt:loop>
! </select>
! </td>
! <td align="center"><input type="checkbox" name="input[&pnt-var-name;]" &pnt-var-input;/></td>
! <td>&pnt-var-type;</td>
</tr>
</pnt:loop>
<tr>
! <td colspan="5" align="center">
! <input type="checkbox" name="usealias" &pnt-var-aliaschecked; />
<pnt:var name="labels.usealias" />
</td>
</tr>
<tr>
! <td colspan="5" align="center"><br><input type="submit" value="&pnt-var-submitbutton;"></td>
</tr>
</table>
Index: user-archive.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/user-archive.pnd,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** user-archive.pnd 11 Aug 2002 00:02:51 -0000 1.2
--- user-archive.pnd 27 Aug 2002 21:32:57 -0000 1.3
***************
*** 32,40 ****
<table border="0" cellpadding="3" width="100%">
<tr bgcolor="#eeeef8">
- <th><pnt:mlstring>Title</pnt:mlstring></th>
<pnt:loop name="catlist">
! <th>&pnt-var-name;</th>
</pnt:loop>
- <th><pnt:mlstring>Date</pnt:mlstring></th>
</tr>
<pnt:loop name="articles">
--- 32,43 ----
<table border="0" cellpadding="3" width="100%">
<tr bgcolor="#eeeef8">
<pnt:loop name="catlist">
! <pnt:if condition="empty($link)">
! <td align="center"><strong>&pnt-var-name;</strong></td>
! <pnt:else>
! <td align="center"><strong><a href="&pnt-var-link;">&pnt-var-name;</a></strong></td>
! </pnt:else>
! </pnt:if>
</pnt:loop>
</tr>
<pnt:loop name="articles">
***************
*** 45,53 ****
</pnt:else>
</pnt:if>
- <td><a href="&pnt-var-link;">&pnt-var-title;</a></td>
<pnt:loop name="cats">
<td>&pnt-var-list;</td>
</pnt:loop>
! <td>&pnt-var-date;</td>
</tr>
</pnt:loop>
--- 48,58 ----
</pnt:else>
</pnt:if>
<pnt:loop name="cats">
<td>&pnt-var-list;</td>
</pnt:loop>
! <td><a href="&pnt-var-link;">&pnt-var-title;</a></td>
! <pnt:if condition="!empty($showdate)">
! <td>&pnt-var-date;</td>
! </pnt:if>
</tr>
</pnt:loop>
Index: user-display-faqs.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/user-display-faqs.pnd,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** user-display-faqs.pnd 12 Aug 2002 17:24:45 -0000 1.4
--- user-display-faqs.pnd 27 Aug 2002 21:32:57 -0000 1.5
***************
*** 35,38 ****
--- 35,44 ----
<span class="pn-title">
<pnt:var id="story_title" name="title" />
+ <pnt:if condition="!empty($editurl)">
+ [<a href="&pnt-var-editurl;">&pnt-var-edittitle;</a>]
+ <pnt:else>
+ [&pnt-var-edittitle;] <!-- remove disabled Edit for release version -->
+ </pnt:else>
+ </pnt:if>
</span>
<br />
Index: user-display-news.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/user-display-news.pnd,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** user-display-news.pnd 12 Aug 2002 17:24:45 -0000 1.7
--- user-display-news.pnd 27 Aug 2002 21:32:57 -0000 1.8
***************
*** 35,38 ****
--- 35,44 ----
<span class="pn-title">
<pnt:var id="story_title" name="title" />
+ <pnt:if condition="!empty($editurl)">
+ [<a href="&pnt-var-editurl;">&pnt-var-edittitle;</a>]
+ <pnt:else>
+ [&pnt-var-edittitle;] <!-- remove disabled Edit for release version -->
+ </pnt:else>
+ </pnt:if>
</span>
<br />
Index: user-display-sections.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/user-display-sections.pnd,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** user-display-sections.pnd 12 Aug 2002 17:24:45 -0000 1.5
--- user-display-sections.pnd 27 Aug 2002 21:32:57 -0000 1.6
***************
*** 35,38 ****
--- 35,44 ----
<span class="pn-title">
<pnt:var id="story_title" name="title" />
+ <pnt:if condition="!empty($editurl)">
+ [<a href="&pnt-var-editurl;">&pnt-var-edittitle;</a>]
+ <pnt:else>
+ [&pnt-var-edittitle;] <!-- remove disabled Edit for release version -->
+ </pnt:else>
+ </pnt:if>
</span>
<br />
***************
*** 54,57 ****
--- 60,72 ----
<pnt:var id="story_notes_text" name="notes" />
</span>
+ <pnt:if condition="!empty($previous) && !empty($next)">
+ <table border="0" width="100%"><tr>
+ <td align="left">
+ &pnt-var-previous;
+ </td><td align="right">
+ &pnt-var-next;
+ </td>
+ </tr></table>
+ </pnt:if>
</td>
</tr>
Index: user-view.pnd
===================================================================
RCS file: /home/cvsroot/postnuke_modules/articles/pntemplates/user-view.pnd,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** user-view.pnd 16 Aug 2002 15:42:23 -0000 1.3
--- user-view.pnd 27 Aug 2002 21:32:57 -0000 1.4
***************
*** 38,44 ****
<pnt:if condition="isset($trails) && count($trails) > 0">
<pnt:loop name="trails">
- <pnt:if condition="!empty($backlabel)">
- <a href="&pnt-var-backlink;">&pnt-var-backlabel;</a> >
- </pnt:if>
<pnt:loop name="parentlinks">
<pnt:if condition="empty($plink)">
--- 38,41 ----
***************
*** 74,78 ****
<pnt:if condition="!empty($link)">
<pnt:if condition="!empty($image)">
! <a href="&pnt-var-link;"><img src="&pnt-var-image;" border="0" alt=&pnt-var-name;" /></a> &pnt-var-name;
<pnt:else>
<a href="&pnt-var-link;">&pnt-var-name;</a>
--- 71,75 ----
<pnt:if condition="!empty($link)">
<pnt:if condition="!empty($image)">
! <a href="&pnt-var-link;"><img src="&pnt-var-image;" border="0" alt="&pnt-var-name;" /></a> &pnt-var-name;
<pnt:else>
<a href="&pnt-var-link;">&pnt-var-name;</a>
***************
*** 91,96 ****
<br />
&pnt-var-output;
!
<br />
&pnt-var-pager;
--- 88,117 ----
<br />
+ <pnt:if condition="!empty($numcols) && $number > 0">
+ <table border="0" cellpadding="0" cellspacing="0" width="100%">
+ <tr>
+ <pnt:loop name="columns">
+ <td valign="top" align="center" width="&pnt-var-colwidth;%">
+ <table border="0" cellpadding="3" cellspacing="0">
+ <pnt:loop name="colitems">
+ <tr><td>
+ &pnt-var-colitem;
+ </td></tr>
+ </pnt:loop>
+ </table>
+ </td>
+ </pnt:loop>
+ </tr>
+ </table>
+ <pnt:elseif condition="!empty($number)">
+ <pnt:loop name="columns">
+ <pnt:loop name="colitems">
+ &pnt-var-colitem;
+ </pnt:loop>
+ </pnt:loop>
+ </pnt:elseif>
+ </pnt:if>
&pnt-var-output;
! <br />
<br />
&pnt-var-pager;
View Statistics - Next Notice - Previous Notice
| Visit Developer Site - Browse CVS Repository |
Syndicate via backend.rss (max. once per hour please) | Powered by CVSNotice 0.1.3 |