MAJ V4.4.2 (modification sur l'ancrage à la page d'une image - à
véridier sur plusieurs fichiers)
This commit is contained in:
parent
5a5d8ba550
commit
5dcd670df5
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1116,7 +1116,9 @@ public class meptl {
|
||||
if(noddraw.get(j).getAttributs().get("text:anchor-type")!=null) {
|
||||
if(noddraw.get(j).getAttributs().get("text:anchor-type").equals("page")) {
|
||||
if(noddraw.get(j).getAttributs().get("text:anchor-page-number")!=null) {
|
||||
node page1 = a.retourneFirstNodeByNameAttributValue(nodpage, "page", "numeroabsolue", noddraw.get(j).getAttributs().get("text:anchor-page-number"));
|
||||
node page1 = null;
|
||||
if(pagezerosupprimer) page1 = a.retourneFirstNodeByNameAttributValue(nodpage, "page", "numeroabsolue", String.valueOf(Integer.valueOf(noddraw.get(j).getAttributs().get("text:anchor-page-number"))-1));
|
||||
if(!pagezerosupprimer) page1 = a.retourneFirstNodeByNameAttributValue(nodpage, "page", "numeroabsolue", noddraw.get(j).getAttributs().get("text:anchor-page-number"));
|
||||
if(page1!=null) {
|
||||
if(pagezerosupprimer) {
|
||||
page1.getNodes().add(noddraw.get(j));
|
||||
|
@ -848,11 +848,17 @@ public class verificationFichierAnalyse {
|
||||
String cheminVersFichierAnalyse = commandes.PathFilenameAnalysis;
|
||||
if(!commandes.console) cheminVersFichierAnalyse = commandes.PathFilenameAnalysis.substring(0,commandes.PathFilenameAnalysis.lastIndexOf("\\"));
|
||||
if(commandes.analysis_filename.contains(".")) {
|
||||
Run.ecritureNodeEnXML(commandes.sujet,commandes.analysis_filename.substring(0, commandes.nameSujet.lastIndexOf(".")),cheminVersFichierAnalyse,Run.TypeFile.Sujet);
|
||||
// Run.ecritureNodeEnXML(commandes.sujet,commandes.analysis_filename.substring(0, commandes.nameSujet.lastIndexOf(".")),cheminVersFichierAnalyse,Run.TypeFile.Sujet);
|
||||
Run.ecritureNodeEnXML(commandes.sujet,commandes.analysis_filename.substring(0, commandes.analysis_filename.lastIndexOf(".")),cheminVersFichierAnalyse,Run.TypeFile.Sujet);
|
||||
}else {
|
||||
Run.ecritureNodeEnXML(commandes.sujet,commandes.analysis_filename,cheminVersFichierAnalyse,Run.TypeFile.Sujet);
|
||||
}
|
||||
|
||||
commandes.message.append("<p>**********************************************************</p>");
|
||||
commandes.message.append("<p> Ecriture du fichier avec le nouveau hash.</p>");
|
||||
commandes.message.append("<p>**********************************************************</p>");
|
||||
|
||||
|
||||
}else {
|
||||
|
||||
commandes.message.append("<p>**********************************************************</p>");
|
||||
|
Loading…
Reference in New Issue
Block a user