X-Git-Url: http://git.phpeclipse.com diff --git a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/UrlExpander.java b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/UrlExpander.java index 17cbdf5..88c6d42 100644 --- a/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/UrlExpander.java +++ b/net.sourceforge.phpeclipse.externaltools/src/net/sourceforge/phpdt/externaltools/variable/UrlExpander.java @@ -1,49 +1,53 @@ package net.sourceforge.phpdt.externaltools.variable; -import net.sourceforge.phpeclipse.PHPeclipsePlugin; +import net.sourceforge.phpeclipse.externaltools.ExternalToolsPlugin; import net.sourceforge.phpeclipse.ui.WebUI; import org.eclipse.core.runtime.IPath; import org.eclipse.jface.preference.IPreferenceStore; /** - * Expands a variable into a localhost/documentRoot URL string + * Expands a variable into a localhost/documentRoot URL string *
* This class is not intended to be extended by clients. *
*/ -public class UrlExpander extends ResourceExpander { //implements IVariableTextExpander { +public class UrlExpander extends ResourceExpander { // implements + // IVariableTextExpander { - /** - * Create an instance - */ - public UrlExpander() { - super(); - } + /** + * Create an instance + */ + public UrlExpander() { + super(); + } - /** - * Returns a string representation to a localhost/documentRoot URL - * for the given variable tag and value ornull
.
- *
- * @see IVariableTextExpander#getText(String, String, ExpandVariableContext)
- */
- public String getText(String varTag, String varValue, ExpandVariableContext context) {
- IPath path = getPath(varTag, varValue, context);
- if (path != null) {
- IPreferenceStore store = PHPeclipsePlugin.getDefault().getPreferenceStore();
- String localhostURL = path.toString();
- String lowerCaseFileName = localhostURL.toLowerCase();
- String documentRoot = store.getString(WebUI.PHP_DOCUMENTROOT_PREF);
- documentRoot = documentRoot.replace('\\', '/');
- documentRoot = documentRoot.toLowerCase();
+ /**
+ * Returns a string representation to a localhost/documentRoot URL for the
+ * given variable tag and value or null
.
+ *
+ * @see IVariableTextExpander#getText(String, String, ExpandVariableContext)
+ */
+ public String getText(String varTag, String varValue,
+ ExpandVariableContext context) {
+ IPath path = getPath(varTag, varValue, context);
+ if (path != null) {
+ IPreferenceStore store = ExternalToolsPlugin.getDefault()
+ .getPreferenceStore();
+ String localhostURL = path.toString();
+ String lowerCaseFileName = localhostURL.toLowerCase();
+ String documentRoot = store.getString(WebUI.PHP_DOCUMENTROOT_PREF);
+ documentRoot = documentRoot.replace('\\', '/');
+ documentRoot = documentRoot.toLowerCase();
- if (lowerCaseFileName.startsWith(documentRoot)) {
- localhostURL = localhostURL.substring(documentRoot.length());
- localhostURL = store.getString(WebUI.PHP_LOCALHOST_PREF)+ localhostURL;
- }
- return localhostURL;
- }
- return "