Re: Building the setup project

Justin Dearing <[email protected]> Sat, 31 Oct 2015 04:33:57 +0000
Newsgroups gmane.comp.java.tn5250j.devel
Message-ID <CABsCM1O-mH1NF+TNZ2y8Zjn--RC3jguAXZp0M7N+91Q4C7eGmQ@mail.gmail.com>
--===============0326244372795138781==
Content-Type: multipart/alternative; boundary=001a1135a96cfb669e05235f0d35

--001a1135a96cfb669e05235f0d35
Content-Type: text/plain; charset=UTF-8

I was not aware of that per user properties trick. I'm not a java expert.
Thanks for pointing that out.

This makes the installer generate icons with izpack 5.0.5

diff --git a/tn5250j/installer/install.xml b/tn5250j/installer/install.xml
index 54bef56..5a8c2ca 100644
--- a/tn5250j/installer/install.xml
+++ b/tn5250j/installer/install.xml
@@ -38,7 +38,7 @@
         <res src="installer/COPYING" id="LicencePanel.licence"/>
         <res src="installer/installShortcutSpec.xml"
id="shortcutSpec.xml"/>
         <res src="installer/NativeLAF" id="useNativeLAF"/>
- <res src="installer/tn5250jSplash.jpg" id="installer.langsel.img"/>

+        <res src="installer/tn5250jSplash.jpg"
id="installer.langsel.img"/>
     </resources>
     <panels>
         <panel classname="HelloPanel"/>
@@ -102,6 +102,10 @@
             <file targetdir="$INSTALL_PATH" src="installer/applet.txt"/>
         </pack>
     </packs>
-    <native name="ShellLink.dll" type="izpack"/>
-    <native name="ShellLink_x64.dll" type="izpack"/>
+    <natives>
+      <native type="izpack" name="WinSetupAPI.dll"/>
+      <native type="izpack" name="WinSetupAPI_x64.dll"/>
+      <native name="ShellLink.dll" type="izpack"/>
+      <native name="ShellLink_x64.dll" type="izpack"/>
+    </natives>
 </izpack:installation>
diff --git a/tn5250j/installer/installShortcutSpec.xml
b/tn5250j/installer/installShortcutSpec.xml
index bec6c39..85e1949 100644
--- a/tn5250j/installer/installShortcutSpec.xml
+++ b/tn5250j/installer/installShortcutSpec.xml
@@ -2,14 +2,16 @@

 <shortcuts>

-  <programGroup defaultName="tn5250j" location="applications"/>
+  <skipIfNotSupported />
+
+  <programGroup defaultName="tn5250j" location="startMenu"/>

   <shortcut
      name="tn5250j"
      programGroup="yes"
      desktop="yes"
      applications="no"
-     startMenu="no"
+     startMenu="yes"
      startup="no"
      target="$INSTALL_PATH\bin\tn5250j.bat"
      workingDirectory="$INSTALL_PATH\lib"
@@ -17,24 +19,17 @@
      description="A 5250 Telnet emulator written in Java"
      iconFile="$INSTALL_PATH\bin\icons\tn5250j-icon.ico"
      iconIndex="0"
-     initialState="noShow">
-
-     <createForPack name="Core"/>
-
-   </shortcut>
+     initialState="noShow"/>

    <shortcut
      name="Uninstaller"
      programGroup="yes"
      desktop="no"
      applications="no"
-     startMenu="no"
+     startMenu="yes"
      startup="no"
      target="$INSTALL_PATH\Uninstaller\uninstaller.jar"
      commandLine=""
-     description="tn5250j uninstaller">
-
-     <createForPack name="Core" />
-   </shortcut>
+     description="tn5250j uninstaller"/>

 </shortcuts>


