[Laszlo-checkins] r10689 - openlaszlo/trunk/lps/admin

hqm@openlaszlo.org hqm at openlaszlo.org
Wed Aug 13 16:47:56 PDT 2008


Author: hqm
Date: 2008-08-13 16:47:54 -0700 (Wed, 13 Aug 2008)
New Revision: 10689

Modified:
   openlaszlo/trunk/lps/admin/solo-deploy.jsp
   openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp
Log:
Change 20080813-hqm-e by hqm at badtzmaru on 2008-08-13 17:12:43 EDT
    in /Users/hqm/openlaszlo/trunk
    for http://svn.openlaszlo.org/openlaszlo/trunk

Summary: modify generator for solo zip filenames so they work in Japanese

New Features:

Bugs Fixed: LPP-6829

Technical Reviewer: max
QA Reviewer: pbr
Doc Reviewer: (pending)

Documentation:

Release Notes:

Details:

see bug report    

Tests:

generate solo swf and dhtml zip file using solo wizard



Modified: openlaszlo/trunk/lps/admin/solo-deploy.jsp
===================================================================
--- openlaszlo/trunk/lps/admin/solo-deploy.jsp	2008-08-13 22:51:45 UTC (rev 10688)
+++ openlaszlo/trunk/lps/admin/solo-deploy.jsp	2008-08-13 23:47:54 UTC (rev 10689)
@@ -342,7 +342,7 @@
      try {
          // Create the ZIP file
          SimpleDateFormat format = 
-             new SimpleDateFormat("EEE_MMM_dd_yyyy_HH_mm_ss");
+             new SimpleDateFormat("MMM_dd_yyyy_HH_mm_ss");
          String outFilename = "solo_deploy_" + format.format(new Date()) + ".zip";
          zipfilename = outFilename;
          ZipOutputStream zout = new ZipOutputStream(new FileOutputStream(tmpdir+"/"+outFilename));

Modified: openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp
===================================================================
--- openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp	2008-08-13 22:51:45 UTC (rev 10688)
+++ openlaszlo/trunk/lps/admin/solo-dhtml-deploy.jsp	2008-08-13 23:47:54 UTC (rev 10689)
@@ -394,7 +394,7 @@
      try {
          // Create the ZIP file
          SimpleDateFormat format = 
-             new SimpleDateFormat("EEE_MMM_dd_yyyy_HH_mm_ss");
+             new SimpleDateFormat("MMM_dd_yyyy_HH_mm_ss");
          String outFilename = "solo_deploy_" + format.format(new Date()) + ".zip";
          zipfilename = outFilename;
          ZipOutputStream zout = new ZipOutputStream(new FileOutputStream(tmpdir+"/"+outFilename));



More information about the Laszlo-checkins mailing list