Compare commits

..

5 Commits

Author SHA1 Message Date
François
88dd4ef1ca update README 2022-08-22 10:53:25 +02:00
François
cb7e8d110c fix insee lock 2022-01-27 09:22:53 +01:00
François
bca1181b8b copy update 2022-01-26 14:24:32 +01:00
François
847ffcd207 fix first window outside screen 2022-01-25 18:44:54 +01:00
François
bb39b6d3ea fix model 2022-01-25 09:18:56 +01:00
8 changed files with 74 additions and 40 deletions

View File

@ -21,3 +21,16 @@ git config user.name "Your Name"
[ADEC 56](http://adec56.org/spip/index.php)
## Remote commands
* getRoles
* zipList path
* zipGets path
* zipPuts zip
* zipRemove path
## Test
https://adecwatt.parlenet.org/lib/plugins/adecwatt/adecWattBD.php?version=v3&action=getRoles
https://adecwatt.parlenet.org/lib/plugins/adecwatt/adecWattBD.php?version=v3&action=zipList&name=data

View File

@ -104,6 +104,14 @@
</fileset>
</replaceregexp>
<replaceregexp byline="true">
<regexp pattern="(.*entry key=&#34;.*Location&#34;&#62;)[^&#93;]*(.*)"/>
<substitution expression="\1&#91;x=50,y=50\2"/>
<fileset dir="data/config">
<include name="*.xml"/>
</fileset>
</replaceregexp>
<replaceregexp byline="true">
<regexp pattern="(.*entry key=&#34;Download.*Checked&#34;&#62;)false(.*)"/>
<substitution expression="\1true\2"/>
@ -287,6 +295,12 @@
<include name="misc/**/*.class"/>
</fileset>
</jar>
<copy todir="${webRef}/soft" preservelastmodified="true">
<fileset dir="${build.jar}">
<include name="UpdatedAdecWatt.jar"/>
<include name="Misc.jar"/>
</fileset>
</copy>
</target>
<!-- ======================================== -->

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
<properties>
<comment>This file is automaticaly generated by AdecWatt application at 2:43 PM on Oct 21, 2020.</comment>
<comment>This file is automaticaly generated by AdecWatt application at 3:16 PM on Jan 26, 2022.</comment>
<entry key="GridGlue">true</entry>
<entry key="HelpOrder">4</entry>
@ -9,21 +9,21 @@
<entry key="EditChecked">true</entry>
<entry key="SliderPlace">North</entry>
<entry key="SliderPlace">North</entry>
<entry key="EditPlace">North</entry>
<entry key="SearchPlace">North</entry>
<entry key="AboutChecked">false</entry>
<entry key="FilePlace">North</entry>
<entry key="LicenceLocation">[x=0,y=28]</entry>
<entry key="LastCheck">20201021</entry>
<entry key="LicenceLocation">[x=50,y=50]</entry>
<entry key="LastCheck">20220126</entry>
<entry key="SliderChecked">true</entry>
<entry key="FrameLocation">[x=0,y=28]</entry>
<entry key="FrameLocation">[x=50,y=50]</entry>
<entry key="SearchChecked">true</entry>
<entry key="AboutLocation">[x=0,y=28]</entry>
<entry key="AboutLocation">[x=50,y=50]</entry>
<entry key="SliderUndocked">false</entry>
<entry key="Login"/>
@ -38,7 +38,7 @@
<entry key="DownloadsoftChecked">true</entry>
<entry key="DownloaddataChecked">true</entry>
<entry key="ManualLocation">[x=0,y=28]</entry>
<entry key="ManualLocation">[x=50,y=50]</entry>
<entry key="HandleGlue">true</entry>
@ -53,6 +53,7 @@
<entry key="ManualChecked">false</entry>
<entry key="EditOrder">1</entry>
<entry key="Variant"/>
@ -60,14 +61,13 @@
<entry key="SearchOrder">5</entry>
<entry key="LicenceChecked">false</entry>
<entry key="PlacementPlace">North</entry>
<entry key="LastExport">/home/felix/CendresLampionsChapelleBleue.lpz</entry>
<entry key="LastExport">/home/felix/perso/adecWatt56/data/export/CendresLampionsChapelleBleue.lpz</entry>
<entry key="FileOrder">0</entry>
<entry key="BoundGlue">true</entry>
<entry key="CheckPeriod">Day</entry>

Binary file not shown.

View File

@ -18,8 +18,10 @@ public class LaunchAdecWatt {
// ========================================
static public void main (String[] args) {
try {
System.err.println ("Config...");
Config.setPWD (LaunchAdecWatt.class);
Config.load ("AdecWatt");
System.err.println ("Bundle...");
Bundle.load ("Help");
Bundle.load ("ToolBar");
Bundle.load ("Proxy");
@ -29,8 +31,6 @@ public class LaunchAdecWatt {
Bundle.load ("AdecWatt");
Bundle.load (JProp.AdecWattUser);
updateShell ();
final AdecWatt adecWatt = new AdecWatt ();
SwingUtilities.invokeLater (new Runnable () {
public void run () {
@ -42,36 +42,37 @@ public class LaunchAdecWatt {
} catch (Exception e) {
File softDir = new File (Config.getPWD ().getParentFile (), "soft");
File jar = new File (softDir, "UpdatedAdecWatt.jar");
System.err.println ("RemoteUpdate...");
RemoteUpdate.launch (jar);
}
}
public static void updateShell () {
try {
File dir = Config.getPWD ().getParentFile ();
File oldLaunch = new File (dir, "launch-lightPlot.sh");
File softDir = new File (dir, "soft");
File newJar = new File (softDir, "AdecWatt.jar");
File oldJar = new File (softDir, "LightPlot.jar");
if (newJar.length () < 1024)
return;
if (oldLaunch.length () > 70) {
PrintWriter pw = new PrintWriter (oldLaunch);
pw.println ("#!/bin/bash");
pw.println ("cd `dirname \"$0\"`");
pw.println ("java -jar soft/AdecWatt.jar");
pw.flush ();
pw.close ();
JOptionPane.showMessageDialog (null,
"Votre logiciel a \u00E9t\u00E9 mis \u00E0 jour.\n"+
"Vous devez relancer l'application\n", "Information", JOptionPane.ERROR_MESSAGE);
System.exit (0);
}
if (oldJar.exists ())
oldJar.delete ();
} catch (FileNotFoundException e) {
}
}
// public static void updateShell () {
// try {
// File dir = Config.getPWD ().getParentFile ();
// File oldLaunch = new File (dir, "launch-lightPlot.sh");
// File softDir = new File (dir, "soft");
// File newJar = new File (softDir, "AdecWatt.jar");
// File oldJar = new File (softDir, "LightPlot.jar");
// if (newJar.length () < 1024)
// return;
// if (oldLaunch.length () > 70) {
// PrintWriter pw = new PrintWriter (oldLaunch);
// pw.println ("#!/bin/bash");
// pw.println ("cd `dirname \"$0\"`");
// pw.println ("java -jar soft/AdecWatt.jar");
// pw.flush ();
// pw.close ();
// JOptionPane.showMessageDialog (null,
// "Votre logiciel a \u00E9t\u00E9 mis \u00E0 jour.\n"+
// "Vous devez relancer l'application\n", "Information", JOptionPane.ERROR_MESSAGE);
// System.exit (0);
// }
// if (oldJar.exists ())
// oldJar.delete ();
// } catch (FileNotFoundException e) {
// }
// }
// ========================================
}

View File

@ -9,6 +9,7 @@ public class LaunchUpdatedAdecWatt {
// ========================================
static public void main (String[] args) {
System.err.println ("LaunchUpdatedAdecWatt...");
Config.setPWD (LaunchUpdatedAdecWatt.class);
File dir = Config.getPWD ().getParentFile ();
RemoteUpdate.renameNewFile (dir);

View File

@ -77,7 +77,11 @@ public class AdecWatt extends StateNotifier {
iconDB.reload ();
imageDB.reload ();
permanentDB.reload ();
inseeDB = InseeDB.readDocument (Config.getDataUrl ("data", "server", "Insee.xml"));
(new Thread () {
public void run () {
inseeDB = InseeDB.readDocument (Config.getDataUrl ("data", "server", "Insee.xml"));
}
}).start ();
broadcastUpdate (BroadcastUnitRoots);
}

View File

@ -114,6 +114,7 @@ public class PermanentDB {
try {
if (file.length () == 0)
continue;
Log.writeLog ("PermanentDB", "load "+srcDir+"/"+file.getName ());
FileInputStream fileInputStream = new FileInputStream (file);
Unit<?> unit = Unit.getInstanceFromStream (adecWatt, fileInputStream, file,
serverToken.equals (srcDir) ? UnitLocation.Server : UnitLocation.Local);