Update of /cvsroot/phpwebapp/top10/templates/preference_list
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv10079/templates/preference_list
Modified Files:
preference_list.html
Log Message:
Index: preference_list.html
===================================================================
RCS file: /cvsroot/phpwebapp/top10/templates/preference_list/preference_list.html,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -d -r1.2 -r1.3
*** preference_list.html 26 Sep 2003 15:32:21 -0000 1.2
--- preference_list.html 22 Jul 2004 09:38:23 -0000 1.3
***************
*** 1,20 ****
! <WebBox ID="preference_list">
<p>
User <b>{{username}}</b>
<a class="button" href="javascript:change_username()">Change Username</a>
! <If condition="'{{username}}'=='guest'">
Please identify yourself by giving your SourceForge username.
! </If>
</p>
! <Repeat rs="preference_list">
! <IfEmpty>
<p>There is no project in the list!</p>
! </IfEmpty>
! <Header>
! <table cellspacing="1" cellpadding="3" bgcolor="#dddddd">
! </Header>
! <RepeatBody>
! <Var name="bgcolor">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f8f8ff")</Var>
<tr bgcolor="{{bgcolor}}">
<td width="2%" align="center">
--- 1,18 ----
! <webbox id="preference_list">
<p>
User <b>{{username}}</b>
<a class="button" href="javascript:change_username()">Change Username</a>
! <if condition="'{{username}}'=='guest'">
Please identify yourself by giving your SourceForge username.
! </if>
</p>
! <table cellspacing="1" cellpadding="3" bgcolor="#dddddd">
! <repeat rs="preference_list">
! <ifempty>
<p>There is no project in the list!</p>
! </ifempty>
! <repeatbody>
! <var name="bgcolor">({{CurrentRowNr}} % 2 ? "#eeeee6" : "#f8f8ff")</var>
<tr bgcolor="{{bgcolor}}">
<td width="2%" align="center">
***************
*** 31,42 ****
</td>
</tr>
! </RepeatBody>
! <Footer>
! </table>
! </Footer>
! </Repeat>
! <br>
<a class="button" href="javascript:save_preferences()">Save Your Preference List</a>
! <hr>
! </WebBox>
--- 29,38 ----
</td>
</tr>
! </repeatbody>
! </repeat>
! </table>
! <br />
<a class="button" href="javascript:save_preferences()">Save Your Preference List</a>
! <hr />
! </webbox>
|