Author: cheche
Date: Tue Jun 7 00:09:11 2005
New Revision: 188726
URL: http://svn.apache.org/viewcvs?rev=188726&view=rev
Log:
Using {user.language} instead of {env.LANG} for a i18n static site
Modified:
forrest/trunk/main/forrest.build.xml
Modified: forrest/trunk/main/forrest.build.xml
URL: http://svn.apache.org/viewcvs/forrest/trunk/main/forrest.build.xml?rev=188726&r1=188725&r2=188726&view=diff
==============================================================================
--- forrest/trunk/main/forrest.build.xml (original)
+++ forrest/trunk/main/forrest.build.xml Tue Jun 7 00:09:11 2005
@@ -107,7 +107,7 @@
<if>
<equals arg1="${project.i18n}" arg2="true"/>
<then>
- <property name="project.site-dir" location="${project.build-dir}/site/${env.LANG}"
/>
+ <property name="project.site-dir" location="${project.build-dir}/site/${user.language}"
/>
</then>
<else>
<property name="project.site-dir" location="${project.build-dir}/site"
/>
|