Author: Maital Ashkenazi
Date: 2010-10-26 07:37:46 -0700 (Tue, 26 Oct 2010)
New Revision: 22436
Modified:
csplugins/trunk/soc/maital/EnhancedSearch2/build.xml
csplugins/trunk/soc/maital/EnhancedSearch2/src/csplugins/enhanced/search/EnhancedSearchPanel.java
Log:
Making sure version 1.2 is compatible with cytoscape 2.8. Minor fixes to text
on right-click menu.
Modified: csplugins/trunk/soc/maital/EnhancedSearch2/build.xml
===================================================================
--- csplugins/trunk/soc/maital/EnhancedSearch2/build.xml 2010-10-26
05:50:36 UTC (rev 22435)
+++ csplugins/trunk/soc/maital/EnhancedSearch2/build.xml 2010-10-26
14:37:46 UTC (rev 22436)
@@ -12,7 +12,7 @@
<target name="init">
<tstamp />
<property name="name" value="EnhancedSearch" />
- <property name="version" value="2.0" />
+ <property name="version" value="1.2" />
<echo message="Building ${name} version ${version} ..." />
Modified:
csplugins/trunk/soc/maital/EnhancedSearch2/src/csplugins/enhanced/search/EnhancedSearchPanel.java
===================================================================
---
csplugins/trunk/soc/maital/EnhancedSearch2/src/csplugins/enhanced/search/EnhancedSearchPanel.java
2010-10-26 05:50:36 UTC (rev 22435)
+++
csplugins/trunk/soc/maital/EnhancedSearch2/src/csplugins/enhanced/search/EnhancedSearchPanel.java
2010-10-26 14:37:46 UTC (rev 22436)
@@ -76,8 +76,8 @@
private static final String ESP_LABEL = "Enhanced Search: ";
private static final String SEARCH_MENU_ITEM = "Search";
- private static final String REINDEX_MENU_ITEM = "Re-index and search";
- private static final String QUERY_SYNTAX_MENU_ITEM = "Quick reference
to query syntax";
+ private static final String REINDEX_MENU_ITEM = "Re-index and Search";
+ private static final String QUERY_SYNTAX_MENU_ITEM = "Enhanced Search
Query Syntax";
private static final String SEARCH_TOOLTIP = "Perform search";
private static final String REINDEX_TOOLTIP = "<html>"
@@ -267,7 +267,7 @@
{"Single term", "\"water channel\""},
{"Restrict to a specific attribute",
"annotation:aquaporin"},
{"At least one of the terms must exist", "transcription or
factor"},
- {"First term must exist but second must not",
"transcription not factor"},
+ {"First term must exist but second term must not",
"transcription not factor"},
{"Single character wildcard", "prot?in"},
{"Multiple character wildcard", "HSP*"},
{"Range search", "degree:[1 to 3]"},
@@ -278,9 +278,10 @@
JDialog dialog = new JDialog();
dialog.setContentPane(new JScrollPane(table));
- dialog.setSize(500,200);
+ dialog.setSize(650,200);
+ dialog.setTitle("Enhanced Search Query Syntax");
dialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
- dialog.setLocation(600,200);
+ dialog.setLocation(500,200);
dialog.setVisible(true);
}
--
You received this message because you are subscribed to the Google Groups
"cytoscape-cvs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/cytoscape-cvs?hl=en.