|
From: <caw...@us...> - 2007-03-23 17:24:36
|
Revision: 2217
http://svn.sourceforge.net/rubyeclipse/?rev=2217&view=rev
Author: cawilliams
Date: 2007-03-23 10:24:35 -0700 (Fri, 23 Mar 2007)
Log Message:
-----------
set default path for rdoc and ri to blank string. otherwise if a new user happens to hit the page and doesn't want to deal with setting those paths they used to get forced to (because "rodc" and "ri" were not valid paths).
Modified Paths:
--------------
trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/PreferenceConstants.java
Modified: trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/PreferenceConstants.java
===================================================================
--- trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/PreferenceConstants.java 2007-03-23 15:16:20 UTC (rev 2216)
+++ trunk/org.rubypeople.rdt.ui/src/org/rubypeople/rdt/ui/PreferenceConstants.java 2007-03-23 17:24:35 UTC (rev 2217)
@@ -36,8 +36,8 @@
public static final String TEMPLATES_USE_CODEFORMATTER = "templatesUseCodeFormatter"; //$NON-NLS-1$
- private final static String DEFAULT_RDOC_CMD = "rdoc"; //$NON-NLS-1$
- private final static String DEFAULT_RI_CMD = "ri"; //$NON-NLS-1$
+ private final static String DEFAULT_RDOC_CMD = ""; //$NON-NLS-1$
+ private final static String DEFAULT_RI_CMD = ""; //$NON-NLS-1$
private static final String LOADPATH_RUBYVMLIBRARY_INDEX= PreferenceConstants.NEWPROJECT_JRELIBRARY_INDEX;
private static final String LOADPATH_RUBYVMLIBRARY_LIST= PreferenceConstants.NEWPROJECT_JRELIBRARY_LIST;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|