[Servsys-svn] SF.net SVN: servsys:[118] trunk/servsys/src/com/pandmservices/web/UniCash. java
Brought to you by:
molnar_c
From: <mol...@us...> - 2009-08-01 02:31:04
|
Revision: 118 http://servsys.svn.sourceforge.net/servsys/?rev=118&view=rev Author: molnar_c Date: 2009-08-01 02:30:55 +0000 (Sat, 01 Aug 2009) Log Message: ----------- Change copyright and recompile after a few years. Recompile on java 1.60 Bump version number Modified Paths: -------------- trunk/servsys/src/com/pandmservices/web/UniCash.java Modified: trunk/servsys/src/com/pandmservices/web/UniCash.java =================================================================== --- trunk/servsys/src/com/pandmservices/web/UniCash.java 2006-05-25 17:11:46 UTC (rev 117) +++ trunk/servsys/src/com/pandmservices/web/UniCash.java 2009-08-01 02:30:55 UTC (rev 118) @@ -4920,7 +4920,7 @@ out.println("</BODY>"); out.println("</HTML>"); out.println("<br><br><br><br><CENTER>"); -out.println("(C) Copyright 2002-2006 - Our World Services, LLC<br>"); +out.println("(C) Copyright 2002-2009 - Our World Services, LLC<br>"); //out.println("<br>Version: "+doVersionInfo_VNumber()+" - Compiled: "+doFormatDate(getDate(doVersionInfo_VDate()))+"<br>"); //out.println("<br>Software Expire Date: "+doFormatDate(getDate(doGetExpireDate()))+"<br>"); //out.println("<br>Software Expire Date has been removed for GPL version.<br>"); @@ -5346,7 +5346,7 @@ out.println("</BODY>"); out.println("</HTML>"); out.println("<br><br><br><br><CENTER>"); -out.println("(C) Copyright 2002-2006 - Our World Shopping, LLC<br>"); +out.println("(C) Copyright 2002-2009 - Our World Services, LLC<br>"); out.println("<br>Version: "+doVersionInfo_VNumber()+" - Compiled: "+doFormatDate(getDate(doVersionInfo_VDate()))+"<br>"); //out.println("<br>Software Expire Date: "+doFormatDate(getDate(doGetExpireDate()))+"<br>"); //out.println("<br>Software Expire Date has been removed for GPL version.<br>"); @@ -6420,7 +6420,12 @@ } //RELEASE_VERSION - vnumber = "2.30"; + vnumber = "2.31"; + if (dbvnumber.equalsIgnoreCase("2.30")) { + Statement stmtu2 = con.createStatement(); + int result230z = stmtu2.executeUpdate("UPDATE version set vnumber='2.31';"); + int result230x = stmtu2.executeUpdate("UPDATE version set vdate='2009-08-01';"); + } if (dbvnumber.equalsIgnoreCase("2.29")) { Statement stmtu2 = con.createStatement(); int result230a = stmtu2.executeUpdate("alter table time_sheet add odostart int default 0 after callcount;"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |