Révision 2270

tmp/org.txm.queryindex.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.queryindex.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Export-Package: org.txm.queryindex.core.functions,org.txm.queryindex.r
3
 cp.commands.function,org.txm.queryindex.rcp.commands.link,org.txm.que
4
 ryindex.rcp.editors,queryindexrcp,queryindexrcp.actions,queryindexrcp
5
 .adapters
6
Bundle-SymbolicName: org.txm.queryindex.rcp;singleton:=true
7
Bundle-Version: 1.0.0.qualifier
8
Bundle-Name: %Bundle-Name
2 9
Require-Bundle: org.eclipse.ui;visibility:=reexport,org.eclipse.core.r
3 10
 untime;visibility:=reexport,org.eclipse.ui.editors;bundle-version="3.
4 11
 8.100";visibility:=reexport,org.eclipse.core.expressions;bundle-versi
......
9 16
 reexport,org.txm.rcp;bundle-version="0.7.8";visibility:=reexport,org.
10 17
 txm.lexicaltable.core;visibility:=reexport,org.txm.statsengine.r.core
11 18
 ;visibility:=reexport,org.txm.statsengine.r.rcp;visibility:=reexport
12
Export-Package: org.txm.queryindex.core.functions,
13
 org.txm.queryindex.rcp.commands.function,
14
 org.txm.queryindex.rcp.commands.link,
15
 org.txm.queryindex.rcp.editors,
16
 queryindexrcp,
17
 queryindexrcp.actions,
18
 queryindexrcp.adapters
