Revision 808
tmp/org.txm.textsbalance.feature/feature.xml (revision 808) | ||
---|---|---|
88 | 88 |
unpack="false"/> |
89 | 89 |
|
90 | 90 |
<plugin |
91 |
id="org.txm.textsbalance.tbx"
|
|
91 |
id="org.txm.textsbalance.core"
|
|
92 | 92 |
download-size="0" |
93 | 93 |
install-size="0" |
94 | 94 |
version="0.0.0" |
tmp/org.txm.synopticeditor.feature/feature.xml (revision 808) | ||
---|---|---|
67 | 67 |
</license> |
68 | 68 |
|
69 | 69 |
<requires> |
70 |
<import plugin="org.txm.core" version="0.7.0" match="greaterOrEqual"/> |
|
70 | 71 |
<import plugin="org.eclipse.ui"/> |
71 | 72 |
<import plugin="org.eclipse.core.runtime"/> |
72 | 73 |
<import plugin="org.txm.rcp" version="0.7.5" match="greaterOrEqual"/> |
73 |
<import plugin="org.txm.core" version="0.7.0" match="greaterOrEqual"/> |
|
74 | 74 |
<import plugin="org.eclipse.ui.browser" version="3.4.100" match="greaterOrEqual"/> |
75 |
<import plugin="org.txm.concordance.rcp" version="1.0.0" match="greaterOrEqual"/> |
|
76 |
<import plugin="org.eclipse.jface.databinding" version="1.6.200" match="greaterOrEqual"/> |
|
77 |
<import plugin="org.eclipse.jface.text" version="3.9.2" match="greaterOrEqual"/> |
|
78 |
<import plugin="org.txm.searchengine.core" version="1.0.0" match="greaterOrEqual"/> |
|
79 |
<import plugin="org.txm.searchengine.cqp.core" version="1.1.0" match="greaterOrEqual"/> |
|
75 | 80 |
</requires> |
76 | 81 |
|
77 | 82 |
<plugin |
tmp/org.txm.synopticeditor.rcp/build.properties (revision 808) | ||
---|---|---|
2 | 2 |
bin.includes = META-INF/,\ |
3 | 3 |
plugin.xml,\ |
4 | 4 |
icons/,\ |
5 |
OSGI-INF/l10n/bundle.properties,\ |
|
6 |
res/ |
|
5 |
res/,\ |
|
6 |
OSGI-INF/ |
tmp/org.txm.synopticeditor.rcp/src/org/txm/synopticedition/rcp/handlers/OpenEdition.java (revision 808) | ||
---|---|---|
30 | 30 |
import java.util.ArrayList; |
31 | 31 |
import java.util.List; |
32 | 32 |
|
33 |
import org.apache.commons.lang.StringUtils; |
|
33 | 34 |
import org.eclipse.core.commands.AbstractHandler; |
34 | 35 |
import org.eclipse.core.commands.ExecutionEvent; |
35 | 36 |
import org.eclipse.core.commands.ExecutionException; |
36 | 37 |
import org.eclipse.jface.viewers.IStructuredSelection; |
37 |
import org.eclipse.jface.window.Window; |
|
38 | 38 |
import org.eclipse.swt.widgets.Shell; |
39 | 39 |
import org.eclipse.ui.IWorkbenchPage; |
40 | 40 |
import org.eclipse.ui.IWorkbenchWindow; |
... | ... | |
42 | 42 |
import org.eclipse.ui.handlers.HandlerUtil; |
43 | 43 |
import org.txm.objects.BaseParameters; |
44 | 44 |
import org.txm.objects.Text; |
45 |
import org.txm.rcp.messages.TXMUIMessages; |
|
46 | 45 |
import org.txm.searchengine.cqp.corpus.Corpus; |
47 | 46 |
import org.txm.searchengine.cqp.corpus.MainCorpus; |
48 | 47 |
import org.txm.searchengine.cqp.corpus.Property; |
... | ... | |
55 | 54 |
import org.txm.synopticedition.rcp.messages.SynopticEditionUIMessages; |
56 | 55 |
import org.txm.utils.logger.Log; |
57 | 56 |
import org.w3c.dom.Element; |
58 |
import org.w3c.dom.NodeList; |
|
59 | 57 |
|
60 |
import cern.colt.Arrays; |
|
61 | 58 |
// TODO: Auto-generated Javadoc |
62 | 59 |
/** |
63 | 60 |
* Open a text edition from: a main corpus : the first text of the maincorpus a |
... | ... | |
106 | 103 |
return false; |
107 | 104 |
} |
108 | 105 |
} else { |
109 |
Log.info(SynopticEditionUIMessages.OpenEdition_3+Arrays.toString(editionsToOpen));
|
|
106 |
Log.info(SynopticEditionUIMessages.OpenEdition_3+StringUtils.join(editionsToOpen));
|
|
110 | 107 |
} |
111 | 108 |
|
112 | 109 |
editor = openEdition(c, editionsToOpen); |
tmp/org.txm.synopticeditor.rcp/src/org/txm/synopticedition/rcp/handlers/BackToText.java (revision 808) | ||
---|---|---|
35 | 35 |
|
36 | 36 |
import javax.sound.sampled.Line; |
37 | 37 |
|
38 |
import org.apache.commons.lang.StringUtils; |
|
38 | 39 |
import org.eclipse.core.commands.ExecutionEvent; |
39 | 40 |
import org.eclipse.core.commands.ExecutionException; |
40 | 41 |
import org.eclipse.e4.ui.workbench.modeling.EModelService; |
... | ... | |
62 | 63 |
import org.txm.synopticedition.rcp.messages.SynopticEditionUIMessages; |
63 | 64 |
import org.txm.utils.logger.Log; |
64 | 65 |
|
65 |
import cern.colt.Arrays; |
|
66 |
|
|
67 | 66 |
/** |
68 | 67 |
* Open a text edition from: a concordance Line |
69 | 68 |
* @author mdecorde. |
... | ... | |
186 | 185 |
return false; |
187 | 186 |
} |
188 | 187 |
} else { |
189 |
Log.info(SynopticEditionUIMessages.BackToText_5+Arrays.toString(editionsToOpen));
|
|
188 |
Log.info(SynopticEditionUIMessages.BackToText_5+StringUtils.join(editionsToOpen));
|
|
190 | 189 |
} |
191 | 190 |
|
192 | 191 |
attachedBrowserEditor = OpenEdition.openEdition(corpus, editionsToOpen); |
tmp/org.txm.rcp/rcpapplication.product (revision 808) | ||
---|---|---|
566 | 566 |
<feature id="org.eclipse.ecf.filetransfer.ssl.feature"/> |
567 | 567 |
<feature id="org.txm.statsengine.r.feature"/> |
568 | 568 |
<feature id="org.txm.searchengine.cqp.feature"/> |
569 |
<feature id="org.txm.synopticeditor.feature" version="1.0.0.qualifier"/>
|
|
569 |
<feature id="org.txm.synopticeditor.feature"/> |
|
570 | 570 |
</features> |
571 | 571 |
|
572 | 572 |
<configurations> |
Also available in: Unified diff