On Fri, Oct 30, 2015 at 4:41 PM Martin W. Kirst <[email protected]> wrote:

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> Justin,
>
> I found the reason: there's also a install.xml file.
> This needs to use version=5.0 also.
> Just look at my latest SVN commit ;-)
>
> Regards
> Martin
>
>
> Am 29.10.2015 um 02:47 schrieb Justin Dearing:
> > Hello,
> >
> > I would like to add start menu icons to the setup project. However,
> > I have yet to get generate-installer to work. The current error
> > message is
> >
> > [izpack] Oct 28, 2015 8:43:21 PM
> > com.izforge.izpack.core.container.PlatformProvider provide [izpack]
> > INFO: Detected platform:
> > windows,version=10.0,arch=x64,symbolicName=null,javaVersion=1.8.0_66
> >
> >
> [izpack] Exception in thread "Thread-0"
> > com.izforge.izpack.api.exception.CompilerException:
> > C:\Users\Justin\Documents\tn5250j-code\tn5250j/dist/installer/install.
> xml:1:
> >
> >
> the file version is different from the compiler version
> > [izpack]     at
> > com.izforge.izpack.ant.IzpackAntRunnable.run(IzpackAntRunnable.java:79
> )
> >
> >
> [izpack]     at java.lang.Thread.run(Thread.java:745)
> > [izpack] Caused by:
> > com.izforge.izpack.api.exception.CompilerException:
> > C:\Users\Justin\Documents\tn5250j-code\tn5250j/dist/installer/install.
> xml:1:
> >
> >
> the file version is different from the compiler version
> > [izpack]     at
> > com.izforge.izpack.compiler.helper.AssertionHelper.parseError(Assertio
> nHelper.java:61)
> >
> >
> [izpack]     at
> > com.izforge.izpack.compiler.resource.ResourceFinder.getXMLTree(Resourc
> eFinder.java:188)
> >
> >
> [izpack]     at
> > com.izforge.izpack.compiler.CompilerConfig.executeCompiler(CompilerCon
> fig.java:316)
> >
> >
> [izpack]     at
> > com.izforge.izpack.ant.IzpackAntRunnable.run(IzpackAntRunnable.java:75
> )
> >
> >
> [izpack]     ... 1 more
> >
> >
> > Here are the changes I made to get it to talk to my Izrepack
> > install:
> >
> > C:\Users\Justin\Documents\tn5250j-code\tn5250j>git diff diff --git
> > a/tn5250j/build.properties b/tn5250j/build.properties index
> > 7e9f7b8..736ec1d 100644 --- a/tn5250j/build.properties +++
> > b/tn5250j/build.properties @@ -20,7 +20,7 @@ Name=Tn5250j
> > version=0.7.7-Snapshot year=2001-2015
> >
> > -IzPack.dir=c:/IzPack/ +IzPack.dir=C:/Program Files/IzPack^M
> >
> > main.class=org.tn5250j.My5250
> >
> > diff --git a/tn5250j/build.xml b/tn5250j/build.xml index
> > a4eef44..60d0326 100644 --- a/tn5250j/build.xml +++
> > b/tn5250j/build.xml @@ -301,9 +301,11 @@ <!-- Creates an installer
> > for tn5250j --> <target name="generate-installer" depends="dist"
> > description="Creates installer using IzPack">
> >
> > +    <path id="build.classpath"> +        <fileset
> > dir="${IzPack.dir}/lib" includes="*.jar"/> +    </path> <!-- Allows
> > us to use the IzPack Ant task --> -    <taskdef name="izpack"
> > classpath="${IzPack.dir}/lib/compiler.jar" -
> > classname="com.izforge.izpack.ant.IzPackTask"/> +    <taskdef
> > name="izpack" classpathref="build.classpath"
> > classname="com.izforge.izpack.ant.IzPackTask"/>
> >
> > <!-- Copies the files to the dist directory --> <echo
> > message="Copies the image of the distribution to ${dist.dir}"/>
> >
> > Any ideas for next steps?
> >
> > Justin Dearing
> >
> >
> > ----------------------------------------------------------------------
> - --------
> >
> >
> >
> >
> > _______________________________________________ Tn5250j-develop
> > mailing list [email protected]
> > https://lists.sourceforge.net/lists/listinfo/tn5250j-develop
> >
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v2
>
> iEYEARECAAYFAlYz1fkACgkQefmD4St1GNHyLACgzaivSw1t9fQXZ9So3hDcgDqR
> cA4AoNBcXUzkZ7IxELVPWQxWMvCq7kNg
> =vKvV
> -----END PGP SIGNATURE-----
>
>
> ------------------------------------------------------------------------------
> _______________________________________________
> Tn5250j-develop mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/tn5250j-develop
>