19
Bundle-Vendor: Textometrie.org
20 19
Bundle-ActivationPolicy: lazy
21
Bundle-Version: 1.0.0.qualifier
22
Bundle-Name: %Bundle-Name
23 20
Bundle-ManifestVersion: 2
24 21
Bundle-Activator: queryindexrcp.Activator
25
Bundle-SymbolicName: org.txm.queryindex.rcp;singleton:=true
26
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
22
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
23
Bundle-Vendor: Textometrie.org
27 24

  
tmp/org.txm.libs.msoffice/src/org/txm/libs/msoffice/ReadExcel.java (revision 2270)
1 1
package org.txm.libs.msoffice;
2 2

  
3
import java.io.BufferedOutputStream;
3 4
import java.io.File;
5
import java.io.FileNotFoundException;
6
import java.io.FileOutputStream;
4 7
import java.io.IOException;
8
import java.io.InputStream;
9
import java.io.OutputStreamWriter;
5 10
import java.text.SimpleDateFormat;
6 11
import java.util.ArrayList;
12
import java.util.Arrays;
13
import java.util.Collection;
14
import java.util.Collections;
7 15
import java.util.HashMap;
8 16

  
9 17
import org.apache.poi.EncryptedDocumentException;
......
14 22
import org.apache.poi.ss.usermodel.Sheet;
15 23
import org.apache.poi.ss.usermodel.Workbook;
16 24
import org.apache.poi.ss.usermodel.WorkbookFactory;
25
import org.apache.poi.ss.util.SheetUtil;
17 26

  
18 27
public class ReadExcel {
19 28

  
......
23 32
	HashMap<String, String> record = null;
24 33
	int iRow = 0;
25 34
	int nRows;
35
	private File tableFile;
26 36
	
27 37
	public ReadExcel(File tableFile, String sheetName) throws EncryptedDocumentException, InvalidFormatException, IOException {
28 38
		wb = WorkbookFactory.create(tableFile);
39
		this.tableFile = tableFile;
29 40
		
30 41
		if (sheetName == null || sheetName.length() == 0) {
31 42
			ws = wb.getSheetAt(0);
......
39 50
		nRows = ws.getPhysicalNumberOfRows();
40 51
	}
41 52
	
53
	private void removeLines(HashMap<String, String> rules) {
54
		Row headers = ws.getRow(0);
55
		int colMax = headers.getLastCellNum();
56
		
57
		ArrayList<Integer> columnIdxToTest = new ArrayList<Integer>();
58
		ArrayList<String> columnsTest = new ArrayList<String>();
59
		for (int colIndex = 0 ; colIndex < colMax ; colIndex++) {
60
			Cell cell = headers.getCell(colIndex);
61
			if (cell != null) {
62
				String value = cellToString(cell).trim();
63
				if (rules.containsKey(value)) {
64
					columnIdxToTest.add(colIndex);
65
					columnsTest.add(rules.get(value));
66
				}
67
			}
68
		}
69
		
70
		for (int rowIndex = 0 ; rowIndex < nRows ; rowIndex++) {
71
			Row row = ws.getRow(rowIndex);
72
			
73
			for (int i = 0 ; i < columnIdxToTest.size() ; i++) {
74
				int colIndex = columnIdxToTest.get(i);
75
				
76
				Cell cell = row.getCell(colIndex);
77
				if (cell != null) {
78
					String value = cellToString(cell).trim();
79
					if (columnsTest.get(i).equals(value)) {
80
						cell.setCellValue(rules.get("TODOOOOOOOOOOOOOOOOO"));
81
					}
82
				}
83
			}
84
		}
85
	}
86
	
87
	private void renameColumns(HashMap<String, String> rules) {
88
		Row headers = ws.getRow(0);
89
		int colMax = headers.getLastCellNum();
90
		for (int colIndex = 0 ; colIndex < colMax ; colIndex++) {
91
			Cell cell = headers.getCell(colIndex);
92
			if (cell != null) {
93
				String value = cellToString(cell).trim();
94
				if (rules.containsKey(value)) {
95
					cell.setCellValue(rules.get(value));
96
				}
97
			}
98
		}
99
	}
100
	
101
	public void keepColumns(Collection<String> columnsToKeep) {
102
		Row headers = ws.getRow(0);
103
		int colMax = headers.getLastCellNum();
104
		ArrayList<Integer> columnsToDelete = new ArrayList<Integer>();
105
		for (int colIndex = 0 ; colIndex < colMax ; colIndex++) {
106
			Cell cell = headers.getCell(colIndex);
107
			if (cell != null) {
108
				String value = cellToString(cell).trim();
109
				if (columnsToKeep.contains(value)) {
110
					columnsToDelete.add(colIndex);
111
				}
112
			}
113
		}
114
		
115
		Collections.sort(columnsToDelete);
116

  
117
		for (int i = columnsToDelete.size() -1 ; i >= 0 ; i--) {
118
			SheetUtility.deleteColumn(ws, i);
119
		}
120
	}
121
	
122
	public boolean save() throws IOException {
123
		return saveAs(tableFile);
124
	}
125
	
126
	public boolean saveAs(File newTableFile) throws IOException {
127
		BufferedOutputStream writer = new BufferedOutputStream(new FileOutputStream(newTableFile, false));
128
		wb.write(writer);
129
		writer.close();
130
		return true;
131
	}
132
	
42 133
	public boolean readHeaders() {
43 134
		
44 135
		if (nRows == 0) {
......
206 297
		}
207 298
	}
208 299

  
209
	public static void main(String[] args) {
210
		ArrayList<ArrayList<String>> data = toTable(new File("/home/mdecorde/xml/ruscorpora1m-test/metadata.xlsx"), null);
211
		if (data.size() == 0) {
212
			System.out.println("no data.");
213
		} else {
214
			System.out.println(data);
215
		}
300
	public static void main(String[] args) throws Exception {
301
//		ArrayList<ArrayList<String>> data = toTable(new File("/home/mdecorde/xml/ruscorpora1m-test/metadata.xlsx"), null);
302
//		if (data.size() == 0) {
303
//			System.out.println("no data.");
304
//		} else {
305
//			System.out.println(data);
306
//		}
307
		
308
		File tableFile = new File("/home/mdecorde/TEMP/ANTRACT/AF/mini trs fixed/metadata.xlsx");
309
		File table2File = new File("/home/mdecorde/TEMP/ANTRACT/AF/mini trs fixed/metadata2.xlsx");
310
		
311
		System.out.println("open...");
312
		ReadExcel excel = new ReadExcel(tableFile, null);
313
		System.out.println("keeping...");
314
		excel.keepColumns(Arrays.asList("Date de diffusion", "Durée", "Identifiant de la notice", "Nom fichier segmenté (info)", "Notes du titre", "Titre propre"));
315
		System.out.println("renaming...");
316
		HashMap<String, String> rules = new HashMap<String, String>();
317
		rules.put("Date de diffusion", "date_diffusion");
318
		rules.put("Durée", "duree");
319
		rules.put("Identifiant de la notice", "");
320
		rules.put("Nom fichier segmenté (info)", "fichier_segmente");
321
		rules.put("Notes du titre", "subtitle");
322
		rules.put("Titre propre", "title");
323
		excel.renameColumns(rules);
324
		System.out.println("saving...");
325
		excel.saveAs(table2File);
326
		System.out.println("done.");
216 327
	}
217 328
}
tmp/org.txm.libs.msoffice/src/org/txm/libs/msoffice/SheetUtility.java (revision 2270)
1
package org.txm.libs.msoffice;
2

  
3
import org.apache.poi.ss.usermodel.Cell;
4
import org.apache.poi.ss.usermodel.Row;
5
import org.apache.poi.ss.usermodel.Sheet;
6

  
7

  
8
/*
9
 * Helper functions to aid in the management of sheets
10
 */
11
public class SheetUtility extends Object {
12

  
13

  
14
    /**
15
     * Given a sheet, this method deletes a column from a sheet and moves
16
     * all the columns to the right of it to the left one cell.
17
     * 
18
     * Note, this method will not update any formula references.
19
     * 
20
     * @param sheet
21
     * @param column
22
     */
23
    public static void deleteColumn( Sheet sheet, int columnToDelete ){
24
        int maxColumn = 0;
25
        for ( int r=0; r < sheet.getLastRowNum()+1; r++ ){
26
            Row row = sheet.getRow( r );
27

  
28
            // if no row exists here; then nothing to do; next!
29
            if ( row == null )
30
                continue;
31

  
32
            // if the row doesn't have this many columns then we are good; next!
33
            int lastColumn = row.getLastCellNum();
34
            if ( lastColumn > maxColumn )
35
                maxColumn = lastColumn;
36

  
37
            if ( lastColumn < columnToDelete )
38
                continue;
39

  
40
            for ( int x=columnToDelete+1; x < lastColumn + 1; x++ ){
41
                Cell oldCell    = row.getCell(x-1);
42
                if ( oldCell != null )
43
                    row.removeCell( oldCell );
44

  
45
                Cell nextCell   = row.getCell( x );
46
                if ( nextCell != null ){
47
                    Cell newCell    = row.createCell( x-1, nextCell.getCellType() );
48
                    cloneCell(newCell, nextCell);
49
                }
50
            }
51
        }
52

  
53

  
54
        // Adjust the column widths
55
        for ( int c=0; c < maxColumn; c++ ){
56
            sheet.setColumnWidth( c, sheet.getColumnWidth(c+1) );
57
        }
58
    }
59

  
60

  
61
    /*
62
     * Takes an existing Cell and merges all the styles and forumla
63
     * into the new one
64
     */
65
    private static void cloneCell( Cell cNew, Cell cOld ){
66
        cNew.setCellComment( cOld.getCellComment() );
67
        cNew.setCellStyle( cOld.getCellStyle() );
68

  
69
        switch ( cNew.getCellType() ){
70
            case Cell.CELL_TYPE_BOOLEAN:{
71
                cNew.setCellValue( cOld.getBooleanCellValue() );
72
                break;
73
            }
74
            case Cell.CELL_TYPE_NUMERIC:{
75
                cNew.setCellValue( cOld.getNumericCellValue() );
76
                break;
77
            }
78
            case Cell.CELL_TYPE_STRING:{
79
                cNew.setCellValue( cOld.getStringCellValue() );
80
                break;
81
            }
82
            case Cell.CELL_TYPE_ERROR:{
83
                cNew.setCellValue( cOld.getErrorCellValue() );
84
                break;
85
            }
86
            case Cell.CELL_TYPE_FORMULA:{
87
                cNew.setCellFormula( cOld.getCellFormula() );
88
                break;
89
            }
90
        }
91

  
92
    }
93
}
0 94

  
tmp/org.txm.libs.msoffice/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.8"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5
	<classpathentry kind="src" path="src"/>
6
	<classpathentry exported="true" kind="lib" path="lib/commons-codec-1.10.jar"/>
7
	<classpathentry exported="true" kind="lib" path="lib/commons-collections4-4.1.jar"/>
8
	<classpathentry exported="true" kind="lib" path="lib/commons-logging-1.2.jar"/>
9
	<classpathentry exported="true" kind="lib" path="lib/curvesapi-1.04.jar"/>
10
	<classpathentry exported="true" kind="lib" path="lib/junit-4.12.jar"/>
11
	<classpathentry exported="true" kind="lib" path="lib/log4j-1.2.17.jar"/>
12
	<classpathentry exported="true" kind="lib" path="lib/ooxml-schemas-1.3.jar"/>
13
	<classpathentry exported="true" kind="lib" path="lib/poi-3.17.jar"/>
14
	<classpathentry exported="true" kind="lib" path="lib/poi-excelant-3.17.jar"/>
15
	<classpathentry exported="true" kind="lib" path="lib/poi-ooxml-3.17.jar"/>
16
	<classpathentry exported="true" kind="lib" path="lib/poi-ooxml-schemas-3.17.jar"/>
17
	<classpathentry exported="true" kind="lib" path="lib/poi-scratchpad-3.17.jar"/>
18
	<classpathentry exported="true" kind="lib" path="lib/xmlbeans-2.6.0.jar"/>
19
	<classpathentry kind="output" path="bin"/>
20
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5
	  <classpathentry kind="src" path="src"/>
6
	  <classpathentry exported="true" kind="lib" path="lib/commons-codec-1.10.jar"/>
7
	  <classpathentry exported="true" kind="lib" path="lib/commons-collections4-4.1.jar"/>
8
	  <classpathentry exported="true" kind="lib" path="lib/commons-logging-1.2.jar"/>
9
	  <classpathentry exported="true" kind="lib" path="lib/curvesapi-1.04.jar"/>
10
	  <classpathentry exported="true" kind="lib" path="lib/junit-4.12.jar"/>
11
	  <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.17.jar"/>
12
	  <classpathentry exported="true" kind="lib" path="lib/ooxml-schemas-1.3.jar"/>
13
	  <classpathentry exported="true" kind="lib" path="lib/poi-3.17.jar"/>
14
	  <classpathentry exported="true" kind="lib" path="lib/poi-excelant-3.17.jar"/>
15
	  <classpathentry exported="true" kind="lib" path="lib/poi-ooxml-3.17.jar"/>
16
	  <classpathentry exported="true" kind="lib" path="lib/poi-ooxml-schemas-3.17.jar"/>
17
	  <classpathentry exported="true" kind="lib" path="lib/poi-scratchpad-3.17.jar"/>
18
	  <classpathentry exported="true" kind="lib" path="lib/xmlbeans-2.6.0.jar"/>
19
	  <classpathentry kind="output" path="bin"/>
20
</classpath>
tmp/org.txm.libs.msoffice/META-INF/MANIFEST.MF (revision 2270)
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
3
Bundle-Name: org.txm.libs.msoffice
4
Bundle-SymbolicName: org.txm.libs.msoffice
5
Bundle-Version: 1.0.0.qualifier
6
Automatic-Module-Name: org.txm.libs.msoffice
7
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
8
Bundle-ClassPath: lib/commons-codec-1.10.jar,
9
 lib/commons-collections4-4.1.jar,
10
 lib/commons-logging-1.2.jar,
11
 lib/curvesapi-1.04.jar,
12
 lib/junit-4.12.jar,
13
 lib/log4j-1.2.17.jar,
14
 lib/ooxml-schemas-1.3.jar,
15
 lib/poi-3.17.jar,
16
 lib/poi-excelant-3.17.jar,
17
 lib/poi-ooxml-3.17.jar,
18
 lib/poi-ooxml-schemas-3.17.jar,
19
 lib/poi-scratchpad-3.17.jar,
20
 lib/xmlbeans-2.6.0.jar,
21
 .
22
Export-Package: org.txm.libs.msoffice
23
Bundle-Vendor: Textometrie.org
1
Manifest-Version: 1.0
2
Automatic-Module-Name: org.txm.libs.msoffice
3
Bundle-SymbolicName: org.txm.libs.msoffice
4
Export-Package: org.txm.libs.msoffice
5
Bundle-Name: org.txm.libs.msoffice
6
Bundle-Version: 1.0.0.qualifier
7
Bundle-ClassPath: lib/commons-codec-1.10.jar,lib/commons-collections4-
8
 4.1.jar,lib/commons-logging-1.2.jar,lib/curvesapi-1.04.jar,lib/junit-
9
 4.12.jar,lib/log4j-1.2.17.jar,lib/ooxml-schemas-1.3.jar,lib/poi-3.17.
10
 jar,lib/poi-excelant-3.17.jar,lib/poi-ooxml-3.17.jar,lib/poi-ooxml-sc
11
 hemas-3.17.jar,lib/poi-scratchpad-3.17.jar,lib/xmlbeans-2.6.0.jar,.
12
Bundle-ManifestVersion: 2
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
14
Bundle-Vendor: Textometrie.org
15
Import-Package: net.sf.saxon.functions
16

  
tmp/org.txm.progression.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.progression.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.chartsengine.rcp;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.progression.core;bundle-version="1.0.0";visibility:=reexport,
4
 org.txm.concordance.rcp;bundle-version="1.0.0";visibility:=reexport,
5
 org.txm.edition.rcp;bundle-version="1.0.0";visibility:=reexport
6 2
Export-Package: org.txm.progression.rcp.adapters,org.txm.progression.r
7 3
 cp.chartsengine.events,org.txm.progression.rcp.editors,org.txm.progre
8 4
 ssion.rcp.handlers,org.txm.progression.rcp.messages,org.txm.progressi
9 5
 on.rcp.preferences
10
Bundle-Vendor: Textometrie.org
6
Bundle-SymbolicName: org.txm.progression.rcp;singleton:=true
11 7
Bundle-Version: 1.0.0.qualifier
12 8
Bundle-Name: %Bundle-Name
9
Require-Bundle: org.txm.chartsengine.rcp;bundle-version="1.0.0";visibi
10
 lity:=reexport,org.txm.progression.core;bundle-version="1.0.0";visibi
11
 lity:=reexport,org.txm.concordance.rcp;bundle-version="1.0.0";visibil
12
 ity:=reexport,org.txm.edition.rcp;bundle-version="1.0.0";visibility:=
13
 reexport
13 14
Bundle-ManifestVersion: 2
14
Bundle-SymbolicName: org.txm.progression.rcp;singleton:=true
15
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
15
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
16
Bundle-Vendor: Textometrie.org
16 17

  
17

  
tmp/org.txm.cooccurrence.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.cooccurrence.rcp/META-INF/MANIFEST.MF (revision 2270)
2 2
Export-Package: org.txm.cooccurrence.rcp.adapters,org.txm.cooccurrence
3 3
 .rcp.editors,org.txm.cooccurrence.rcp.handlers,org.txm.cooccurrence.r
4 4
 cp.messages,org.txm.cooccurrence.rcp.preferences
5
Require-Bundle: org.txm.statsengine.r.rcp;bundle-version="1.0.0";visibility:=reexport,
6
 org.txm.links.rcp;bundle-version="1.0.0";visibility:=reexport,
7
 org.txm.cooccurrence.core;bundle-version="1.0.0";visibility:=reexport
8
Bundle-Vendor: Textometrie.org
5
Bundle-SymbolicName: org.txm.cooccurrence.rcp;singleton:=true
9 6
Bundle-Version: 1.0.0.qualifier
10 7
Bundle-Name: %Bundle-Name
8
Require-Bundle: org.txm.statsengine.r.rcp;bundle-version="1.0.0";visib
9
 ility:=reexport,org.txm.links.rcp;bundle-version="1.0.0";visibility:=
10
 reexport,org.txm.cooccurrence.core;bundle-version="1.0.0";visibility:
11
 =reexport
11 12
Bundle-ManifestVersion: 2
12
Bundle-SymbolicName: org.txm.cooccurrence.rcp;singleton:=true
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
14
Bundle-Vendor: Textometrie.org
14 15

  
15

  
tmp/org.txm.index.core/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="src" path="groovy"/>
11
	<classpathentry kind="output" path="bin"/>
12
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="src" path="groovy"/>
11
	  <classpathentry kind="output" path="bin"/>
12
</classpath>
tmp/org.txm.index.core/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.searchengine.cqp.core;bundle-version="1.1.0";visibility:=reexport,
3
 org.txm.statsengine.r.core;bundle-version="1.0.0";visibility:=reexport
4
Export-Package: org.txm.index.core.functions,
5
 org.txm.index.core.messages,
6
 org.txm.index.core.preferences,
7
 org.txm.index.core.r,
8
 org.txm.macro.r,
9
 org.txm.test
10
Bundle-Vendor: Textometrie.org
11
Bundle-ActivationPolicy: lazy
2
Export-Package: org.txm.index.core.functions,org.txm.index.core.messag
3
 es,org.txm.index.core.preferences,org.txm.index.core.r,org.txm.macro.
4
 r,org.txm.test
5
Bundle-SymbolicName: org.txm.index.core;singleton:=true
12 6
Bundle-Version: 1.0.0.qualifier
13 7
Bundle-Name: Index Core
8
Require-Bundle: org.txm.searchengine.cqp.core;bundle-version="1.1.0";v
9
 isibility:=reexport,org.txm.statsengine.r.core;bundle-version="1.0.0"
10
 ;visibility:=reexport
11
Bundle-ActivationPolicy: lazy
14 12
Bundle-ManifestVersion: 2
15
Bundle-SymbolicName: org.txm.index.core;singleton:=true
16
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
14
Bundle-Vendor: Textometrie.org
17 15

  
tmp/org.txm.concordance.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.concordance.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexport,
3
 org.txm.concordance.core;bundle-version="1.0.0";visibility:=reexport
4 2
Export-Package: org.txm.concordance.rcp.actions,org.txm.concordance.rc
5 3
 p.adapters,org.txm.concordance.rcp.editors,org.txm.concordance.rcp.ha
6 4
 ndlers,org.txm.concordance.rcp.messages,org.txm.concordance.rcp.prefe
7 5
 rences,org.txm.concordance.rcp.widgets
8
Bundle-Vendor: Textometrie.org
6
Bundle-SymbolicName: org.txm.concordance.rcp;singleton:=true
9 7
Bundle-Version: 1.0.0.qualifier
10 8
Bundle-Name: %Bundle-Name
9
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexpor
10
 t,org.txm.concordance.core;bundle-version="1.0.0";visibility:=reexpor
11
 t
11 12
Bundle-ManifestVersion: 2
12
Bundle-SymbolicName: org.txm.concordance.rcp;singleton:=true
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
14
Bundle-Vendor: Textometrie.org
14 15

  
15

  
tmp/org.txm.specificities.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.specificities.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.chartsengine.rcp;visibility:=reexport,
3
 org.txm.lexicaltable.rcp;visibility:=reexport,
4
 org.txm.specificities.core;bundle-version="1.0.0";visibility:=reexport
5 2
Export-Package: org.txm.specificities.rcp.adapters,org.txm.specificiti
6 3
 es.rcp.editors,org.txm.specificities.rcp.handlers,org.txm.specificiti
7 4
 es.rcp.messages,org.txm.specificities.rcp.preferences
8
Bundle-Vendor: Textometrie.org
5
Bundle-SymbolicName: org.txm.specificities.rcp;singleton:=true
9 6
Bundle-Version: 1.0.0.qualifier
10 7
Bundle-Name: %Bundle-Name
8
Require-Bundle: org.txm.chartsengine.rcp;visibility:=reexport,org.txm.
9
 lexicaltable.rcp;visibility:=reexport,org.txm.specificities.core;bund
10
 le-version="1.0.0";visibility:=reexport
11 11
Bundle-ManifestVersion: 2
12
Bundle-SymbolicName: org.txm.specificities.rcp;singleton:=true
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
12
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
13
Bundle-Vendor: Textometrie.org
14 14

  
15

  
tmp/org.txm.ca.core/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.ca.core/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.chartsengine.r.core;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.chartsengine.jfreechart.core;bundle-version="1.0.0";visibility:=reexport,
4
 org.txm.lexicaltable.core;visibility:=reexport
5 2
Export-Package: org.txm.ca.core.chartsengine.base,org.txm.ca.core.char
6 3
 tsengine.jfreechart.datasets,org.txm.ca.core.chartsengine.jfreechart.
7 4
 themes.highcharts.chartcreators,org.txm.ca.core.chartsengine.jfreecha
8 5
 rt.themes.highcharts.renderers,org.txm.ca.core.chartsengine.r,org.txm
9 6
 .ca.core.functions,org.txm.ca.core.messages,org.txm.ca.core.preferenc
10 7
 es,org.txm.ca.core.statsengine.r.functions
11
Bundle-Vendor: Textometrie.org
8
Bundle-SymbolicName: org.txm.ca.core;singleton:=true
12 9
Bundle-Version: 1.0.0.qualifier
13 10
Bundle-Name: Correspondence Analysis Core
11
Require-Bundle: org.txm.chartsengine.r.core;bundle-version="1.0.0";vis
12
 ibility:=reexport,org.txm.chartsengine.jfreechart.core;bundle-version
13
 ="1.0.0";visibility:=reexport,org.txm.lexicaltable.core;visibility:=r
14
 eexport
14 15
Bundle-ManifestVersion: 2
15
Bundle-SymbolicName: org.txm.ca.core;singleton:=true
16
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
16
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
17
Bundle-Vendor: Textometrie.org
17 18

  
tmp/org.txm.libs.cqp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="src" path="res"/>
11
	<classpathentry kind="output" path="bin"/>
12
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="src" path="res"/>
11
	  <classpathentry kind="output" path="bin"/>
12
</classpath>
tmp/org.txm.libs.cqp/META-INF/MANIFEST.MF (revision 2270)
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
3
Bundle-Name: CQP libs
4
Bundle-SymbolicName: org.txm.libs.cqp;singleton:=true
5
Bundle-Version: 1.0.0.qualifier
6
Require-Bundle: org.txm.utils.core;bundle-version="1.0.0";visibility:=reexport,
7
 org.txm.core;visibility:=reexport
8
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
9
Bundle-ActivationPolicy: lazy
10
Export-Package: org.txm.libs.cqp
11
Bundle-Vendor: Textometrie.org
1
Manifest-Version: 1.0
2
Bundle-SymbolicName: org.txm.libs.cqp;singleton:=true
3
Export-Package: org.txm.libs.cqp
4
Bundle-Name: CQP libs
5
Bundle-Version: 1.0.0.qualifier
6
Require-Bundle: org.txm.utils.core;bundle-version="1.0.0";visibility:=
7
 reexport,org.txm.core;visibility:=reexport
8
Bundle-ManifestVersion: 2
9
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
10
Bundle-ActivationPolicy: lazy
11
Bundle-Vendor: Textometrie.org
12

  
tmp/org.txm.properties.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.properties.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexport,
3
 org.txm.properties.core;bundle-version="1.0.0";visibility:=reexport
4
Bundle-Vendor: Textometrie.org
2
Bundle-SymbolicName: org.txm.properties.rcp;singleton:=true
3
Export-Package: org.txm.properties.rcp.adapters,org.txm.properties.rcp
4
 .editors,org.txm.properties.rcp.handlers,org.txm.properties.rcp.messa
5
 ges,org.txm.properties.rcp.preferences
5 6
Bundle-Version: 1.0.0.qualifier
6 7
Bundle-Name: %Bundle-Name
8
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexpor
9
 t,org.txm.properties.core;bundle-version="1.0.0";visibility:=reexport
7 10
Bundle-ManifestVersion: 2
8
Bundle-SymbolicName: org.txm.properties.rcp;singleton:=true
9
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
10
Export-Package: org.txm.properties.rcp.adapters,
11
 org.txm.properties.rcp.editors,
12
 org.txm.properties.rcp.handlers,
13
 org.txm.properties.rcp.messages,
14
 org.txm.properties.rcp.preferences
11
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
12
Bundle-Vendor: Textometrie.org
15 13

  
16

  
tmp/org.txm.translate.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.7"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry exported="true" kind="con" path="GROOVY_SUPPORT"/>
11
	<classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/>
12
	<classpathentry kind="output" path="bin"/>
13
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry exported="true" kind="con" path="GROOVY_SUPPORT"/>
11
	  <classpathentry exported="true" kind="con" path="GROOVY_DSL_SUPPORT"/>
12
	  <classpathentry kind="output" path="bin"/>
13
</classpath>
tmp/org.txm.translate.rcp/META-INF/MANIFEST.MF (revision 2270)
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
3
Bundle-Name: %Bundle-Name.0
4
Bundle-SymbolicName: org.txm.translate.rcp;singleton:=true
5
Bundle-Version: 1.0.0.qualifier
6
Automatic-Module-Name: org.txm.translate.rcp
7
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
8
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexport,
9
 org.eclipse.search;bundle-version="3.11.100";visibility:=reexport
10
Bundle-Vendor: Textometrie.org
1
Manifest-Version: 1.0
2
Automatic-Module-Name: org.txm.translate.rcp
3
Bundle-SymbolicName: org.txm.translate.rcp;singleton:=true
4
Bundle-Name: %Bundle-Name.0
5
Bundle-Version: 1.0.0.qualifier
6
Require-Bundle: org.txm.rcp;bundle-version="0.8.0";visibility:=reexpor
7
 t,org.eclipse.search;bundle-version="3.11.100";visibility:=reexport
8
Bundle-ManifestVersion: 2
9
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
10
Bundle-Vendor: Textometrie.org
11

  
tmp/org.txm.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.eclipse.ui;visibility:=reexport,
3
 org.eclipse.core.filesystem;bundle-version="1.2.0";visibility:=reexport,
4
 org.eclipse.ui.ide;visibility:=reexport,
5
 org.eclipse.ui.console;bundle-version="3.4.0";visibility:=reexport,
6
 org.eclipse.jface.text;visibility:=reexport,
7
 org.eclipse.ui.browser;bundle-version="3.2.300";visibility:=reexport,
8
 org.eclipse.ui.forms;visibility:=reexport,
9
 org.eclipse.ui.editors;visibility:=reexport,
10
 org.eclipse.equinox.p2.ui;bundle-version="2.3.0";visibility:=reexport,
11
 org.eclipse.equinox.p2.ui.sdk;bundle-version="1.0.300";visibility:=reexport,
12
 org.eclipse.equinox.p2.ui.sdk.scheduler;bundle-version="1.2.0";visibility:=reexport,
13
 org.eclipse.e4.ui.css.swt.theme;bundle-version="0.9.100";visibility:=reexport,
14
 org.eclipse.equinox.p2.operations;visibility:=reexport,
15
 org.eclipse.equinox.p2.ui.discovery;bundle-version="1.0.0";visibility:=reexport,
16
 org.eclipse.equinox.p2.metadata;bundle-version="2.2.0";visibility:=reexport,
17
 org.eclipse.equinox.p2.discovery;bundle-version="1.0.200";visibility:=reexport,
18
 org.eclipse.equinox.p2.repository;bundle-version="2.3.0";visibility:=reexport,
19
 org.eclipse.equinox.p2.core;bundle-version="2.3.0";visibility:=reexport,
20
 org.eclipse.equinox.p2.engine;bundle-version="2.3.0";visibility:=reexport,
21
 org.eclipse.e4.ui.model.workbench;visibility:=reexport,
22
 org.eclipse.e4.ui.workbench;bundle-version="1.0.0";visibility:=reexport,
23
 org.eclipse.core.expressions;visibility:=reexport,
24
 org.eclipse.e4.core.contexts;bundle-version="1.6.0";visibility:=reexport,
25
 org.eclipse.osgi;bundle-version="3.12.100";visibility:=reexport,
26
 org.eclipse.equinox.ds;bundle-version="1.5.0";visibility:=reexport,
27
 org.eclipse.equinox.util;bundle-version="1.0.500";visibility:=reexport,
28
 org.eclipse.equinox.event;bundle-version="1.4.0";visibility:=reexport,
29
 org.txm.core;bundle-version="0.8.0";visibility:=reexport,
30
 org.txm.libs.batik;bundle-version="0.0.0";visibility:=reexport,
31
 org.txm.libs.args4j;bundle-version="1.0.0";visibility:=reexport,
32
 org.txm.tokenizer.core;bundle-version="1.0.0";visibility:=reexport,
33
 org.txm.searchengine.cqp.core;bundle-version="1.1.0";visibility:=reexport,
34
 org.txm.statsengine.core;visibility:=reexport,
35
 org.eclipse.ui.themes;bundle-version="1.2.1";visibility:=reexport,
36
 org.txm.annotation.core;visibility:=reexport,
37
 org.eclipse.ui.views;bundle-version="3.9.0";visibility:=reexport,
38
 org.txm.groovy.core;visibility:=reexport,
39
 org.txm.treetagger.core;visibility:=reexport,
40
 org.eclipse.equinox.p2.discovery.compatibility;bundle-version="1.0.201";visibility:=reexport,
41
 org.eclipse.e4.ui.workbench.renderers.swt;visibility:=reexport
42
Export-Package: junit.extensions,
43
 junit.framework,
44
 junit.runner,
45
 junit.textui,
46
 org.apache.commons.cli,
47
 org.apache.commons.lang,
48
 org.apache.commons.lang.builder,
49
 org.apache.commons.lang.enum,
50
 org.apache.commons.lang.enums,
51
 org.apache.commons.lang.exception,
52
 org.apache.commons.lang.math,
53
 org.apache.commons.lang.mutable,
54
 org.apache.commons.lang.text,
55
 org.apache.commons.lang.time,
56
 org.apache.log4j,
57
 org.apache.log4j.chainsaw,
58
 org.apache.log4j.config,
59
 org.apache.log4j.helpers,
60
 org.apache.log4j.jdbc,
61
 org.apache.log4j.jmx,
62
 org.apache.log4j.lf5,
63
 org.apache.log4j.lf5.util,
64
 org.apache.log4j.lf5.viewer,
65
 org.apache.log4j.lf5.viewer.categoryexplorer,
66
 org.apache.log4j.lf5.viewer.configure,
67
 org.apache.log4j.net,
68
 org.apache.log4j.nt,
69
 org.apache.log4j.or,
70
 org.apache.log4j.or.jms,
71
 org.apache.log4j.or.sax,
72
 org.apache.log4j.spi,
73
 org.apache.log4j.varia,
74
 org.apache.log4j.xml,
75
 org.eclipse.jface.fieldassist,
76
 org.hamcrest,
77
 org.hamcrest.core,
78
 org.hamcrest.internal,
79
 org.junit,
80
 org.junit.experimental.results,
81
 org.junit.experimental.runners,
82
 org.junit.experimental.theories,
83
 org.junit.experimental.theories.internal,
84
 org.junit.experimental.theories.suppliers,
85
 org.junit.internal,
86
 org.junit.internal.builders,
87
 org.junit.internal.matchers,
88
 org.junit.internal.requests,
89
 org.junit.internal.runners,
90
 org.junit.internal.runners.model,
91
 org.junit.internal.runners.statements,
92
 org.junit.matchers,
93
 org.junit.runner,
94
 org.junit.runner.manipulation,
95
 org.junit.runner.notification,
96
 org.junit.runners,
97
 org.junit.runners.model,
98
 org.txm.rcp,
99
 org.txm.rcp.actions,
100
 org.txm.rcp.adapters,
101
 org.txm.rcp.commands,
102
 org.txm.rcp.commands.editor,
103
 org.txm.rcp.commands.function,
104
 org.txm.rcp.commands.queryview,
105
 org.txm.rcp.commands.workspace,
106
 org.txm.rcp.corpuswizard,
107
 org.txm.rcp.editors,
108
 org.txm.rcp.editors.adaptableDataStructure,
109
 org.txm.rcp.editors.imports,
110
 org.txm.rcp.editors.imports.sections,
111
 org.txm.rcp.editors.input,
112
 org.txm.rcp.editors.listeners,
113
 org.txm.rcp.handlers,
114
 org.txm.rcp.handlers.export,
115
 org.txm.rcp.handlers.files,
116
 org.txm.rcp.handlers.results,
117
 org.txm.rcp.handlers.scripts,
118
 org.txm.rcp.jface,
119
 org.txm.rcp.log,
120
 org.txm.rcp.menu,
121
 org.txm.rcp.messages,
122
 org.txm.rcp.p2.plugins,
123
 org.txm.rcp.perspective,
124
 org.txm.rcp.preferences,
125
 org.txm.rcp.splashHandlers,
126
 org.txm.rcp.svg,
127
 org.txm.rcp.swt,
128
 org.txm.rcp.swt.dialog,
129
 org.txm.rcp.swt.listeners,
130
 org.txm.rcp.swt.provider,
131
 org.txm.rcp.swt.toolbar,
132
 org.txm.rcp.swt.widget,
133
 org.txm.rcp.swt.widget.parameters,
134
 org.txm.rcp.swt.widget.preferences,
135
 org.txm.rcp.swt.widget.structures,
136
 org.txm.rcp.testers,
137
 org.txm.rcp.utils,
138
 org.txm.rcp.views,
139
 org.txm.rcp.views.cmdparameters,
140
 org.txm.rcp.views.corpora,
141
 org.txm.rcp.views.debug,
142
 org.txm.rcp.views.fileexplorer,
143
 org.txm.rcp.wizard,
144
 swing2swt.layout
145
Bundle-Vendor: %Bundle-Vendor
146
Bundle-ActivationPolicy: lazy
147
Bundle-ClassPath: .,
148
 lib/commons-cli-1.2.jar,
149
 lib/commons-lang-2.4.jar,
150
 lib/junit-4.5.jar,
151
 lib/log4j-1.2.12.jar,
152
 swing2swt.jar
2
Export-Package: junit.extensions,junit.framework,junit.runner,junit.te
3
 xtui,org.apache.commons.cli,org.apache.commons.lang,org.apache.common
4
 s.lang.builder,org.apache.commons.lang.enum,org.apache.commons.lang.e
5
 nums,org.apache.commons.lang.exception,org.apache.commons.lang.math,o
6
 rg.apache.commons.lang.mutable,org.apache.commons.lang.text,org.apach
7
 e.commons.lang.time,org.apache.log4j,org.apache.log4j.chainsaw,org.ap
8
 ache.log4j.config,org.apache.log4j.helpers,org.apache.log4j.jdbc,org.
9
 apache.log4j.jmx,org.apache.log4j.lf5,org.apache.log4j.lf5.util,org.a
10
 pache.log4j.lf5.viewer,org.apache.log4j.lf5.viewer.categoryexplorer,o
11
 rg.apache.log4j.lf5.viewer.configure,org.apache.log4j.net,org.apache.
12
 log4j.nt,org.apache.log4j.or,org.apache.log4j.or.jms,org.apache.log4j
13
 .or.sax,org.apache.log4j.spi,org.apache.log4j.varia,org.apache.log4j.
14
 xml,org.eclipse.jface.fieldassist,org.hamcrest,org.hamcrest.core,org.
15
 hamcrest.internal,org.junit,org.junit.experimental.results,org.junit.
16
 experimental.runners,org.junit.experimental.theories,org.junit.experi
17
 mental.theories.internal,org.junit.experimental.theories.suppliers,or
18
 g.junit.internal,org.junit.internal.builders,org.junit.internal.match
19
 ers,org.junit.internal.requests,org.junit.internal.runners,org.junit.
20
 internal.runners.model,org.junit.internal.runners.statements,org.juni
21
 t.matchers,org.junit.runner,org.junit.runner.manipulation,org.junit.r
22
 unner.notification,org.junit.runners,org.junit.runners.model,org.txm.
23
 rcp,org.txm.rcp.actions,org.txm.rcp.adapters,org.txm.rcp.commands,org
24
 .txm.rcp.commands.editor,org.txm.rcp.commands.function,org.txm.rcp.co
25
 mmands.queryview,org.txm.rcp.commands.workspace,org.txm.rcp.corpuswiz
26
 ard,org.txm.rcp.editors,org.txm.rcp.editors.adaptableDataStructure,or
27
 g.txm.rcp.editors.imports,org.txm.rcp.editors.imports.sections,org.tx
28
 m.rcp.editors.input,org.txm.rcp.editors.listeners,org.txm.rcp.handler
29
 s,org.txm.rcp.handlers.export,org.txm.rcp.handlers.files,org.txm.rcp.
30
 handlers.results,org.txm.rcp.handlers.scripts,org.txm.rcp.jface,org.t
31
 xm.rcp.log,org.txm.rcp.menu,org.txm.rcp.messages,org.txm.rcp.p2.plugi
32
 ns,org.txm.rcp.perspective,org.txm.rcp.preferences,org.txm.rcp.splash
33
 Handlers,org.txm.rcp.svg,org.txm.rcp.swt,org.txm.rcp.swt.dialog,org.t
34
 xm.rcp.swt.listeners,org.txm.rcp.swt.provider,org.txm.rcp.swt.toolbar
35
 ,org.txm.rcp.swt.widget,org.txm.rcp.swt.widget.parameters,org.txm.rcp
36
 .swt.widget.preferences,org.txm.rcp.swt.widget.structures,org.txm.rcp
37
 .testers,org.txm.rcp.utils,org.txm.rcp.views,org.txm.rcp.views.cmdpar
38
 ameters,org.txm.rcp.views.corpora,org.txm.rcp.views.debug,org.txm.rcp
39
 .views.fileexplorer,org.txm.rcp.wizard,swing2swt.layout
40
Bundle-SymbolicName: org.txm.rcp;singleton:=true
153 41
Bundle-Version: 0.8.0.qualifier
154 42
Bundle-Name: %Bundle-Name
43
Bundle-ClassPath: .,lib/commons-cli-1.2.jar,lib/commons-lang-2.4.jar,l
44
 ib/junit-4.5.jar,lib/log4j-1.2.12.jar,swing2swt.jar
45
Require-Bundle: org.eclipse.ui;visibility:=reexport,org.eclipse.core.f
46
 ilesystem;bundle-version="1.2.0";visibility:=reexport,org.eclipse.ui.
47
 ide;visibility:=reexport,org.eclipse.ui.console;bundle-version="3.4.0
48
 ";visibility:=reexport,org.eclipse.jface.text;visibility:=reexport,or
49
 g.eclipse.ui.browser;bundle-version="3.2.300";visibility:=reexport,or
50
 g.eclipse.ui.forms;visibility:=reexport,org.eclipse.ui.editors;visibi
51
 lity:=reexport,org.eclipse.equinox.p2.ui;bundle-version="2.3.0";visib
52
 ility:=reexport,org.eclipse.equinox.p2.ui.sdk;bundle-version="1.0.300
53
 ";visibility:=reexport,org.eclipse.equinox.p2.ui.sdk.scheduler;bundle
54
 -version="1.2.0";visibility:=reexport,org.eclipse.e4.ui.css.swt.theme
55
 ;bundle-version="0.9.100";visibility:=reexport,org.eclipse.equinox.p2
56
 .operations;visibility:=reexport,org.eclipse.equinox.p2.ui.discovery;
57
 bundle-version="1.0.0";visibility:=reexport,org.eclipse.equinox.p2.me
58
 tadata;bundle-version="2.2.0";visibility:=reexport,org.eclipse.equino
59
 x.p2.discovery;bundle-version="1.0.200";visibility:=reexport,org.ecli
60
 pse.equinox.p2.repository;bundle-version="2.3.0";visibility:=reexport
61
 ,org.eclipse.equinox.p2.core;bundle-version="2.3.0";visibility:=reexp
62
 ort,org.eclipse.equinox.p2.engine;bundle-version="2.3.0";visibility:=
63
 reexport,org.eclipse.e4.ui.model.workbench;visibility:=reexport,org.e
64
 clipse.e4.ui.workbench;bundle-version="1.0.0";visibility:=reexport,or
65
 g.eclipse.core.expressions;visibility:=reexport,org.eclipse.e4.core.c
66
 ontexts;bundle-version="1.6.0";visibility:=reexport,org.eclipse.osgi;
67
 bundle-version="3.12.100";visibility:=reexport,org.eclipse.equinox.ds
68
 ;bundle-version="1.5.0";visibility:=reexport,org.eclipse.equinox.util
69
 ;bundle-version="1.0.500";visibility:=reexport,org.eclipse.equinox.ev
70
 ent;bundle-version="1.4.0";visibility:=reexport,org.txm.core;bundle-v
71
 ersion="0.8.0";visibility:=reexport,org.txm.libs.batik;bundle-version
72
 ="0.0.0";visibility:=reexport,org.txm.libs.args4j;bundle-version="1.0
73
 .0";visibility:=reexport,org.txm.tokenizer.core;bundle-version="1.0.0
74
 ";visibility:=reexport,org.txm.searchengine.cqp.core;bundle-version="
75
 1.1.0";visibility:=reexport,org.txm.statsengine.core;visibility:=reex
76
 port,org.eclipse.ui.themes;bundle-version="1.2.1";visibility:=reexpor
77
 t,org.txm.annotation.core;visibility:=reexport,org.eclipse.ui.views;b
78
 undle-version="3.9.0";visibility:=reexport,org.txm.groovy.core;visibi
79
 lity:=reexport,org.txm.treetagger.core;visibility:=reexport,org.eclip
80
 se.equinox.p2.discovery.compatibility;bundle-version="1.0.201";visibi
81
 lity:=reexport,org.eclipse.e4.ui.workbench.renderers.swt;visibility:=
82
 reexport
83
Bundle-ActivationPolicy: lazy
155 84
Bundle-ManifestVersion: 2
156 85
Bundle-Activator: org.txm.rcp.Activator
157
Bundle-SymbolicName: org.txm.rcp;singleton:=true
158
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
86
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
87
Bundle-Vendor: %Bundle-Vendor
159 88

  
tmp/org.txm.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="src" path="src/main/java"/>
4
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	<classpathentry exported="true" kind="con" path="org.eclipse.pde.core.requiredPlugins">
6
		<accessrules>
7
			<accessrule kind="accessible" pattern="**"/>
8
		</accessrules>
9
	</classpathentry>
10
	<classpathentry exported="true" kind="lib" path="lib/commons-cli-1.2.jar"/>
11
	<classpathentry exported="true" kind="lib" path="lib/commons-lang-2.4.jar"/>
12
	<classpathentry exported="true" kind="lib" path="lib/junit-4.5.jar"/>
13
	<classpathentry exported="true" kind="lib" path="lib/log4j-1.2.12.jar"/>
14
	<classpathentry kind="lib" path="swing2swt.jar"/>
15
	<classpathentry kind="output" path="bin"/>
16
</classpath>
3
	  <classpathentry kind="src" path="src/main/java"/>
4
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
5
	  <classpathentry exported="true"
6
                   kind="con"
7
                   path="org.eclipse.pde.core.requiredPlugins">
8
		    <accessrules>
9
			      <accessrule kind="accessible" pattern="**"/>
10
		    </accessrules>
11
	  </classpathentry>
12
	  <classpathentry exported="true" kind="lib" path="lib/commons-cli-1.2.jar"/>
13
	  <classpathentry exported="true" kind="lib" path="lib/commons-lang-2.4.jar"/>
14
	  <classpathentry exported="true" kind="lib" path="lib/junit-4.5.jar"/>
15
	  <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.12.jar"/>
16
	  <classpathentry kind="lib" path="swing2swt.jar"/>
17
	  <classpathentry kind="output" path="bin"/>
18
</classpath>
tmp/org.txm.libs.itext/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5
	<classpathentry exported="true" kind="lib" path="lib/iText-2.1.5.jar"/>
6
	<classpathentry kind="output" path="bin"/>
7
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
5
	  <classpathentry exported="true" kind="lib" path="lib/iText-2.1.5.jar"/>
6
	  <classpathentry kind="output" path="bin"/>
7
</classpath>
tmp/org.txm.libs.itext/META-INF/MANIFEST.MF (revision 2270)
1
Manifest-Version: 1.0
2
Bundle-ManifestVersion: 2
3
Bundle-Name: iText
4
Bundle-SymbolicName: org.txm.libs.itext
5
Bundle-Version: 2.1.5
6
Bundle-Vendor: itextpdf.com
7
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
8
Export-Package: com.lowagie.text,
9
 com.lowagie.text.exceptions,
10
 com.lowagie.text.factories,
11
 com.lowagie.text.html,
12
 com.lowagie.text.html.simpleparser,
13
 com.lowagie.text.pdf,
14
 com.lowagie.text.pdf.codec,
15
 com.lowagie.text.pdf.codec.wmf,
16
 com.lowagie.text.pdf.collection,
17
 com.lowagie.text.pdf.crypto,
18
 com.lowagie.text.pdf.draw,
19
 com.lowagie.text.pdf.events,
20
 com.lowagie.text.pdf.fonts,
21
 com.lowagie.text.pdf.fonts.cmaps,
22
 com.lowagie.text.pdf.hyphenation,
23
 com.lowagie.text.pdf.interfaces,
24
 com.lowagie.text.pdf.internal,
25
 com.lowagie.text.pdf.parser,
26
 com.lowagie.text.xml,
27
 com.lowagie.text.xml.simpleparser,
28
 com.lowagie.text.xml.xmp,
29
 com.lowagie.tools
30
Bundle-ClassPath: .,
31
 lib/iText-2.1.5.jar
1
Manifest-Version: 1.0
2
Bundle-SymbolicName: org.txm.libs.itext
3
Export-Package: com.lowagie.text,com.lowagie.text.exceptions,com.lowag
4
 ie.text.factories,com.lowagie.text.html,com.lowagie.text.html.simplep
5
 arser,com.lowagie.text.pdf,com.lowagie.text.pdf.codec,com.lowagie.tex
6
 t.pdf.codec.wmf,com.lowagie.text.pdf.collection,com.lowagie.text.pdf.
7
 crypto,com.lowagie.text.pdf.draw,com.lowagie.text.pdf.events,com.lowa
8
 gie.text.pdf.fonts,com.lowagie.text.pdf.fonts.cmaps,com.lowagie.text.
9
 pdf.hyphenation,com.lowagie.text.pdf.interfaces,com.lowagie.text.pdf.
10
 internal,com.lowagie.text.pdf.parser,com.lowagie.text.xml,com.lowagie
11
 .text.xml.simpleparser,com.lowagie.text.xml.xmp,com.lowagie.tools
12
Bundle-Name: iText
13
Bundle-Version: 2.1.5
14
Bundle-ClassPath: .,lib/iText-2.1.5.jar
15
Bundle-ManifestVersion: 2
16
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
17
Bundle-Vendor: itextpdf.com
18

  
tmp/org.txm.wordcloud.rcp/.classpath (revision 2270)
1 1
<?xml version="1.0" encoding="UTF-8"?>
2 2
<classpath>
3
	<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
4
	<classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		<accessrules>
6
			<accessrule kind="accessible" pattern="**"/>
7
		</accessrules>
8
	</classpathentry>
9
	<classpathentry kind="src" path="src"/>
10
	<classpathentry kind="output" path="bin"/>
11
</classpath>
3
	  <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
4
	  <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins">
5
		    <accessrules>
6
			      <accessrule kind="accessible" pattern="**"/>
7
		    </accessrules>
8
	  </classpathentry>
9
	  <classpathentry kind="src" path="src"/>
10
	  <classpathentry kind="output" path="bin"/>
11
</classpath>
tmp/org.txm.wordcloud.rcp/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.index.rcp;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.wordcloud.core;bundle-version="1.0.0";visibility:=reexport,
4
 org.txm.chartsengine.rcp;visibility:=reexport
5
Bundle-Vendor: Textometrie.org
6
Bundle-ActivationPolicy: lazy
2
Bundle-SymbolicName: org.txm.wordcloud.rcp;singleton:=true
3
Export-Package: org.txm.wordcloud.rcp.adapters,org.txm.wordcloud.rcp.e
4
 ditors,org.txm.wordcloud.rcp.handlers,org.txm.wordcloud.rcp.messages,
5
 org.txm.wordcloud.rcp.preferences
7 6
Bundle-Version: 1.0.0.qualifier
8 7
Bundle-Name: %Bundle-Name.0
8
Require-Bundle: org.txm.index.rcp;bundle-version="1.0.0";visibility:=r
9
 eexport,org.txm.wordcloud.core;bundle-version="1.0.0";visibility:=ree
10
 xport,org.txm.chartsengine.rcp;visibility:=reexport
11
Bundle-ActivationPolicy: lazy
9 12
Bundle-ManifestVersion: 2
10
Bundle-SymbolicName: org.txm.wordcloud.rcp;singleton:=true
11
Bundle-RequiredExecutionEnvironment: JavaSE-1.7
12
Export-Package: org.txm.wordcloud.rcp.adapters,
13
 org.txm.wordcloud.rcp.editors,
14
 org.txm.wordcloud.rcp.handlers,
15
 org.txm.wordcloud.rcp.messages,
16
 org.txm.wordcloud.rcp.preferences
13
Bundle-RequiredExecutionEnvironment: JavaSE-1.8
14
Bundle-Vendor: Textometrie.org
17 15

  
tmp/org.txm.core/META-INF/MANIFEST.MF (revision 2270)
1 1
Manifest-Version: 1.0
2
Require-Bundle: org.txm.utils.core;bundle-version="1.0.0";visibility:=reexport,
3
 org.txm.libs.groovy-all;bundle-version="1.0.0";visibility:=reexport,
4
 org.eclipse.core.runtime;bundle-version="3.10.0";visibility:=reexport,
5
 org.eclipse.osgi.util;bundle-version="3.2.0";visibility:=reexport,
6
 org.eclipse.core.net;visibility:=reexport,
7
 org.eclipse.osgi;visibility:=reexport,
8
 org.eclipse.ui.workbench;visibility:=reexport,
9
 org.eclipse.core.commands;visibility:=reexport,
10
 org.eclipse.core.resources;visibility:=reexport,
11
 org.txm.libs.office;bundle-version="0.0.0";visibility:=reexport,
12
 org.txm.libs.msoffice;bundle-version="0.0.0";visibility:=reexport,
13
 org.txm.libs.hsqldb;bundle-version="1.0.0";visibility:=reexport
14
Export-Package: .,
15
 EDU.oswego.cs.dl.util.concurrent,
16
 EDU.oswego.cs.dl.util.concurrent.misc,
17
 antlr,
18
 antlr.ASdebug,
19
 antlr.actions.cpp,
20
 antlr.actions.csharp,
21
 antlr.actions.java,
22
 antlr.actions.python,
23
 antlr.build,
24
 antlr.collections,
25
 antlr.collections.impl,
26
 antlr.debug,
27
 antlr.debug.misc,
28
 antlr.preprocessor,
29
 ch.randelshofer.quaqua,
30
 ch.randelshofer.quaqua.border,
31
 ch.randelshofer.quaqua.color,
32
 ch.randelshofer.quaqua.colorchooser,
33
 ch.randelshofer.quaqua.datatransfer,
34
 ch.randelshofer.quaqua.ext.base64,
35
 ch.randelshofer.quaqua.ext.batik.ext.awt,
36
 ch.randelshofer.quaqua.ext.batik.ext.awt.image,
37
 ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.tiff,
38
 ch.randelshofer.quaqua.ext.batik.ext.awt.image.codec.util,
39
 ch.randelshofer.quaqua.ext.batik.ext.awt.image.renderable,
40
 ch.randelshofer.quaqua.ext.batik.ext.awt.image.rendered,
41
 ch.randelshofer.quaqua.ext.batik.i18n,
42
 ch.randelshofer.quaqua.ext.batik.util,
43
 ch.randelshofer.quaqua.ext.nanoxml,
44
 ch.randelshofer.quaqua.filechooser,
45
 ch.randelshofer.quaqua.icon,
46
 ch.randelshofer.quaqua.images,
47
 ch.randelshofer.quaqua.jaguar,
48
 ch.randelshofer.quaqua.jaguar.filechooser,
49
 ch.randelshofer.quaqua.jaguar.images,
50
 ch.randelshofer.quaqua.leopard,
51
 ch.randelshofer.quaqua.leopard.filechooser,
52
 ch.randelshofer.quaqua.leopard.images,
53
 ch.randelshofer.quaqua.osx,
54
 ch.randelshofer.quaqua.panther,
55
 ch.randelshofer.quaqua.panther.filechooser,
56
 ch.randelshofer.quaqua.panther.images,
57
 ch.randelshofer.quaqua.subset,
58
 ch.randelshofer.quaqua.tiger,
59
 ch.randelshofer.quaqua.tiger.filechooser,
60
 ch.randelshofer.quaqua.tiger.images,
61
 ch.randelshofer.quaqua.util,
62
 com.birosoft.liquid,
63
 com.birosoft.liquid.borders,
64
 com.birosoft.liquid.icons,
65
 com.birosoft.liquid.skin,
66
 com.jgoodies.forms.builder,
67
 com.jgoodies.forms.debug,
68
 com.jgoodies.forms.factories,
69
 com.jgoodies.forms.layout,
70
 com.jgoodies.forms.util,
71
 com.jgoodies.looks,
72
 com.jgoodies.looks.common,
73
 com.jgoodies.looks.plastic,
74
 com.jgoodies.looks.plastic.icons,
75
 com.jgoodies.looks.plastic.theme,
76
 com.jgoodies.looks.windows,
77
 com.jgoodies.looks.windows.icons,
78
 com.jgoodies.looks.windows.icons.xp,
79
 com.sun.star.accessibility,
80
 com.sun.star.animations,
81
 com.sun.star.auth,
82
 com.sun.star.awt,
83
 com.sun.star.awt.grid,
84
 com.sun.star.awt.tree,
85
 com.sun.star.beans,
86
 com.sun.star.bridge,
87
 com.sun.star.bridge.oleautomation,
88
 com.sun.star.chart,
89
 com.sun.star.chart2,
90
 com.sun.star.chart2.data,
91
 com.sun.star.configuration,
92
 com.sun.star.configuration.backend,
93
 com.sun.star.connection,
94
 com.sun.star.container,
95
 com.sun.star.corba,
96
 com.sun.star.corba.giop,
97
 com.sun.star.corba.iiop,
98
 com.sun.star.corba.iop,
99
 com.sun.star.datatransfer,
100
 com.sun.star.datatransfer.clipboard,
101
 com.sun.star.datatransfer.dnd,
102
 com.sun.star.deployment,
103
 com.sun.star.deployment.test,
104
 com.sun.star.deployment.ui,
105
 com.sun.star.document,
106
 com.sun.star.drawing,
107
 com.sun.star.drawing.framework,
108
 com.sun.star.embed,
109
 com.sun.star.form,
110
 com.sun.star.form.binding,
111
 com.sun.star.form.inspection,
112
 com.sun.star.form.runtime,
113
 com.sun.star.form.submission,
114
 com.sun.star.form.validation,
115
 com.sun.star.formula,
116
 com.sun.star.frame,
117
 com.sun.star.frame.status,
118
 com.sun.star.gallery,
119
 com.sun.star.geometry,
120
 com.sun.star.graphic,
121
 com.sun.star.i18n,
122
 com.sun.star.inspection,
123
 com.sun.star.installation,
124
 com.sun.star.io,
125
 com.sun.star.java,
126
 com.sun.star.lang,
127
 com.sun.star.ldap,
128
 com.sun.star.lib.uno.typedesc,
129
 com.sun.star.lib.uno.typeinfo,
130
 com.sun.star.lib.util,
131
 com.sun.star.linguistic2,
132
 com.sun.star.loader,
133
 com.sun.star.logging,
134
 com.sun.star.mail,
135
 com.sun.star.media,
136
 com.sun.star.mozilla,
137
 com.sun.star.office,
138
 com.sun.star.oooimprovement,
139
 com.sun.star.packages,
140
 com.sun.star.packages.manifest,
141
 com.sun.star.packages.zip,
142
 com.sun.star.plugin,
143
 com.sun.star.presentation,
144
 com.sun.star.rdf,
145
 com.sun.star.reflection,
146
 com.sun.star.registry,
147
 com.sun.star.rendering,
148
 com.sun.star.report,
149
 com.sun.star.report.inspection,
150
 com.sun.star.report.meta,
151
 com.sun.star.resource,
152
 com.sun.star.scanner,
153
 com.sun.star.script,
154
 com.sun.star.script.browse,
155
 com.sun.star.script.provider,
156
 com.sun.star.sdb,
157
 com.sun.star.sdb.application,
158
 com.sun.star.sdb.tools,
159
 com.sun.star.sdbc,
160
 com.sun.star.sdbcx,
161
 com.sun.star.security,
162
 com.sun.star.setup,
... Ce différentiel a été tronqué car il excède la taille maximale pouvant être affichée.

Formats disponibles : Unified diff