[Jspro-cvs] jsPro/docs date.html,1.4,1.5
Brought to you by:
wigleys
|
From: <wi...@us...> - 2003-10-01 10:02:19
|
Update of /cvsroot/jspro/jsPro/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv1036/docs
Modified Files:
date.html
Log Message:
Added a couple of new Date functions that gets the number of methods up to 150 and makes a good excuse to do a release
Index: date.html
===================================================================
RCS file: /cvsroot/jspro/jsPro/docs/date.html,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** date.html 14 Sep 2003 08:11:04 -0000 1.4
--- date.html 1 Oct 2003 10:02:15 -0000 1.5
***************
*** 60,63 ****
--- 60,81 ----
</tr>
<tr>
+ <td>Date.getDaysInYear()</td>
+ <td> </td>
+ <td><input id="getDaysInYear" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="getDaysInYearResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Date.getEasterDay()</td>
+ <td> </td>
+ <td><input id="getEasterDay" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="getEasterDayResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Date.getEasterMonth()</td>
+ <td> </td>
+ <td><input id="getEasterMonth" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="getEasterMonthResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
<td>Date.getGMTOffset()</td>
<td> </td>
***************
*** 198,201 ****
--- 216,225 ----
</tr>
<tr>
+ <td>Date.getZodiacSign()</td>
+ <td> </td>
+ <td><input id="getZodiacSign" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="getZodiacSignResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
<td>Date.isDaylightSavingsTime()</td>
<td> </td>
***************
*** 208,211 ****
--- 232,247 ----
<td><input id="isLeapYear" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
<td><input id="isLeapYearResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Date.isWeekday()</td>
+ <td> </td>
+ <td><input id="isWeekday" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="isWeekdayResult" name="output" type="text" size="30" readonly="readonly" /></td>
+ </tr>
+ <tr>
+ <td>Date.isWeekend()</td>
+ <td> </td>
+ <td><input id="isWeekend" type="button" value="Calculate >" onclick="oTest.evaluateMethod(this, 'oDate')" /></td>
+ <td><input id="isWeekendResult" name="output" type="text" size="30" readonly="readonly" /></td>
</tr>
</tbody>
|