[Jspro-cvs] jsPro constants.js,1.7,1.8
Brought to you by:
wigleys
|
From: <gat...@us...> - 2003-09-15 02:16:43
|
Update of /cvsroot/jspro/jsPro
In directory sc8-pr-cvs1:/tmp/cvs-serv23390
Modified Files:
constants.js
Log Message:
added constants for character case for use with Array.changeKeyCase(); updated constants for two-term, Machin-like formulas for pi
Index: constants.js
===================================================================
RCS file: /cvsroot/jspro/jsPro/constants.js,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** constants.js 15 Sep 2003 01:52:16 -0000 1.7
--- constants.js 15 Sep 2003 02:16:39 -0000 1.8
***************
*** 34,37 ****
--- 34,41 ----
function Constants() {
+ // character case constants
+ this.CHARCASE_LOWER = 0;
+ this.CHARCASE_UPPER = 1;
+
// debug window message type constants
this.DEBUGTYPE_INFO = 0;
***************
*** 45,53 ****
this.DOCTYPE_MACTEXT = 4;
! // two-term, Machin-like formula constants
! this.FORMULA_MACHIN = 0;
! this.FORMULA_EULER = 1;
! this.FORMULA_HERMANN = 2;
! this.FORMULA_HUTTON = 3;
// side constants
--- 49,57 ----
this.DOCTYPE_MACTEXT = 4;
! // two-term, Machin-like formulas for pi constants
! this.PIFORMULA_MACHIN = 0;
! this.PIFORMULA_EULER = 1;
! this.PIFORMULA_HERMANN = 2;
! this.PIFORMULA_HUTTON = 3;
// side constants
|