You can subscribe to this list here.
2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
(899) |
Aug
(493) |
Sep
(542) |
Oct
(674) |
Nov
(365) |
Dec
(906) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2006 |
Jan
(159) |
Feb
(547) |
Mar
(583) |
Apr
(775) |
May
(1169) |
Jun
(809) |
Jul
(287) |
Aug
(629) |
Sep
(734) |
Oct
(952) |
Nov
(493) |
Dec
(493) |
2007 |
Jan
(292) |
Feb
(1007) |
Mar
(137) |
Apr
(19) |
May
(2) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Dmitry N. P. <dnp...@us...> - 2007-03-19 16:01:36
|
Update of /cvsroot/gpe4gtk/NativeTSI/c/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15656/c/src Modified Files: fileio.c Log Message: fix default permissions Index: fileio.c =================================================================== RCS file: /cvsroot/gpe4gtk/NativeTSI/c/src/fileio.c,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** fileio.c 19 Mar 2007 15:32:13 -0000 1.7 --- fileio.c 19 Mar 2007 16:01:35 -0000 1.8 *************** *** 76,80 **** if (*path_ptr == '/') { *tmp_ptr = 0; ! int code = mkdir(tmpPath, S_IRWXU | S_IRGRP | S_IXGRP); if (code != 0 && errno != EEXIST) { return code; --- 76,80 ---- if (*path_ptr == '/') { *tmp_ptr = 0; ! int code = mkdir(tmpPath, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); if (code != 0 && errno != EEXIST) { return code; *************** *** 119,123 **** } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", --- 119,123 ---- } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", *************** *** 174,178 **** } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP ); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", --- 174,178 ---- } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", |
From: Dmitry N. P. <dnp...@us...> - 2007-03-19 15:42:11
|
Update of /cvsroot/gpe4gtk/NativeTSI/c/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv4227/c/src Modified Files: fileio.c Log Message: fix default permissions (should be rwxrw----) Index: fileio.c =================================================================== RCS file: /cvsroot/gpe4gtk/NativeTSI/c/src/fileio.c,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** fileio.c 19 Mar 2007 14:39:31 -0000 1.6 --- fileio.c 19 Mar 2007 15:32:13 -0000 1.7 *************** *** 76,80 **** if (*path_ptr == '/') { *tmp_ptr = 0; ! int code = mkdir(tmpPath, S_IRWXU); if (code != 0 && errno != EEXIST) { return code; --- 76,80 ---- if (*path_ptr == '/') { *tmp_ptr = 0; ! int code = mkdir(tmpPath, S_IRWXU | S_IRGRP | S_IXGRP); if (code != 0 && errno != EEXIST) { return code; *************** *** 119,123 **** } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", --- 119,123 ---- } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", *************** *** 174,178 **** } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", --- 174,178 ---- } ! int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU | S_IRGRP | S_IXGRP ); if (fd == -1) { prints(tsiSocket, "#Cannot open file %s: %s", |
From: Dmitry N. P. <dnp...@us...> - 2007-03-19 14:39:34
|
Update of /cvsroot/gpe4gtk/NativeTSI/c/src In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv15307/c/src Modified Files: fileio.c Log Message: fix: make subdirectories on putChunk and truncAppend Index: fileio.c =================================================================== RCS file: /cvsroot/gpe4gtk/NativeTSI/c/src/fileio.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** fileio.c 22 Feb 2007 08:02:21 -0000 1.5 --- fileio.c 19 Mar 2007 14:39:31 -0000 1.6 *************** *** 62,65 **** --- 62,92 ---- } + int makeAllDirs(char *path) { + char tmpPath[MAX_LINE_LENGTH]; + char *path_ptr = path; + char *tmp_ptr = tmpPath; + + if (*path_ptr == '/') { + *tmp_ptr = '/'; + path_ptr++; + tmp_ptr++; + } + + while (*path_ptr) { + if (*path_ptr == '/') { + *tmp_ptr = 0; + int code = mkdir(tmpPath, S_IRWXU); + if (code != 0 && errno != EEXIST) { + return code; + } + } + *tmp_ptr = *path_ptr; + path_ptr++; + tmp_ptr++; + } + + return 0; + } + void putChunk(int tsiSocket) { if (readAndSetUID(tsiSocket)) { *************** *** 86,89 **** --- 113,122 ---- read(tsiSocket, writeBuf, size); + if (makeAllDirs(path) != 0) { + prints(tsiSocket, "#Cannot create subdirectory in path %s: %s", + path, strerror(errno)); + return; + } + int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU); if (fd == -1) { *************** *** 135,138 **** --- 168,177 ---- read(tsiSocket, writeBuf, size); + if (makeAllDirs(path) != 0) { + prints(tsiSocket, "#Cannot create subdirectory in path %s: %s", + path, strerror(errno)); + return; + } + int fd = open(path, O_WRONLY | O_CREAT, S_IRWXU); if (fd == -1) { |
From: Vladimir N. R. <vnr...@us...> - 2007-03-19 14:13:49
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests/sources In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv5097/tests/sources Modified Files: 100d.pov Log Message: Changes to use this file for PovRay Index: 100d.pov =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/sources/100d.pov,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** 100d.pov 6 Sep 2006 09:34:50 -0000 1.1 --- 100d.pov 19 Mar 2007 14:13:46 -0000 1.2 *************** *** 38,42 **** #declare ATM_SCL = 1.00 ! #declare 100d_obj = union { object {Atom_O scale ATM_SCL * .8 translate <-8.081, 6.947, 6.729> } object {Atom_C scale ATM_SCL * .8 translate <-7.708, 8.175, 7.345> } --- 38,42 ---- #declare ATM_SCL = 1.00 ! #declare a100d_obj = union { object {Atom_O scale ATM_SCL * .8 translate <-8.081, 6.947, 6.729> } object {Atom_C scale ATM_SCL * .8 translate <-7.708, 8.175, 7.345> } *************** *** 530,535 **** } ! #declare 100d = object { ! object { 100d_obj } } ! object { 100d } --- 530,535 ---- } ! #declare a100d = object { ! object { a100d_obj } } ! object { a100d } |
From: Dmitry N. P. <dnp...@us...> - 2007-03-19 10:18:24
|
Update of /cvsroot/gpe4gtk/gpe4gtk/services/src/com/intel/gpe/nativetsi In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv8795/services/src/com/intel/gpe/nativetsi Modified Files: NativeTSIClient.java Log Message: improved logging Index: NativeTSIClient.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/services/src/com/intel/gpe/nativetsi/NativeTSIClient.java,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** NativeTSIClient.java 27 Feb 2007 13:37:37 -0000 1.27 --- NativeTSIClient.java 19 Mar 2007 10:18:23 -0000 1.28 *************** *** 105,108 **** --- 105,110 ---- public void copy(User u, File from, File to) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": copy " + from.getPath() + " to " + to.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 131,134 **** --- 133,138 ---- public void createDir(User u, File f) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": createDir " + f.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 157,160 **** --- 161,167 ---- throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": getChunk " + + f.getPath() + " offset=" + offset + " size=" + size); + Socket sock = new Socket(hostName, port); InputStream is = sock.getInputStream(); *************** *** 319,322 **** --- 326,331 ---- public FileInfo[] listDir(User u, File f) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": listDir " + f.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 357,360 **** --- 366,371 ---- try { + logger.log(Level.INFO, u.getUserName() + ": listFile " + f.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 389,392 **** --- 400,406 ---- public void move(User u, File from, File to) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": move " + from.getPath() + + " to " + to.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 416,419 **** --- 430,436 ---- long offset, int size) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": putChunk " + f.getPath() + + " offset=" + offset + " size=" + size); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 445,448 **** --- 462,467 ---- public void remove(User u, File f) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": remove " + f.getPath()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 497,500 **** --- 516,522 ---- public void setOwner(User u, File f, User newOwner) throws RemoteException { try { + logger.log(Level.INFO, u.getUserName() + ": setOwner " + f.getPath() + + " owner=" + newOwner.getUserName()); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); *************** *** 524,537 **** throws RemoteException { try { Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); OutputStreamWriter osw = new OutputStreamWriter(sock .getOutputStream()); ! BufferedReader br = new BufferedReader(isr); ! ! String rwx = ""; ! rwx += p.isReadable() ? "r" : "-"; ! rwx += p.isWritable() ? "w" : "-"; ! rwx += p.isExecutable() ? "x" : "-"; osw.write("SET_PERMISSIONS\n"); --- 546,562 ---- throws RemoteException { try { + String rwx = ""; + rwx += p.isReadable() ? "r" : "-"; + rwx += p.isWritable() ? "w" : "-"; + rwx += p.isExecutable() ? "x" : "-"; + + logger.log(Level.INFO, u.getUserName() + ": setPermissions " + f.getPath() + + " permissions=" + rwx); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); OutputStreamWriter osw = new OutputStreamWriter(sock .getOutputStream()); ! BufferedReader br = new BufferedReader(isr); osw.write("SET_PERMISSIONS\n"); *************** *** 623,626 **** --- 648,654 ---- byte[] data, int size) throws RemoteException { try { + logger.log(Level.INFO, user.getUserName() + ": truncAppend " + file.getPath() + + " offset=" + startOffset + " size=" + size); + Socket sock = new Socket(hostName, port); InputStreamReader isr = new InputStreamReader(sock.getInputStream()); |
From: Nikolay M. <nbm...@us...> - 2007-03-19 00:03:43
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 23:57:54
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 21:53:25
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 21:53:02
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 20:57:59
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 20:56:32
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 20:04:47
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 19:57:33
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 18:53:52
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 18:47:38
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 17:42:25
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 17:39:13
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 17:04:15
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 17:03:57
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 16:14:16
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 16:05:53
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 15:12:48
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |
From: Nikolay M. <nbm...@us...> - 2007-03-18 15:10:06
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 14:04:34
|
Update of /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv6031/clients/src/com/intel/gui/controls Modified Files: IntTextField.java Log Message: additional fix for feature request [ 1677155 ] Text fields are too wide Index: IntTextField.java =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/clients/src/com/intel/gui/controls/IntTextField.java,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** IntTextField.java 9 Mar 2007 11:51:45 -0000 1.2 --- IntTextField.java 17 Mar 2007 14:08:12 -0000 1.3 *************** *** 112,123 **** */ public IntTextField(int start, int min, int max) { ! ! super(new IntDocument(min, max), new Integer(start).toString(), Math.max(("" + min).length(), ("" + max) ! .length()) * 3 / 4); ! ! this.min = min; ! this.max = max; ! ! this.addFocusListener(new FieldFocusAdapter(this)); } --- 112,116 ---- */ public IntTextField(int start, int min, int max) { ! this((start + ""), min, max); } *************** *** 135,140 **** public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ! this.min = min; this.max = max; --- 128,134 ---- public IntTextField(String text, int min, int max) { ! super(new IntDocument(min, max), text, 3); ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); this.min = min; this.max = max; *************** *** 165,169 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMaximum(max); } --- 159,164 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMaximum(max); } *************** *** 179,183 **** // convert min and max to String by adding "" ! setColumns(Math.max(("" + min).length(), ("" + max).length()) * 3 / 4); ((IntDocument) getDocument()).setMinimum(min); } --- 174,179 ---- // convert min and max to String by adding "" ! int column = Math.max(("" + min).length(), ("" + max).length()); ! setColumns(column > 2 ? column * 3 / 4 : column); ((IntDocument) getDocument()).setMinimum(min); } |
From: Nikolay M. <nbm...@us...> - 2007-03-18 13:56:49
|
Update of /cvsroot/gpe4gtk/gpe4gtk/tests In directory sc8-pr-cvs2.sourceforge.net:/tmp/cvs-serv7387/tests Modified Files: GUI_run.xml Log Message: Add <jvmarg value="-Xmx512m"/> for testing Expert Client Index: GUI_run.xml =================================================================== RCS file: /cvsroot/gpe4gtk/gpe4gtk/tests/GUI_run.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** GUI_run.xml 26 Jan 2007 14:12:19 -0000 1.16 --- GUI_run.xml 17 Mar 2007 14:11:31 -0000 1.17 *************** *** 225,228 **** --- 225,229 ---- classname="com.intel.gpe.tests.gui.GUITestStarter" dir="${basedir}/secure"> + <jvmarg value="-Xmx512m"/> <arg line="sec abbot ExpertClient exp ExpertClientStart.xml"/> </java> |