[Laszlo-checkins] r9254 - openlaszlo/trunk
dda@openlaszlo.org
dda at openlaszlo.org
Wed May 21 11:47:52 PDT 2008
Author: dda
Date: 2008-05-21 11:47:45 -0700 (Wed, 21 May 2008)
New Revision: 9254
Modified:
openlaszlo/trunk/build.xml
Log:
Change 20080521-dda-F by dda at lester.local on 2008-05-21 14:33:40 EDT
in /Users/dda/laszlo/src/svn/openlaszlo/trunk-doc3
for http://svn.openlaszlo.org/openlaszlo/trunk
Summary: Fix corrupted graphics in deployed build
New Features:
Bugs Fixed: LPP-5078
Technical Reviewer: (pending)
QA Reviewer: mamye (pending)
Doc Reviewer: (pending)
Documentation:
Release Notes:
Details:
This fix is based on the observation that .jpg files are corrupted when viewed in
IE, but only after when a build distribution is created, and the observation
that .png and .gif files are copied into the distribution without modification,
but that other files are modified to VERSION. Treating .jpg/.jpeg the same as
.png/.gif presumably will fix this - Mamye will review.
Tests:
Did a build to check build.xml syntax
Fix to be checked by Mamye.
Modified: openlaszlo/trunk/build.xml
===================================================================
--- openlaszlo/trunk/build.xml 2008-05-21 18:47:28 UTC (rev 9253)
+++ openlaszlo/trunk/build.xml 2008-05-21 18:47:45 UTC (rev 9254)
@@ -168,6 +168,8 @@
<!-- Exclude images, because we don't want to replace VERSIONID inside images. -->
<exclude name="**/*.png" />
<exclude name="**/*.gif" />
+ <exclude name="**/*.jpg" />
+ <exclude name="**/*.jpeg" />
<include name="guide_fr/**" />
@@ -181,6 +183,8 @@
<!-- these are relative to the docs subdirectory, but only contain images -->
<include name="images/*.png" />
<include name="images/*.gif" />
+ <include name="images/*.jpg" />
+ <include name="images/*.jpeg" />
<include name="includes/**/*.png" />
<include name="developers/**/*.png" />
@@ -204,6 +208,28 @@
<include name="guide_fr/**/*.gif" />
<include name="installation/**/*.gif" />
+ <include name="includes/**/*.jpg" />
+ <include name="developers/**/*.jpg" />
+ <include name="deployers/**/*.jpg" />
+ <include name="component-design/**/*.jpg" />
+ <include name="component-browser/**/*.jpg" />
+ <include name="reference/**/*.jpg" />
+ <include name="contributors/**/*.jpg" />
+ <include name="contribref/**/*.jpg" />
+ <include name="guide_fr/**/*.jpg" />
+ <include name="installation/**/*.jpg" />
+
+ <include name="includes/**/*.jpeg" />
+ <include name="developers/**/*.jpeg" />
+ <include name="deployers/**/*.jpeg" />
+ <include name="component-design/**/*.jpeg" />
+ <include name="component-browser/**/*.jpeg" />
+ <include name="reference/**/*.jpeg" />
+ <include name="contributors/**/*.jpeg" />
+ <include name="contribref/**/*.jpeg" />
+ <include name="guide_fr/**/*.jpeg" />
+ <include name="installation/**/*.jpeg" />
+
</patternset>
More information about the Laszlo-checkins
mailing list