--001a1135a96cfb669e05235f0d35
Content-Type: text/html; charset=UTF-8
Content-Transfer-Encoding: quoted-printable

<div dir=3D"ltr">I was not aware of that per user properties trick. I&#39;m=
 not a java expert. Thanks for pointing that out.=C2=A0<div><br></div><div>=
This makes the installer generate icons with izpack 5.0.5=C2=A0</div><div><=
br></div><div><div>diff --git a/tn5250j/installer/install.xml b/tn5250j/ins=
taller/install.xml</div><div>index 54bef56..5a8c2ca 100644</div><div>--- a/=
tn5250j/installer/install.xml</div><div>+++ b/tn5250j/installer/install.xml=
</div><div>@@ -38,7 +38,7 @@</div><div>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&l=
t;res src=3D&quot;installer/COPYING&quot; id=3D&quot;LicencePanel.licence&q=
uot;/&gt;</div><div>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;res src=3D&quot;i=
nstaller/installShortcutSpec.xml&quot; id=3D&quot;shortcutSpec.xml&quot;/&g=
t;</div><div>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;res src=3D&quot;installe=
r/NativeLAF&quot; id=3D&quot;useNativeLAF&quot;/&gt;</div><div>-<span class=
=3D"Apple-tab-span" style=3D"white-space:pre">		</span>&lt;res src=3D&quot;=
installer/tn5250jSplash.jpg&quot; id=3D&quot;installer.langsel.img&quot;/&g=
t; =C2=A0 =C2=A0 =C2=A0 =C2=A0</div><div>+ =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;r=
es src=3D&quot;installer/tn5250jSplash.jpg&quot; id=3D&quot;installer.langs=
el.img&quot;/&gt; =C2=A0 =C2=A0 =C2=A0 =C2=A0</div><div>=C2=A0 =C2=A0 =C2=
=A0&lt;/resources&gt;</div><div>=C2=A0 =C2=A0 =C2=A0&lt;panels&gt;</div><di=
v>=C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;panel classname=3D&quot;HelloPanel&=
quot;/&gt;</div><div>@@ -102,6 +102,10 @@</div><div>=C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0 =C2=A0 =C2=A0&lt;file targetdir=3D&quot;$INSTALL_PATH&quot; s=
rc=3D&quot;installer/applet.txt&quot;/&gt;</div><div>=C2=A0 =C2=A0 =C2=A0 =
=C2=A0 =C2=A0&lt;/pack&gt;</div><div>=C2=A0 =C2=A0 =C2=A0&lt;/packs&gt;</di=
v><div>- =C2=A0 =C2=A0&lt;native name=3D&quot;ShellLink.dll&quot; type=3D&q=
uot;izpack&quot;/&gt;</div><div>- =C2=A0 =C2=A0&lt;native name=3D&quot;Shel=
lLink_x64.dll&quot; type=3D&quot;izpack&quot;/&gt;</div><div>+ =C2=A0 =C2=
=A0&lt;natives&gt;</div><div>+ =C2=A0 =C2=A0 =C2=A0&lt;native type=3D&quot;=
izpack&quot; name=3D&quot;WinSetupAPI.dll&quot;/&gt;</div><div>+ =C2=A0 =C2=
=A0 =C2=A0&lt;native type=3D&quot;izpack&quot; name=3D&quot;WinSetupAPI_x64=
.dll&quot;/&gt;</div><div>+ =C2=A0 =C2=A0 =C2=A0&lt;native name=3D&quot;She=
llLink.dll&quot; type=3D&quot;izpack&quot;/&gt;</div><div>+ =C2=A0 =C2=A0 =
=C2=A0&lt;native name=3D&quot;ShellLink_x64.dll&quot; type=3D&quot;izpack&q=
uot;/&gt;</div><div>+ =C2=A0 =C2=A0&lt;/natives&gt;</div><div>=C2=A0&lt;/iz=
pack:installation&gt;</div><div>diff --git a/tn5250j/installer/installShort=
cutSpec.xml b/tn5250j/installer/installShortcutSpec.xml</div><div>index bec=
6c39..85e1949 100644</div><div>--- a/tn5250j/installer/installShortcutSpec.=
xml</div><div>+++ b/tn5250j/installer/installShortcutSpec.xml</div><div>@@ =
-2,14 +2,16 @@</div><div>=C2=A0</div><div>=C2=A0&lt;shortcuts&gt;</div><div=
>=C2=A0</div><div>- =C2=A0&lt;programGroup defaultName=3D&quot;tn5250j&quot=
; location=3D&quot;applications&quot;/&gt;</div><div>+ =C2=A0&lt;skipIfNotS=
upported /&gt;</div><div>+</div><div>+ =C2=A0&lt;programGroup defaultName=
=3D&quot;tn5250j&quot; location=3D&quot;startMenu&quot;/&gt;</div><div>=C2=
=A0</div><div>=C2=A0 =C2=A0&lt;shortcut</div><div>=C2=A0 =C2=A0 =C2=A0 name=
=3D&quot;tn5250j&quot;</div><div>=C2=A0 =C2=A0 =C2=A0 programGroup=3D&quot;=
yes&quot;</div><div>=C2=A0 =C2=A0 =C2=A0 desktop=3D&quot;yes&quot;</div><di=
v>=C2=A0 =C2=A0 =C2=A0 applications=3D&quot;no&quot;</div><div>- =C2=A0 =C2=
=A0 startMenu=3D&quot;no&quot;</div><div>+ =C2=A0 =C2=A0 startMenu=3D&quot;=
yes&quot;</div><div>=C2=A0 =C2=A0 =C2=A0 startup=3D&quot;no&quot;</div><div=
>=C2=A0 =C2=A0 =C2=A0 target=3D&quot;$INSTALL_PATH\bin\tn5250j.bat&quot;</d=
iv><div>=C2=A0 =C2=A0 =C2=A0 workingDirectory=3D&quot;$INSTALL_PATH\lib&quo=
t;</div><div>@@ -17,24 +19,17 @@</div><div>=C2=A0 =C2=A0 =C2=A0 description=
=3D&quot;A 5250 Telnet emulator written in Java&quot;</div><div>=C2=A0 =C2=
=A0 =C2=A0 iconFile=3D&quot;$INSTALL_PATH\bin\icons\tn5250j-icon.ico&quot;<=
/div><div>=C2=A0 =C2=A0 =C2=A0 iconIndex=3D&quot;0&quot;</div><div>- =C2=A0=
 =C2=A0 initialState=3D&quot;noShow&quot;&gt;</div><div>-</div><div>- =C2=
