[phpwebapp-commits] CVS: top10/templates/proj_details/comments new_comment.html,1.3,1.3.2.1 comments
Brought to you by:
dashohoxha
From: Dashamir H. <das...@us...> - 2004-07-22 14:09:39
|
Update of /cvsroot/phpwebapp/top10/templates/proj_details/comments In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17879/templates/proj_details/comments Modified Files: Tag: maisp new_comment.html comments.html Log Message: Index: new_comment.html =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/proj_details/comments/new_comment.html,v retrieving revision 1.3 retrieving revision 1.3.2.1 diff -C2 -d -r1.3 -r1.3.2.1 *** new_comment.html 29 Dec 2003 14:59:40 -0000 1.3 --- new_comment.html 22 Jul 2004 14:09:29 -0000 1.3.2.1 *************** *** 5,9 **** <td>Username:</td> <td> ! <input type="text" name="username" value="{{username}}" size="20"> </td> </tr> --- 5,9 ---- <td>Username:</td> <td> ! <input type="text" name="username" value="{{username}}" size="20" /> </td> </tr> *************** *** 11,15 **** <td>Title:</td> <td> ! <input type="text" name="title" size="80"> </td> </tr> --- 11,15 ---- <td>Title:</td> <td> ! <input type="text" name="title" size="80" /> </td> </tr> Index: comments.html =================================================================== RCS file: /cvsroot/phpwebapp/top10/templates/proj_details/comments/comments.html,v retrieving revision 1.4 retrieving revision 1.4.2.1 diff -C2 -d -r1.4 -r1.4.2.1 *** comments.html 29 Dec 2003 14:59:40 -0000 1.4 --- comments.html 22 Jul 2004 14:09:29 -0000 1.4.2.1 *************** *** 1,16 **** ! <WebBox ID="comments" ! <Repeat rs="comment_list"> ! <IfEmpty> <h4>No comments submitted yet.</h4> ! </IfEmpty> ! <Header> ! <h4>Comments:</h4> ! <table width="100%" border="0" cellspacing="1"> ! </Header> ! <RepeatBody> ! <Var name="bgcolor1">({{CurrentRowNr}} % 2 ? "#ddddd6" : "#e6e6ee")</Var> ! <Var name="bgcolor2">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f6f6ff")</Var> <tr> ! <td bgcolor="#dddddd" width="1%" nowrap><b>{{username}}</b></td> <td bgcolor="{{bgcolor1}}"> <table width="100%" cellspacing="0" cellpadding="0" border="0"> --- 1,14 ---- ! <webbox id="comments"> ! <h4>Comments:</h4> ! <table width="100%" border="0" cellspacing="1"> ! <repeat rs="comment_list"> ! <ifempty> <h4>No comments submitted yet.</h4> ! </ifempty> ! <repeatbody> ! <var name="bgcolor1">({{CurrentRowNr}} % 2 ? "#ddddd6" : "#e6e6ee")</var> ! <var name="bgcolor2">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f6f6ff")</var> <tr> ! <td bgcolor="#dddddd" width="1%" nowrap="nowrap"><b>{{username}}</b></td> <td bgcolor="{{bgcolor1}}"> <table width="100%" cellspacing="0" cellpadding="0" border="0"> *************** *** 25,38 **** </tr> <tr> ! <td bgcolor="#e4e4e4" width="1%" nowrap valign="top">{{date}}</td> <td bgcolor="{{bgcolor2}}">{{comment}}</td> </tr> <tr bgcolor="#ffffff"><td></td></tr> ! </RepeatBody> ! <Footer> ! </table> ! </Footer> ! </Repeat> ! <Include SRC="{{./}}new_comment.html" /> ! </WebBox> --- 23,34 ---- </tr> <tr> ! <td bgcolor="#e4e4e4" width="1%" nowrap="nowrap" valign="top">{{date}}</td> <td bgcolor="{{bgcolor2}}">{{comment}}</td> </tr> <tr bgcolor="#ffffff"><td></td></tr> ! </repeatbody> ! </repeat> ! </table> ! <include src="{{./}}new_comment.html" /> ! </webbox> |