<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="src"/>
+ <classpathentry kind="src" path="src2"/>
<classpathentry kind="src" path="utils"/>
<classpathentry kind="src" path="test"/>
<classpathentry kind="lib" path="lib/activation.jar"/>
<?xml version="1.0"?>
<!--
- * just a crude unzip of non-Jalview classes for development purposes -BH 2018
+
+ Just a crude unzip of non-Jalview classes for development purposes -BH 2018
+ Jim can generalize.
+
-->
<project name="jalviewX" default="tosite" basedir="."
xmlns:if="ant:if"
<!-- inputs zip files -->
<property name="swingjs.zip" value="${swingjsDir}/SwingJS-site.zip" />
+
+ <!-- packages -->
<property name="varna.zip" value="${libjsDir}/VARNA-site.zip" />
+ <property name="mig.zip" value="${libjsDir}/MiGLayout-site.zip" />
<!-- output directories -->
<property name="site" value="site"/>
<property name="j2sDir" value="${site}/swingjs/j2s"/>
-
+ <!-- SwingJS -->
+
<echo> Unzipping ${swingjs.zip} into ${site} </echo>
<unzip src="${swingjs.zip}" dest="${site}/" overwrite="true"/>
-
+
+ <!-- VARNA -->
+
<echo> Unzipping ${varna.zip} into ${site} </echo>
<unzip src="${varna.zip}" dest="${site}" overwrite="true"/>
+ <!-- MiGLayout -->
+
+ <echo> Unzipping ${mig.zip} into ${site} </echo>
+ <unzip src="${mig.zip}" dest="${site}" overwrite="true"/>
+
+ <!-- resources -->
+
<echo> Copying ${resourceDir} files into ${j2sDir} </echo>
<copy todir="${j2sDir}">
<fileset dir="${resourceDir}">
--- /dev/null
+<?xml version="1.0"?>
+<!--
+ * just a crude unzip of non-Jalview classes for development purposes -BH 2018
+-->
+<project name="jalviewX" default="zipall" basedir="."
+ xmlns:if="ant:if"
+ xmlns:unless="ant:unless">
+
+ <!-- inputs directories -->
+ <property name="resourceDir" value="resources" />
+ <property name="libjsDir" value="libjs"/>
+ <property name="swingjsDir" value="swingjs"/>
+ <!-- output directories -->
+ <property name="site" value="site"/>
+ <property name="j2sDir" value="${site}/swingjs/j2s"/>
+ <property name="libjsDir" value="libjs"/>
+
+ <target name="zipall" depends="zipvarna,zipmig">
+
+
+ </target>
+
+ <target name="zipvarna">
+ <!-- VARNA -->
+ <property name="varna.zip" value="${libjsDir}/VARNA-site.zip" />
+ <echo> Zipping up ${varna.zip} </echo>
+ <zip destfile="${varna.zip}" basedir="site" includes="fr_*,swingjs/j2s/fr/**" />
+ </target>
+
+ <target name="zipmig">
+ <!-- MiGLayout -->
+ <property name="mig.zip" value="${libjsDir}/MiGLayout-site.zip" />
+ <echo> Zipping up ${mig.zip} </echo>
+ <zip destfile="${mig.zip}" basedir="site" includes="swingjs/j2s/net/miginfocom/**" />
+ </target>
+
+</project>
+++ /dev/null
-<?xml version="1.0"?>
-<!--
- * just a crude unzip of non-Jalview classes for development purposes -BH 2018
--->
-<project name="jalviewX" default="zipvarna" basedir="."
- xmlns:if="ant:if"
- xmlns:unless="ant:unless">
-
- <target name="zipvarna">
-
-
- <!-- inputs directories -->
- <property name="resourceDir" value="resources" />
- <property name="libjsDir" value="libjs"/>
- <property name="swingjsDir" value="swingjs"/>
-
- <!-- inputs zip files -->
- <property name="swingjs.zip" value="${swingjsDir}/SwingJS-site.zip" />
- <property name="varna.zip" value="${libjsDir}/VARNA-site.zip" />
-
- <!-- output directories -->
- <property name="site" value="site"/>
- <property name="j2sDir" value="${site}/swingjs/j2s"/>
-
-
- <property name="libjsDir" value="libjs"/>
-
- <echo> Zipping up ${varna.zip} </echo>
- <zip destfile="${varna.zip}" basedir="site" includes="fr_*,swingjs/j2s/fr/**" />
-</target>
-</project>
--- /dev/null
+The src2 directory is on the class path, but it is generally empty.
+It is for transient transpiling of JAR file contents only.
+
+
+After transpiling:
+
+1) move src code to srcjar
+2) edit README_SWINGJS.txt in main directory of the code
+3) add a zip-up target in build-zip-jars.xml (to libjs directory)
+4) add an unzip target in build-site.xml (from libjs to site directory)
+
+BH 2018.07.03
\ No newline at end of file
+++ /dev/null
-source https://github.com/apache/log4j Latest commit 7be00ee on Jun 4, 2015
\ No newline at end of file
--- /dev/null
+https://github.com/apache/log4j
+Latest commit 7be00ee on Jun 4, 2015
+
+Status
+======
+
+7/3/2018
+
+just a minimal implementation
+possibly not used in JavaScript
+(currently not included in build)