V4.5.0
ajoute les attribut isDoublon dans les nodes de type text: des frames.
This commit is contained in:
parent
dbc60434a0
commit
8af5365982
Binary file not shown.
@ -100,6 +100,7 @@ public class actNewFichierAnalyse extends AbstractAction{
|
|||||||
placeIsDoublonInStructure(commandes.sujet.retourneFirstEnfantsByName("structurepage"));
|
placeIsDoublonInStructure(commandes.sujet.retourneFirstEnfantsByName("structurepage"));
|
||||||
placeIsDoublonInStylePage(commandes.sujet.retourneFirstEnfantsByName("style:page"));
|
placeIsDoublonInStylePage(commandes.sujet.retourneFirstEnfantsByName("style:page"));
|
||||||
placeIsDoublonInStylePage(commandes.sujet.retourneFirstEnfantsByName("style:style"));
|
placeIsDoublonInStylePage(commandes.sujet.retourneFirstEnfantsByName("style:style"));
|
||||||
|
placeIsDoublonInStylePage(commandes.sujet.retourneFirstEnfantsByName("frames"));
|
||||||
|
|
||||||
|
|
||||||
commandes.sujet.getAttributs().put("analysis_filename","sujet.xml");
|
commandes.sujet.getAttributs().put("analysis_filename","sujet.xml");
|
||||||
@ -156,7 +157,7 @@ public class actNewFichierAnalyse extends AbstractAction{
|
|||||||
Enumeration<node> pages = Collections.enumeration(nod.getNodes());
|
Enumeration<node> pages = Collections.enumeration(nod.getNodes());
|
||||||
while(pages.hasMoreElements()) {
|
while(pages.hasMoreElements()) {
|
||||||
node nodLaPage = pages.nextElement();
|
node nodLaPage = pages.nextElement();
|
||||||
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:span$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$"); //le node qui peuvent rechercher par le contenu textuel
|
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:span$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$|^text:s$"); //le node qui peuvent rechercher par le contenu textuel
|
||||||
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
||||||
for(int i = 0 ; i < nodLaPage.getNodes().size();i++) {
|
for(int i = 0 ; i < nodLaPage.getNodes().size();i++) {
|
||||||
Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt());
|
Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt());
|
||||||
@ -181,7 +182,7 @@ public class actNewFichierAnalyse extends AbstractAction{
|
|||||||
Enumeration<node> pages = Collections.enumeration(nod.getNodes());
|
Enumeration<node> pages = Collections.enumeration(nod.getNodes());
|
||||||
while(pages.hasMoreElements()) {
|
while(pages.hasMoreElements()) {
|
||||||
node nodLaPage = pages.nextElement();
|
node nodLaPage = pages.nextElement();
|
||||||
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:span$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$"); //le node qui peuvent rechercher par le contenu textuel
|
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:span$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$|^text:s$"); //le node qui peuvent rechercher par le contenu textuel
|
||||||
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
||||||
for(int i = 0 ; i < nodLaPage.getNodes().size();i++) {
|
for(int i = 0 ; i < nodLaPage.getNodes().size();i++) {
|
||||||
Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt());
|
Matcher m = p.matcher(nodLaPage.getNodes().get(i).getNomElt());
|
||||||
@ -207,7 +208,7 @@ public class actNewFichierAnalyse extends AbstractAction{
|
|||||||
* @param nod
|
* @param nod
|
||||||
*/
|
*/
|
||||||
private static void placeIsDoublon(node nod) {
|
private static void placeIsDoublon(node nod) {
|
||||||
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$"); //le node qui peuvent rechercher par le contenu textuel
|
Pattern p = Pattern.compile("^text:p$|^text:h$|^text:list$|^text:list-item$|^text:line-break$|^text:span$|^text:tab$|^text:s$"); //le node qui peuvent rechercher par le contenu textuel
|
||||||
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
ArrayList<String> listTextesInPage = new ArrayList<String>();
|
||||||
for(int i = 0 ; i < nod.getNodes().size();i++) {
|
for(int i = 0 ; i < nod.getNodes().size();i++) {
|
||||||
Matcher m = p.matcher(nod.getNodes().get(i).getNomElt());
|
Matcher m = p.matcher(nod.getNodes().get(i).getNomElt());
|
||||||
|
Loading…
Reference in New Issue
Block a user