=A0 =C2=A0 &lt;createForPack name=3D&quot;Core&quot;/&gt;</div><div>-</div>=
<div>- =C2=A0 &lt;/shortcut&gt;</div><div>+ =C2=A0 =C2=A0 initialState=3D&q=
uot;noShow&quot;/&gt;</div><div>=C2=A0</div><div>=C2=A0 =C2=A0 &lt;shortcut=
</div><div>=C2=A0 =C2=A0 =C2=A0 name=3D&quot;Uninstaller&quot;</div><div>=
=C2=A0 =C2=A0 =C2=A0 programGroup=3D&quot;yes&quot;</div><div>=C2=A0 =C2=A0=
 =C2=A0 desktop=3D&quot;no&quot;</div><div>=C2=A0 =C2=A0 =C2=A0 application=
s=3D&quot;no&quot;</div><div>- =C2=A0 =C2=A0 startMenu=3D&quot;no&quot;</di=
v><div>+ =C2=A0 =C2=A0 startMenu=3D&quot;yes&quot;</div><div>=C2=A0 =C2=A0 =
=C2=A0 startup=3D&quot;no&quot;</div><div>=C2=A0 =C2=A0 =C2=A0 target=3D&qu=
ot;$INSTALL_PATH\Uninstaller\uninstaller.jar&quot;</div><div>=C2=A0 =C2=A0 =
=C2=A0 commandLine=3D&quot;&quot;</div><div>- =C2=A0 =C2=A0 description=3D&=
quot;tn5250j uninstaller&quot;&gt;</div><div>-</div><div>- =C2=A0 =C2=A0 &l=
t;createForPack name=3D&quot;Core&quot; /&gt;</div><div>- =C2=A0 &lt;/short=
cut&gt;</div><div>+ =C2=A0 =C2=A0 description=3D&quot;tn5250j uninstaller&q=
uot;/&gt;</div><div>=C2=A0</div><div>=C2=A0&lt;/shortcuts&gt;</div></div><d=
iv><br></div></div><br><div class=3D"gmail_quote"><div dir=3D"ltr">On Fri, =
Oct 30, 2015 at 4:41 PM Martin W. Kirst &lt;<a href=3D"mailto:maki@bitkings=
.de">[email protected]</a>&gt; wrote:<br></div><blockquote class=3D"gmail_qu=
ote" style=3D"margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex=
">-----BEGIN PGP SIGNED MESSAGE-----<br>
Hash: SHA1<br>
<br>
Justin,<br>
<br>
I found the reason: there&#39;s also a install.xml file.<br>
This needs to use version=3D5.0 also.<br>
Just look at my latest SVN commit ;-)<br>
<br>
Regards<br>
Martin<br>
<br>
<br>
Am 29.10.2015 um 02:47 schrieb Justin Dearing:<br>
&gt; Hello,<br>
&gt;<br>
&gt; I would like to add start menu icons to the setup project. However,<br=
>
&gt; I have yet to get generate-installer to work. The current error<br>
&gt; message is<br>
&gt;<br>
&gt; [izpack] Oct 28, 2015 8:43:21 PM<br>
&gt; com.izforge.izpack.core.container.PlatformProvider provide [izpack]<br=
>
&gt; INFO: Detected platform:<br>
&gt; windows,version=3D10.0,arch=3Dx64,symbolicName=3Dnull,javaVersion=3D1.=
8.0_66<br>
&gt;<br>
&gt;<br>
[izpack] Exception in thread &quot;Thread-0&quot;<br>
&gt; com.izforge.izpack.api.exception.CompilerException:<br>
&gt; C:\Users\Justin\Documents\tn5250j-code\tn5250j/dist/installer/install.=
<br>
xml:1:<br>
&gt;<br>
&gt;<br>
the file version is different from the compiler version<br>
&gt; [izpack]=C2=A0 =C2=A0 =C2=A0at<br>
&gt; com.izforge.izpack.ant.IzpackAntRunnable.run(IzpackAntRunnable.java:79=
<br>
)<br>
&gt;<br>
&gt;<br>
[izpack]=C2=A0 =C2=A0 =C2=A0at java.lang.Thread.run(Thread.java:745)<br>
&gt; [izpack] Caused by:<br>
&gt; com.izforge.izpack.api.exception.CompilerException:<br>
&gt; C:\Users\Justin\Documents\tn5250j-code\tn5250j/dist/installer/install.=
<br>
xml:1:<br>
&gt;<br>
&gt;<br>
the file version is different from the compiler version<br>
&gt; [izpack]=C2=A0 =C2=A0 =C2=A0at<br>
&gt; com.izforge.izpack.compiler.helper.AssertionHelper.parseError(Assertio=
<br>
nHelper.java:61)<br>
&gt;<br>
&gt;<br>
[izpack]=C2=A0 =C2=A0 =C2=A0at<br>
&gt; com.izforge.izpack.compiler.resource.ResourceFinder.getXMLTree(Resourc=
<br>
eFinder.java:188)<br>
&gt;<br>
&gt;<br>
[izpack]=C2=A0 =C2=A0 =C2=A0at<br>
&gt; com.izforge.izpack.compiler.CompilerConfig.executeCompiler(CompilerCon=
<br>
fig.java:316)<br>
&gt;<br>
&gt;<br>
[izpack]=C2=A0 =C2=A0 =C2=A0at<br>
&gt; com.izforge.izpack.ant.IzpackAntRunnable.run(IzpackAntRunnable.java:75=
<br>
)<br>
&gt;<br>
&gt;<br>
[izpack]=C2=A0 =C2=A0 =C2=A0... 1 more<br>
&gt;<br>
&gt;<br>
&gt; Here are the changes I made to get it to talk to my Izrepack<br>
&gt; install:<br>
&gt;<br>
&gt; C:\Users\Justin\Documents\tn5250j-code\tn5250j&gt;git diff diff --git<=
br>
&gt; a/tn5250j/build.properties b/tn5250j/build.properties index<br>
&gt; 7e9f7b8..736ec1d 100644 --- a/tn5250j/build.properties +++<br>
&gt; b/tn5250j/build.properties @@ -20,7 +20,7 @@ Name=3DTn5250j<br>
&gt; version=3D0.7.7-Snapshot year=3D2001-2015<br>
&gt;<br>
&gt; -IzPack.dir=3Dc:/IzPack/ +IzPack.dir=3DC:/Program Files/IzPack^M<br>
&gt;<br>
&gt; main.class=3Dorg.tn5250j.My5250<br>
&gt;<br>
&gt; diff --git a/tn5250j/build.xml b/tn5250j/build.xml index<br>
&gt; a4eef44..60d0326 100644 --- a/tn5250j/build.xml +++<br>
&gt; b/tn5250j/build.xml @@ -301,9 +301,11 @@ &lt;!-- Creates an installer<=
br>
&gt; for tn5250j --&gt; &lt;target name=3D&quot;generate-installer&quot; de=
pends=3D&quot;dist&quot;<br>
&gt; description=3D&quot;Creates installer using IzPack&quot;&gt;<br>
&gt;<br>
&gt; +=C2=A0 =C2=A0 &lt;path id=3D&quot;build.classpath&quot;&gt; +=C2=A0 =
=C2=A0 =C2=A0 =C2=A0 &lt;fileset<br>
&gt; dir=3D&quot;${IzPack.dir}/lib&quot; includes=3D&quot;*.jar&quot;/&gt; =
+=C2=A0 =C2=A0 &lt;/path&gt; &lt;!-- Allows<br>
&gt; us to use the IzPack Ant task --&gt; -=C2=A0 =C2=A0 &lt;taskdef name=
=3D&quot;izpack&quot;<br>
&gt; classpath=3D&quot;${IzPack.dir}/lib/compiler.jar&quot; -<br>
&gt; classname=3D&quot;com.izforge.izpack.ant.IzPackTask&quot;/&gt; +=C2=A0=
 =C2=A0 &lt;taskdef<br>
