Révision 263
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/handlers/ComputeWordCloud.java (revision 263) | ||
---|---|---|
35 | 35 |
import org.eclipse.ui.handlers.HandlerUtil; |
36 | 36 |
import org.txm.chartsengine.rcp.SWTChartsComponentsProvider; |
37 | 37 |
import org.txm.index.core.functions.Index; |
38 |
import org.txm.lexicon.core.corpusengine.cqp.Lexicon; |
|
38 | 39 |
import org.txm.rcp.handlers.BaseAbstractHandler; |
39 | 40 |
import org.txm.rcpapplication.StatusLine; |
40 | 41 |
import org.txm.rcpapplication.commands.OpenBrowser; |
41 | 42 |
import org.txm.rcpapplication.views.corpora.CorporaView; |
42 | 43 |
import org.txm.searchengine.cqp.clientExceptions.CqiClientException; |
43 | 44 |
import org.txm.searchengine.cqp.corpus.Corpus; |
44 |
import org.txm.searchengine.cqp.corpus.Lexicon; |
|
45 | 45 |
import org.txm.searchengine.cqp.serverException.CqiServerError; |
46 | 46 |
import org.txm.utils.logger.Log; |
47 | 47 |
import org.txm.wordcloud.core.functions.WordCloud; |
tmp/org.txm.wordcloud.rcp/src/org/txm/wordcloud/rcp/messages/WordCloudUIMessages.java (revision 263) | ||
---|---|---|
1 | 1 |
package org.txm.wordcloud.rcp.messages; |
2 | 2 |
|
3 | 3 |
import org.eclipse.osgi.util.NLS; |
4 |
import org.txm.core.messages.TXMCoreMessages;
|
|
4 |
import org.txm.utils.messages.Utf8NLS;
|
|
5 | 5 |
|
6 | 6 |
public class WordCloudUIMessages extends NLS { |
7 | 7 |
|
... | ... | |
30 | 30 |
|
31 | 31 |
static { |
32 | 32 |
// initialize resource bundle |
33 |
TXMCoreMessages.initializeMessages(BUNDLE_NAME, WordCloudUIMessages.class);
|
|
33 |
Utf8NLS.initializeMessages(BUNDLE_NAME, WordCloudUIMessages.class);
|
|
34 | 34 |
} |
35 | 35 |
|
36 | 36 |
private WordCloudUIMessages() { |
tmp/org.txm.wordcloud.rcp/META-INF/MANIFEST.MF (revision 263) | ||
---|---|---|
10 | 10 |
org.txm.core;bundle-version="0.7.0", |
11 | 11 |
org.txm.rcp;bundle-version="0.7.8", |
12 | 12 |
org.txm.index.core;bundle-version="1.0.0" |
13 |
Bundle-Vendor: TXM |
|
13 |
Bundle-Vendor: Textometrie.org |
tmp/org.txm.textsbalance.rcp/src/org/txm/textsbalance/rcp/editors/BalanceEditor.java (revision 263) | ||
---|---|---|
70 | 70 |
|
71 | 71 |
|
72 | 72 |
// for group tests |
73 |
Composite p = this.getCommandParametersGroup();
|
|
73 |
Composite p = this.commandParametersGroup;
|
|
74 | 74 |
// for tab folder tests |
75 | 75 |
//Composite p = this.getCommandParametersComposite(); |
76 | 76 |
|
77 | 77 |
|
78 | 78 |
|
79 |
Group group = new Group(this.getCommandParametersGroup(), SWT.NONE);
|
|
79 |
Group group = new Group(this.commandParametersGroup, SWT.NONE);
|
|
80 | 80 |
|
81 | 81 |
group.setText("Group by:"); |
82 | 82 |
//group.setLayout(new RowLayout(SWT.VERTICAL)); |
... | ... | |
109 | 109 |
} |
110 | 110 |
|
111 | 111 |
|
112 |
p.pack(); |
|
113 |
|
|
114 |
|
|
115 | 112 |
suCombo.addSelectionListener(new SelectionListener() { |
116 | 113 |
|
117 | 114 |
@Override |
... | ... | |
163 | 160 |
|
164 | 161 |
|
165 | 162 |
this.compute(false); |
166 |
|
|
163 |
this.commandParametersGroup.pack(); |
|
164 |
|
|
167 | 165 |
} |
168 | 166 |
|
169 | 167 |
|
tmp/org.txm.textsbalance.rcp/plugin.xml (revision 263) | ||
---|---|---|
28 | 28 |
point="org.eclipse.ui.menus"> |
29 | 29 |
<menuContribution |
30 | 30 |
allPopups="false" |
31 |
locationURI="toolbar:org.txm.rcpapplication.toolbartools"> |
|
31 |
locationURI="toolbar:org.txm.rcpapplication.toolbartools?after=ComputeWordCloud">
|
|
32 | 32 |
<command |
33 | 33 |
commandId="ComputeBalance" |
34 | 34 |
icon="icons/balance.png" |
tmp/org.txm.textsbalance.rcp/META-INF/MANIFEST.MF (revision 263) | ||
---|---|---|
3 | 3 |
Bundle-Name: Texts Balance RCP |
4 | 4 |
Bundle-SymbolicName: org.txm.textsbalance.rcp;singleton:=true |
5 | 5 |
Bundle-Version: 1.0.0.qualifier |
6 |
Bundle-Vendor: TXM
|
|
6 |
Bundle-Vendor: Textometrie.org
|
|
7 | 7 |
Require-Bundle: org.txm.rcp;bundle-version="0.7.7", |
8 | 8 |
org.eclipse.core.runtime;bundle-version="3.10.0", |
9 | 9 |
org.eclipse.ui;bundle-version="3.106.1", |
tmp/org.txm.textsbalance.core/src/org/txm/textsbalance/core/preferences/TextsBalancePreferences.java (revision 263) | ||
---|---|---|
14 | 14 |
*/ |
15 | 15 |
public class TextsBalancePreferences extends TXMPreferences { |
16 | 16 |
|
17 |
|
|
18 | 17 |
// auto populate the preference node qualifier from the current bundle id |
19 | 18 |
public static final String PREFERENCES_NODE = FrameworkUtil.getBundle(TextsBalancePreferences.class).getSymbolicName(); |
20 | 19 |
|
tmp/org.txm.textsbalance.core/META-INF/MANIFEST.MF (revision 263) | ||
---|---|---|
1 | 1 |
Manifest-Version: 1.0 |
2 | 2 |
Bundle-ManifestVersion: 2 |
3 |
Bundle-Name: Texts Balance TBX
|
|
3 |
Bundle-Name: Texts Balance Core
|
|
4 | 4 |
Bundle-SymbolicName: org.txm.textsbalance.core;singleton:=true |
5 | 5 |
Bundle-Version: 1.0.0.qualifier |
6 | 6 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
... | ... | |
13 | 13 |
org.txm.chartsengine.core;bundle-version="1.0.0", |
14 | 14 |
org.txm.chartsengine.jfreechart.core;bundle-version="1.0.0", |
15 | 15 |
org.txm.chartsengine.r.core;bundle-version="1.0.0" |
16 |
Bundle-Vendor: TXM |
|
16 |
Bundle-Vendor: Textometrie.org |
tmp/org.txm.wordcloud.core/src/org/txm/wordcloud/core/functions/WordCloud.java (revision 263) | ||
---|---|---|
10 | 10 |
import org.txm.functions.Function; |
11 | 11 |
import org.txm.index.core.functions.Index; |
12 | 12 |
import org.txm.index.core.functions.Line; |
13 |
import org.txm.lexicon.core.corpusengine.cqp.Lexicon; |
|
13 | 14 |
import org.txm.searchengine.cqp.clientExceptions.CqiClientException; |
14 | 15 |
import org.txm.searchengine.cqp.corpus.Corpus; |
15 |
import org.txm.searchengine.cqp.corpus.Lexicon; |
|
16 | 16 |
import org.txm.searchengine.cqp.corpus.Property; |
17 | 17 |
import org.txm.searchengine.cqp.corpus.query.Query; |
18 | 18 |
import org.txm.searchengine.cqp.serverException.CqiServerError; |
tmp/org.txm.wordcloud.core/src/org/txm/wordcloud/core/chartsengine/r/RWordCloudChartCreator.java (revision 263) | ||
---|---|---|
2 | 2 |
|
3 | 3 |
import java.io.File; |
4 | 4 |
|
5 |
import org.txm.core.preferences.TXMPreferences; |
|
5 | 6 |
import org.txm.core.results.ITXMResult; |
6 | 7 |
import org.txm.chartsengine.r.core.RChartCreator; |
7 | 8 |
import org.txm.chartsengine.r.core.RChartsEngine; |
8 |
import org.txm.core.preferences.TXMPreferences; |
|
9 | 9 |
import org.txm.statsengine.core.StatException; |
10 | 10 |
import org.txm.statsengine.r.core.RWorkspace; |
11 |
import org.txm.statsengine.r.core.RWorkspaceException; |
|
11 |
import org.txm.statsengine.r.core.exceptions.RWorkspaceException;
|
|
12 | 12 |
import org.txm.wordcloud.core.functions.WordCloud; |
13 | 13 |
import org.txm.wordcloud.core.preferences.WordCloudPreferences; |
14 | 14 |
|
tmp/org.txm.wordcloud.core/META-INF/MANIFEST.MF (revision 263) | ||
---|---|---|
1 | 1 |
Manifest-Version: 1.0 |
2 | 2 |
Bundle-ManifestVersion: 2 |
3 |
Bundle-Name: WordCloud TBX
|
|
3 |
Bundle-Name: WordCloud Core
|
|
4 | 4 |
Bundle-SymbolicName: org.txm.wordcloud.core;singleton:=true |
5 | 5 |
Bundle-Version: 1.0.0.qualifier |
6 | 6 |
Bundle-RequiredExecutionEnvironment: JavaSE-1.6 |
... | ... | |
16 | 16 |
org.txm.wordcloud.core.messages, |
17 | 17 |
org.txm.wordcloud.core.preferences |
18 | 18 |
Import-Package: org.txm.chartsengine.core |
19 |
Bundle-Vendor: TXM |
|
19 |
Bundle-Vendor: Textometrie.org |
Formats disponibles : Unified diff