&gt; name=3D&quot;izpack&quot; classpathref=3D&quot;build.classpath&quot;<b=
r>
&gt; classname=3D&quot;com.izforge.izpack.ant.IzPackTask&quot;/&gt;<br>
&gt;<br>
&gt; &lt;!-- Copies the files to the dist directory --&gt; &lt;echo<br>
&gt; message=3D&quot;Copies the image of the distribution to ${dist.dir}&qu=
ot;/&gt;<br>
&gt;<br>
&gt; Any ideas for next steps?<br>
&gt;<br>
&gt; Justin Dearing<br>
&gt;<br>
&gt;<br>
&gt; ----------------------------------------------------------------------=
<br>
- --------<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________ Tn5250j-develop<br>
&gt; mailing list <a href=3D"mailto:[email protected]" =
target=3D"_blank">[email protected]</a><br>
&gt; <a href=3D"https://lists.sourceforge.net/lists/listinfo/tn5250j-develo=
p" rel=3D"noreferrer" target=3D"_blank">https://lists.sourceforge.net/lists=
/listinfo/tn5250j-develop</a><br>
&gt;<br>
<br>
-----BEGIN PGP SIGNATURE-----<br>
Version: GnuPG v2<br>
<br>
iEYEARECAAYFAlYz1fkACgkQefmD4St1GNHyLACgzaivSw1t9fQXZ9So3hDcgDqR<br>
cA4AoNBcXUzkZ7IxELVPWQxWMvCq7kNg<br>
=3DvKvV<br>
-----END PGP SIGNATURE-----<br>
<br>
---------------------------------------------------------------------------=
---<br>
_______________________________________________<br>
Tn5250j-develop mailing list<br>
<a href=3D"mailto:[email protected]" target=3D"_blank">=
[email protected]</a><br>
<a href=3D"https://lists.sourceforge.net/lists/listinfo/tn5250j-develop" re=
l=3D"noreferrer" target=3D"_blank">https://lists.sourceforge.net/lists/list=
info/tn5250j-develop</a><br>
</blockquote></div>

--001a1135a96cfb669e05235f0d35--


--===============0326244372795138781==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

------------------------------------------------------------------------------

--===============0326244372795138781==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

_______________________________________________
Tn5250j-develop mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/tn5250j-develop

--===============0326244372795138781==--