<import plugin="org.eclipse.swt"/>
<import plugin="org.eclipse.search"/>
<import plugin="org.eclipse.update.ui"/>
- <import plugin="net.sourceforge.phpeclipse.quantum.sql"/>
- <!-- <import plugin="com.quantum.Quantum"/> -->
+ <!-- <import plugin="net.sourceforge.phpeclipse.quantum.sql"/> -->
+ <import plugin="com.quantum.Quantum"/>
<import plugin="net.sourceforge.phpeclipse.webbrowser"/>
<import plugin="net.sourceforge.phpeclipse.core"/>
<import plugin="net.sourceforge.phpeclipse.ui"/>
</perspective>
</extension>
<extension
+ point="org.eclipse.ui.perspectiveExtensions">
+ <perspectiveExtension
+ targetID="net.sourceforge.phpeclipse.PHPPerspective">
+ <actionSet
+ id="net.sourceforge.phpeclipse.PHPActionSet">
+ </actionSet>
+ </perspectiveExtension>
+ </extension>
+ <extension
point="org.eclipse.ui.newWizards">
<category
name="%newWizardCategory.name"
isGoToPreviousNavigationTarget="false">
</specification>
</extension>
+
<extension
point="org.eclipse.ui.actionSets">
<actionSet
label="PHP/Apache"
- visible="true"
+ visible="false"
id="net.sourceforge.phpeclipse.PHPActionSet">
<menu
label="PHP/Apache"
toolbarPath="Normal"
id="net.sourceforge.phpeclipse.actions.PHPStartMySQLAction">
</action>
+ <action
+ label="Stop XAMPP"
+ icon="icons/obj16/xampp_stop.gif"
+ tooltip="Stop XAMPP"
+ class="net.sourceforge.phpeclipse.actions.PHPStopXAMPPAction"
+ menubarPath="net.sourceforge.phpeclipse.PHPMenu/phpeclipse"
+ toolbarPath="Normal"
+ id="net.sourceforge.phpeclipse.actions.PHPStopXAMPPAction">
+ </action>
+ <action
+ label="Start XAMPP"
+ icon="icons/obj16/xampp_start.gif"
+ tooltip="Start XAMPP"
+ class="net.sourceforge.phpeclipse.actions.PHPStartXAMPPAction"
+ menubarPath="net.sourceforge.phpeclipse.PHPMenu/phpeclipse"
+ toolbarPath="Normal"
+ id="net.sourceforge.phpeclipse.actions.PHPStartXAMPPAction">
+ </action>
</actionSet>
<actionSet
_php_run_pref=c:\\xampp\\php\\php.exe
_external_parser=c:\\xampp\\php\\php.exe -l -f {0}
_mysql_run_pref=c:\\xampp\\mysql\\bin\\mysqld-nt.exe
-_apache_run_pref=c:\\xampp\\xampp_start.exe
-__mysql_start=--standalone
+_apache_run_pref=c:\\xampp\\apache\\bin\\apache.exe
+_xampp_start_pref=c:\\xampp\\xampp_start.exe
+_xampp_stop_pref=c:\\xampp\\xampp_stop.exe
+__mysql_start=--standalone
__apache_start=-c \"DocumentRoot \"{0}\"\"
__apache_stop=-k shutdown
__apache_restart=-k restart
package net.sourceforge.phpdt.externaltools.launchConfigurations;
-/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. All rights reserved.
-This file is made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-**********************************************************************/
+/***********************************************************************************************************************************
+ * Copyright (c) 2000, 2002 IBM Corp. All rights reserved. This file is made available under the terms of the Common Public License
+ * v1.0 which accompanies this distribution, and is available at http://www.eclipse.org/legal/cpl-v10.html
+ **********************************************************************************************************************************/
import java.io.File;
public class ExternalToolsMainTab extends AbstractLaunchConfigurationTab {
protected Combo locationField;
+
protected Text workDirectoryField;
+
protected Button fileLocationButton;
+
protected Button workspaceLocationButton;
+
protected Button fileWorkingDirectoryButton;
+
protected Button workspaceWorkingDirectoryButton;
protected Button runBackgroundButton;
+
protected Text argumentField;
+
protected Button variableButton;
protected SelectionAdapter selectionAdapter;
}
/**
- * Creates the controls needed to edit the location
- * attribute of an external tool
+ * Creates the controls needed to edit the location attribute of an external tool
*
- * @param parent the composite to create the controls in
+ * @param parent
+ * the composite to create the controls in
*/
protected void createLocationComponent(Composite parent) {
Font font = parent.getFont();
data.widthHint = IDialogConstants.ENTRY_FIELD_WIDTH;
locationField.setLayoutData(data);
locationField.setFont(font);
- locationField.add( store.getString(PHPeclipsePlugin.PHP_RUN_PREF), 0);
- locationField.add( store.getString(PHPeclipsePlugin.APACHE_RUN_PREF), 1);
- locationField.add( store.getString(PHPeclipsePlugin.MYSQL_RUN_PREF), 2);
-
+ locationField.add(store.getString(PHPeclipsePlugin.PHP_RUN_PREF), 0);
+ locationField.add(store.getString(PHPeclipsePlugin.APACHE_RUN_PREF), 1);
+ locationField.add(store.getString(PHPeclipsePlugin.MYSQL_RUN_PREF), 2);
+ locationField.add(store.getString(PHPeclipsePlugin.XAMPP_START_PREF), 3);
+ locationField.add(store.getString(PHPeclipsePlugin.XAMPP_STOP_PREF), 4);
Composite buttonComposite = new Composite(parent, SWT.NONE);
layout = new GridLayout();
layout.marginWidth = 0;
createVerticalSpacer(buttonComposite, 1);
- workspaceLocationButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.&Browse_Workspace..._3"), null); //$NON-NLS-1$
+ workspaceLocationButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.&Browse_Workspace..._3"), null); //$NON-NLS-1$
workspaceLocationButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
handleWorkspaceLocationButtonSelected();
}
});
- fileLocationButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Brows&e_File_System..._4"), null); //$NON-NLS-1$
+ fileLocationButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.Brows&e_File_System..._4"), null); //$NON-NLS-1$
fileLocationButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
handleLocationButtonSelected();
}
/**
- * Creates the controls needed to edit the working directory
- * attribute of an external tool
+ * Creates the controls needed to edit the working directory attribute of an external tool
*
- * @param parent the composite to create the controls in
+ * @param parent
+ * the composite to create the controls in
*/
protected void createWorkDirectoryComponent(Composite parent) {
Font font = parent.getFont();
buttonComposite.setFont(font);
createVerticalSpacer(buttonComposite, 1);
- workspaceWorkingDirectoryButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Browse_Wor&kspace..._6"), null); //$NON-NLS-1$
+ workspaceWorkingDirectoryButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.Browse_Wor&kspace..._6"), null); //$NON-NLS-1$
workspaceWorkingDirectoryButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
handleWorkspaceWorkingDirectoryButtonSelected();
}
});
- fileWorkingDirectoryButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Browse_F&ile_System..._7"), null); //$NON-NLS-1$
+ fileWorkingDirectoryButton = createPushButton(buttonComposite, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.Browse_F&ile_System..._7"), null); //$NON-NLS-1$
fileWorkingDirectoryButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent evt) {
handleFileWorkingDirectoryButtonSelected();
}
/**
- * Creates the controls needed to edit the argument and
- * prompt for argument attributes of an external tool
- *
- * @param parent the composite to create the controls in
+ * Creates the controls needed to edit the argument and prompt for argument attributes of an external tool
+ *
+ * @param parent
+ * the composite to create the controls in
*/
protected void createArgumentComponent(Composite parent) {
Font font = parent.getFont();
}
});
- variableButton = createPushButton(parent, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Varia&bles..._2"), null); //$NON-NLS-1$
+ variableButton = createPushButton(parent, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsOptionTab.Varia&bles..._2"), null); //$NON-NLS-1$
variableButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent e) {
VariableSelectionDialog dialog = new VariableSelectionDialog(getShell());
});
Label instruction = new Label(parent, SWT.NONE);
- instruction.setText(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Note__Enclose_an_argument_containing_spaces_using_double-quotes_(__)._Not_applicable_for_variables._3")); //$NON-NLS-1$
+ instruction
+ .setText(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsOptionTab.Note__Enclose_an_argument_containing_spaces_using_double-quotes_(__)._Not_applicable_for_variables._3")); //$NON-NLS-1$
data = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
data.horizontalSpan = 2;
instruction.setLayoutData(data);
}
/**
- * Creates the controls needed to edit the run in background
- * attribute of an external tool
- *
- * @param parent the composite to create the controls in
+ * Creates the controls needed to edit the run in background attribute of an external tool
+ *
+ * @param parent
+ * the composite to create the controls in
*/
protected void createRunBackgroundComponent(Composite parent) {
runBackgroundButton = new Button(parent, SWT.CHECK);
- runBackgroundButton.setText(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Run_tool_in_bac&kground_4")); //$NON-NLS-1$
+ runBackgroundButton.setText(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsOptionTab.Run_tool_in_bac&kground_4")); //$NON-NLS-1$
GridData data = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
runBackgroundButton.setLayoutData(data);
runBackgroundButton.setFont(parent.getFont());
try {
workingDir = configuration.getAttribute(IExternalToolConstants.ATTR_WORKING_DIRECTORY, ""); //$NON-NLS-1$
} catch (CoreException ce) {
- ExternalToolsPlugin.getDefault().log(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Error_reading_configuration_10"), ce); //$NON-NLS-1$
+ ExternalToolsPlugin.getDefault().log(
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Error_reading_configuration_10"), ce); //$NON-NLS-1$
}
workDirectoryField.setText(workingDir);
workDirectoryField.addModifyListener(modifyListener);
try {
location = configuration.getAttribute(IExternalToolConstants.ATTR_LOCATION, ""); //$NON-NLS-1$
} catch (CoreException ce) {
- ExternalToolsPlugin.getDefault().log(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Error_reading_configuration_10"), ce); //$NON-NLS-1$
+ ExternalToolsPlugin.getDefault().log(
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Error_reading_configuration_10"), ce); //$NON-NLS-1$
}
locationField.setText(location);
locationField.addModifyListener(modifyListener);
try {
arguments = configuration.getAttribute(IExternalToolConstants.ATTR_TOOL_ARGUMENTS, ""); //$NON-NLS-1$
} catch (CoreException ce) {
- ExternalToolsPlugin.getDefault().log(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Error_reading_configuration_7"), ce); //$NON-NLS-1$
+ ExternalToolsPlugin.getDefault().log(
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Error_reading_configuration_7"), ce); //$NON-NLS-1$
}
argumentField.setText(arguments);
}
try {
runInBackgroud = configuration.getAttribute(IExternalToolConstants.ATTR_RUN_IN_BACKGROUND, false);
} catch (CoreException ce) {
- ExternalToolsPlugin.getDefault().log(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Error_reading_configuration_7"), ce); //$NON-NLS-1$
+ ExternalToolsPlugin.getDefault().log(
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Error_reading_configuration_7"), ce); //$NON-NLS-1$
}
runBackgroundButton.setSelection(runInBackgroud);
}
protected boolean validateLocation() {
String value = locationField.getText().trim();
if (value.length() < 1) {
- setErrorMessage(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.External_tool_location_cannot_be_empty_18")); //$NON-NLS-1$
+ setErrorMessage(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.External_tool_location_cannot_be_empty_18")); //$NON-NLS-1$
setMessage(null);
return false;
}
File file = new File(value);
if (!file.exists()) { // The file does not exist.
- setErrorMessage(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.External_tool_location_does_not_exist_19")); //$NON-NLS-1$
+ setErrorMessage(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.External_tool_location_does_not_exist_19")); //$NON-NLS-1$
return false;
}
if (!file.isFile()) {
- setErrorMessage(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.External_tool_location_specified_is_not_a_file_20")); //$NON-NLS-1$
+ setErrorMessage(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.External_tool_location_specified_is_not_a_file_20")); //$NON-NLS-1$
return false;
}
return true;
File file = new File(value);
if (!file.exists()) { // The directory does not exist.
- setErrorMessage(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.External_tool_working_directory_does_not_exist_or_is_invalid_21")); //$NON-NLS-1$
+ setErrorMessage(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsMainTab.External_tool_working_directory_does_not_exist_or_is_invalid_21")); //$NON-NLS-1$
return false;
}
}
}
/**
- * Prompts the user for a workspace location within the workspace and sets
- * the location as a String containing the workspace_loc variable or
- * <code>null</code> if no location was obtained from the user.
+ * Prompts the user for a workspace location within the workspace and sets the location as a String containing the workspace_loc
+ * variable or <code>null</code> if no location was obtained from the user.
*/
protected void handleWorkspaceLocationButtonSelected() {
ResourceSelectionDialog dialog;
- dialog = new ResourceSelectionDialog(getShell(), ResourcesPlugin.getWorkspace().getRoot(), ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Select_a_resource_22")); //$NON-NLS-1$
+ dialog = new ResourceSelectionDialog(getShell(), ResourcesPlugin.getWorkspace().getRoot(),
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.Select_a_resource_22")); //$NON-NLS-1$
dialog.open();
Object[] results = dialog.getResult();
if (results == null || results.length < 1) {
}
/**
- * Prompts the user for a working directory location within the workspace
- * and sets the working directory as a String containing the workspace_loc
- * variable or <code>null</code> if no location was obtained from the user.
+ * Prompts the user for a working directory location within the workspace and sets the working directory as a String containing
+ * the workspace_loc variable or <code>null</code> if no location was obtained from the user.
*/
protected void handleWorkspaceWorkingDirectoryButtonSelected() {
ContainerSelectionDialog containerDialog;
- containerDialog = new ContainerSelectionDialog(getShell(), ResourcesPlugin.getWorkspace().getRoot(), false, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.&Select_a_directory__23")); //$NON-NLS-1$
+ containerDialog = new ContainerSelectionDialog(getShell(), ResourcesPlugin.getWorkspace().getRoot(), false,
+ ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsMainTab.&Select_a_directory__23")); //$NON-NLS-1$
containerDialog.open();
Object[] resource = containerDialog.getResult();
String text = null;
/**
* Method getSelectionAdapter.
+ *
* @return SelectionListener
*/
protected SelectionListener getSelectionAdapter() {
private class VariableSelectionDialog extends SelectionDialog {
private ExternalToolVariableForm form;
+
private VariableSelectionDialog(Shell parent) {
super(parent);
setTitle(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.Select_variable_10")); //$NON-NLS-1$
}
+
protected Control createDialogArea(Composite parent) {
// Create the dialog area
Composite composite = (Composite) super.createDialogArea(parent);
ExternalToolVariable[] variables = ExternalToolsPlugin.getDefault().getArgumentVariableRegistry().getArgumentVariables();
- form = new ExternalToolVariableForm(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsOptionTab.&Choose_a_variable__11"), variables); //$NON-NLS-1$
+ form = new ExternalToolVariableForm(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsOptionTab.&Choose_a_variable__11"), variables); //$NON-NLS-1$
form.createContents(composite, new IGroupDialogPage() {
public GridData setButtonGridData(Button button) {
GridData data = new GridData(GridData.HORIZONTAL_ALIGN_FILL);
}
}
-}
+}
\ No newline at end of file
package net.sourceforge.phpdt.externaltools.launchConfigurations;
/**********************************************************************
-Copyright (c) 2002 IBM Corp. and others. All rights reserved.
-This file is made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-Â
-Contributors:
-**********************************************************************/
+ Copyright (c) 2002 IBM Corp. and others. All rights reserved.
+ This file is made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+ �
+ Contributors:
+ **********************************************************************/
import java.io.File;
import java.text.MessageFormat;
};
/**
- * Throws a core exception with an error status object built from
- * the given message, lower level exception, and error code.
+ * Throws a core exception with an error status object built from the given message, lower level exception, and error code.
*
- * @param message the status message
- * @param exception lower level exception associated with the
- * error, or <code>null</code> if none
- * @param code error code
+ * @param message
+ * the status message
+ * @param exception
+ * lower level exception associated with the error, or <code>null</code> if none
+ * @param code
+ * error code
*/
protected static void abort(String message, Throwable exception, int code) throws CoreException {
throw new CoreException(new Status(IStatus.ERROR, IExternalToolConstants.PLUGIN_ID, code, message, exception));
}
/**
- * Returns active variable context. The active variable context is used to
- * expand variable expressions. If the workspace is currently being built,
- * the context is associated with the project being built. Otherwise, the
- * context is associated with the selected resource.
+ * Returns active variable context. The active variable context is used to expand variable expressions. If the workspace is
+ * currently being built, the context is associated with the project being built. Otherwise, the context is associated with the
+ * selected resource.
*
* @return active variable context
*/
}
/**
- * Expands and returns the location attribute of the given launch
- * configuration, based on the given variable context. The location is
- * verified to point to an existing file, in the local file system.
+ * Expands and returns the location attribute of the given launch configuration, based on the given variable context. The location
+ * is verified to point to an existing file, in the local file system.
*
- * @param configuration launch configuration
- * @param context context used to expand variables
- * @return an absolute path to a file in the local file system
- * @throws CoreException if unable to retrieve the associated launch
- * configuration attribute, if unable to resolve any variables, or if the
- * resolved location does not point to an existing file in the local file
- * system
+ * @param configuration
+ * launch configuration
+ * @param context
+ * context used to expand variables
+ * @return an absolute path to a file in the local file system
+ * @throws CoreException
+ * if unable to retrieve the associated launch configuration attribute, if unable to resolve any variables, or if the
+ * resolved location does not point to an existing file in the local file system
*/
public static IPath getLocation(ILaunchConfiguration configuration, ExpandVariableContext context) throws CoreException {
String location = configuration.getAttribute(IExternalToolConstants.ATTR_LOCATION, (String) null);
if (location == null) {
- abort(MessageFormat.format(ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsUtil.Location_not_specified_by_{0}_1"), new String[] { configuration.getName()}), null, 0); //$NON-NLS-1$
+ abort(MessageFormat.format(ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsUtil.Location_not_specified_by_{0}_1"), new String[] { configuration.getName() }), null, 0); //$NON-NLS-1$
} else {
- MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages.getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
+ MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages
+ .getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
String expandedLocation = ToolUtil.expandFileLocation(location, context, status);
if (status.isOK()) {
if (expandedLocation == null || expandedLocation.length() == 0) {
- String msg = ExternalToolsModelMessages.format("DefaultRunnerContext.invalidLocation", new Object[] { configuration.getName()}); //$NON-NLS-1$
+ String msg = ExternalToolsModelMessages.format(
+ "DefaultRunnerContext.invalidLocation", new Object[] { configuration.getName() }); //$NON-NLS-1$
abort(msg, null, 0);
} else {
File file = new File(expandedLocation);
if (file.isFile()) {
return new Path(expandedLocation);
} else {
- String msg = ExternalToolsModelMessages.format("DefaultRunnerContext.invalidLocation", new Object[] { configuration.getName()}); //$NON-NLS-1$
+ String msg = ExternalToolsModelMessages.format(
+ "DefaultRunnerContext.invalidLocation", new Object[] { configuration.getName() }); //$NON-NLS-1$
abort(msg, null, 0);
}
}
}
/**
- * Expands and returns the working directory attribute of the given launch
- * configuration, based on the given variable context. Returns
- * <code>null</code> if a working directory is not specified. If specified,
- * the working is verified to point to an existing directory in the local
- * file system.
+ * Expands and returns the working directory attribute of the given launch configuration, based on the given variable context.
+ * Returns <code>null</code> if a working directory is not specified. If specified, the working is verified to point to an
+ * existing directory in the local file system.
*
- * @param configuration launch configuration
- * @param context context used to expand variables
- * @return an absolute path to a direcoty in the local file system, or
- * <code>null</code> if unspecified
- * @throws CoreException if unable to retrieve the associated launch
- * configuration attribute, if unable to resolve any variables, or if the
- * resolved location does not point to an existing directory in the local
- * file system
+ * @param configuration
+ * launch configuration
+ * @param context
+ * context used to expand variables
+ * @return an absolute path to a direcoty in the local file system, or <code>null</code> if unspecified
+ * @throws CoreException
+ * if unable to retrieve the associated launch configuration attribute, if unable to resolve any variables, or if the
+ * resolved location does not point to an existing directory in the local file system
*/
public static IPath getWorkingDirectory(ILaunchConfiguration configuration, ExpandVariableContext context) throws CoreException {
String location = configuration.getAttribute(IExternalToolConstants.ATTR_WORKING_DIRECTORY, (String) null);
if (location != null) {
- MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages.getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
+ MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages
+ .getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
String expandedLocation = ToolUtil.expandDirectoryLocation(location, context, status);
if (status.isOK()) {
if (expandedLocation != null && expandedLocation.length() > 0) {
if (path.isDirectory()) {
return new Path(expandedLocation);
} else {
- String msg = ExternalToolsModelMessages.format("DefaultRunnerContext.invalidDirectory", new Object[] { configuration.getName()}); //$NON-NLS-1$
+ String msg = ExternalToolsModelMessages.format(
+ "DefaultRunnerContext.invalidDirectory", new Object[] { configuration.getName() }); //$NON-NLS-1$
abort(msg, null, 0);
}
}
}
/**
- * Expands and returns the arguments attribute of the given launch
- * configuration, based on the given variable context. Returns
+ * Expands and returns the arguments attribute of the given launch configuration, based on the given variable context. Returns
* <code>null</code> if arguments are not specified.
*
- * @param configuration launch configuration
- * @param context context used to expand variables
- * @return an array of resolved arguments, or <code>null</code> if
- * unspecified
- * @throws CoreException if unable to retrieve the associated launch
- * configuration attribute, or if unable to resolve any variables
+ * @param configuration
+ * launch configuration
+ * @param context
+ * context used to expand variables
+ * @return an array of resolved arguments, or <code>null</code> if unspecified
+ * @throws CoreException
+ * if unable to retrieve the associated launch configuration attribute, or if unable to resolve any variables
*/
public static String[] getArguments(ILaunchConfiguration configuration, ExpandVariableContext context) throws CoreException {
String args = configuration.getAttribute(IExternalToolConstants.ATTR_TOOL_ARGUMENTS, (String) null);
if (args != null) {
- MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages.getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
+ MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsModelMessages
+ .getString("RunExternalToolAction.runProblem"), null); //$NON-NLS-1$;
String[] expandedArgs = ToolUtil.expandArguments(args, context, status);
if (status.isOK()) {
return expandedArgs;
}
/**
- * Returns the refresh scope specified by the given launch configuration or
- * <code>null</code> if none.
+ * Returns the refresh scope specified by the given launch configuration or <code>null</code> if none.
*
* @param configuration
* @return refresh scope
- * @throws CoreException if unable to access the associated attribute
+ * @throws CoreException
+ * if unable to access the associated attribute
*/
public static String getRefreshScope(ILaunchConfiguration configuration) throws CoreException {
return configuration.getAttribute(IExternalToolConstants.ATTR_REFRESH_SCOPE, (String) null);
}
/**
- * Returns whether the refresh scope specified by the given launch
- * configuration is recursive.
+ * Returns whether the refresh scope specified by the given launch configuration is recursive.
*
* @param configuration
* @return whether the refresh scope is recursive
- * @throws CoreException if unable to access the associated attribute
+ * @throws CoreException
+ * if unable to access the associated attribute
*/
public static boolean isRefreshRecursive(ILaunchConfiguration configuration) throws CoreException {
return configuration.getAttribute(IExternalToolConstants.ATTR_REFRESH_RECURSIVE, false);
/**
* Refreshes the resources as specified by the given launch configuration.
*
- * @param configuration launch configuration
- * @param context context used to expand variables
- * @param monitor progress monitor
- * @throws CoreException if an exception occurrs while refreshing resources
+ * @param configuration
+ * launch configuration
+ * @param context
+ * context used to expand variables
+ * @param monitor
+ * progress monitor
+ * @throws CoreException
+ * if an exception occurrs while refreshing resources
*/
public static void refreshResources(ILaunchConfiguration configuration, ExpandVariableContext context, IProgressMonitor monitor)
- throws CoreException {
+ throws CoreException {
String scope = getRefreshScope(configuration);
if (scope == null)
return;
ToolUtil.VariableDefinition varDef = ToolUtil.extractVariableTag(scope, 0);
if (varDef.start == -1 || varDef.end == -1 || varDef.name == null) {
- String msg = ExternalToolsModelMessages.format("DefaultRunnerContext.invalidRefreshVarFormat", new Object[] { configuration.getName()}); //$NON-NLS-1$
+ String msg = ExternalToolsModelMessages.format(
+ "DefaultRunnerContext.invalidRefreshVarFormat", new Object[] { configuration.getName() }); //$NON-NLS-1$
abort(msg, null, 0);
}
RefreshScopeVariableRegistry registry = ExternalToolsPlugin.getDefault().getRefreshVariableRegistry();
RefreshScopeVariable variable = registry.getRefreshVariable(varDef.name);
if (variable == null) {
- String msg = ExternalToolsModelMessages.format("DefaultRunnerContext.noRefreshVarNamed", new Object[] { configuration.getName(), varDef.name }); //$NON-NLS-1$
+ String msg = ExternalToolsModelMessages.format(
+ "DefaultRunnerContext.noRefreshVarNamed", new Object[] { configuration.getName(), varDef.name }); //$NON-NLS-1$
abort(msg, null, 0);
}
return;
monitor.beginTask(ExternalToolsModelMessages.getString("DefaultRunnerContext.refreshResources"), //$NON-NLS-1$
- resources.length);
+ resources.length);
- MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsLaunchConfigurationMessages.getString("ExternalToolsUtil.Exception(s)_occurred_during_refresh._2"), null); //$NON-NLS-1$
+ MultiStatus status = new MultiStatus(IExternalToolConstants.PLUGIN_ID, 0, ExternalToolsLaunchConfigurationMessages
+ .getString("ExternalToolsUtil.Exception(s)_occurred_during_refresh._2"), null); //$NON-NLS-1$
for (int i = 0; i < resources.length; i++) {
if (monitor.isCanceled())
break;
*
* @param configuration
* @return whether this tool is to be run in the background
- * @throws CoreException if unable to access the associated attribute
+ * @throws CoreException
+ * if unable to access the associated attribute
*/
public static boolean isBackground(ILaunchConfiguration configuration) throws CoreException {
return configuration.getAttribute(IExternalToolConstants.ATTR_RUN_IN_BACKGROUND, false);
}
/**
- * Returns a launch configuration from the given ICommand arguments. If the
- * given arguments are from an old-style external tool, an unsaved working
- * copy will be created from the arguments and returned.
+ * Returns a launch configuration from the given ICommand arguments. If the given arguments are from an old-style external tool,
+ * an unsaved working copy will be created from the arguments and returned.
*
- * @param commandArgs the builder ICommand arguments
- * @param newName a new name for the config if the one in the command is
- * invalid
- * @return a launch configuration, a launch configuration working copy, or
- * <code>null</code> if not possible.
+ * @param commandArgs
+ * the builder ICommand arguments
+ * @param newName
+ * a new name for the config if the one in the command is invalid
+ * @return a launch configuration, a launch configuration working copy, or <code>null</code> if not possible.
*/
public static ILaunchConfiguration configFromBuildCommandArgs(Map commandArgs) {
String configHandle = (String) commandArgs.get(LAUNCH_CONFIG_HANDLE);
return null;
}
}
+
/**
- * Executes an external progam and saves the LaunchConfiguration under external tools
- * @param command external tools command name
- * @param executable executable path i.e.c:\apache\apache.exe
- * @param arguments arguments for this configuration
- * @param background run this configuration in background mode
+ * Executes an external progam and saves the LaunchConfiguration under external tools
+ *
+ * @param command
+ * external tools command name
+ * @param executable
+ * executable path i.e.c:\apache\apache.exe
+ * @param arguments
+ * arguments for this configuration
+ * @param background
+ * run this configuration in background mode
*/
public static void execute(String command, String executable, String arguments, boolean background) {
+ execute(command, executable, null, arguments, background);
+ }
+
+
+ public static void execute(String command, String executable, String workingDirectory, String arguments, boolean background) {
ILaunchManager manager = DebugPlugin.getDefault().getLaunchManager();
ILaunchConfigurationType type = manager.getLaunchConfigurationType(IExternalToolConstants.ID_PROGRAM_LAUNCH_CONFIGURATION_TYPE);
//some exception handling
}
wc.setAttribute(IExternalToolConstants.ATTR_LOCATION, executable);
- wc.setAttribute(IExternalToolConstants.ATTR_TOOL_ARGUMENTS, arguments);
+ if (workingDirectory != null) {
+ wc.setAttribute(IExternalToolConstants.ATTR_WORKING_DIRECTORY, workingDirectory);
+ }
+ if (arguments != null) {
+ wc.setAttribute(IExternalToolConstants.ATTR_TOOL_ARGUMENTS, arguments);
+ }
wc.setAttribute(IExternalToolConstants.ATTR_RUN_IN_BACKGROUND, background);
// saving will add the configuration to the external tools configurations
}
}
-}
+}
\ No newline at end of file
* </p>
*/
public class JavaTextTools implements IPHPPartitions {
-// private static final String[] TOKENS = {
-// JSPScriptScanner.JSP_DEFAULT,
-// JSPScriptScanner.JSP_BRACKET };
- private final static String[] LEGAL_CONTENT_TYPES = new String[] {
- PHP_PHPDOC_COMMENT,
- PHP_MULTILINE_COMMENT,
- PHP_SINGLELINE_COMMENT,
- PHP_STRING_DQ,
+ // private static final String[] TOKENS = {
+ // JSPScriptScanner.JSP_DEFAULT,
+ // JSPScriptScanner.JSP_BRACKET };
+ private final static String[] LEGAL_CONTENT_TYPES = new String[] {
+ PHP_PHPDOC_COMMENT,
+ PHP_MULTILINE_COMMENT,
+ PHP_SINGLELINE_COMMENT,
+ PHP_STRING_DQ,
PHP_STRING_SQ };
-
+
private static XMLPartitionScanner HTML_PARTITION_SCANNER = null;
private static FastJavaPartitionScanner PHP_PARTITION_SCANNER = null;
// private final static String[] TYPES= new String[] { PHPPartitionScanner.PHP, PHPPartitionScanner.JAVA_DOC,
// PHPPartitionScanner.JAVA_MULTILINE_COMMENT };
-// private final static String[] TYPES = new String[] {
-// IPHPPartitions.PHP_PARTITIONING,
-// IPHPPartitions.PHP_PHPDOC_COMMENT,
-// // IPHPPartitions.HTML,
-// // IPHPPartitions.HTML_MULTILINE_COMMENT,
-// IPHPPartitions.JAVASCRIPT,
-// IPHPPartitions.CSS,
-// IPHPPartitions.SMARTY,
-// IPHPPartitions.SMARTY_MULTILINE_COMMENT };
+ // private final static String[] TYPES = new String[] {
+ // IPHPPartitions.PHP_PARTITIONING,
+ // IPHPPartitions.PHP_PHPDOC_COMMENT,
+ // // IPHPPartitions.HTML,
+ // // IPHPPartitions.HTML_MULTILINE_COMMENT,
+ // IPHPPartitions.JAVASCRIPT,
+ // IPHPPartitions.CSS,
+ // IPHPPartitions.SMARTY,
+ // IPHPPartitions.SMARTY_MULTILINE_COMMENT };
/**
* This tools' preference listener.
/** The SmartyDoc scanner */
private SmartyDocCodeScanner fSmartyDocScanner;
-
+
/** The Java partitions scanner. */
- private FastJavaPartitionScanner fPartitionScanner;
-
+ private FastJavaPartitionScanner fPartitionScanner;
+
/** The preference store */
private IPreferenceStore fPreferenceStore;
-
+
/** The XML Language text tools */
private XMLTextTools xmlTextTools;
+
/**
* The core preference store.
*
private PHPPartitionScanner jspPartitionScanner = null;
/** The JSP script subpartitions scanner */
-// private JSPScriptScanner jspScriptScanner;
-
+ // private JSPScriptScanner jspScriptScanner;
/** The PHP plain text scanner */
-// private RuleBasedScanner jspTextScanner;
-
+ // private RuleBasedScanner jspTextScanner;
/** The PHP brackets scanner */
-// private RuleBasedScanner jspBracketScanner;
-
+ // private RuleBasedScanner jspBracketScanner;
/**
* Creates a new Java text tools collection.
*
*/
public JavaTextTools(IPreferenceStore store, Preferences coreStore, boolean autoDisposeOnDisplayDispose) {
// super(store, TOKENS, );
-// REVISIT: preference store
- xmlTextTools = new XMLTextTools(
- XMLPlugin.getDefault().getPreferenceStore());
-
+ // REVISIT: preference store
+ xmlTextTools = new XMLTextTools(XMLPlugin.getDefault().getPreferenceStore());
+
colorManager = new JavaColorManager(autoDisposeOnDisplayDispose);
fPreferenceStore = store;
fPreferenceStore.addPropertyChangeListener(fPreferenceListener);
fSmartyScanner = new SmartyCodeScanner((JavaColorManager) colorManager, store);
fSmartyDocScanner = new SmartyDocCodeScanner((JavaColorManager) colorManager, store);
- fPartitionScanner= new FastJavaPartitionScanner();
+ fPartitionScanner = new FastJavaPartitionScanner();
-// jspScriptScanner = new JSPScriptScanner();
+ // jspScriptScanner = new JSPScriptScanner();
// fPartitionScanner = new FastJavaPartitionScanner();
// fPartitionScanner = new PHPPartitionScanner();
-// jspBracketScanner = new RuleBasedScanner();
-// jspBracketScanner.setDefaultReturnToken(new Token(JSPScriptScanner.JSP_BRACKET));
-// jspTextScanner = new RuleBasedScanner();
-// jspTextScanner.setDefaultReturnToken(new Token(JSPScriptScanner.JSP_DEFAULT));
+ // jspBracketScanner = new RuleBasedScanner();
+ // jspBracketScanner.setDefaultReturnToken(new Token(JSPScriptScanner.JSP_BRACKET));
+ // jspTextScanner = new RuleBasedScanner();
+ // jspTextScanner.setDefaultReturnToken(new Token(JSPScriptScanner.JSP_DEFAULT));
}
/**
- *
- */
- public XMLTextTools getXMLTextTools() {
- return xmlTextTools;
- }
+ *
+ */
+ public XMLTextTools getXMLTextTools() {
+ return xmlTextTools;
+ }
+
/**
* Disposes all the individual tools of this tools collection.
*/
} else if (extension.equalsIgnoreCase(".xml")) {
// xml
partitioner = createXMLPartitioner();
-// } else if (extension.equalsIgnoreCase(".js")) {
-// // javascript
-// partitioner = createJavaScriptPartitioner();
-// } else if (extension.equalsIgnoreCase(".css")) {
-// // cascading style sheets
-// partitioner = createCSSPartitioner();
+ // } else if (extension.equalsIgnoreCase(".js")) {
+ // // javascript
+ // partitioner = createJavaScriptPartitioner();
+ // } else if (extension.equalsIgnoreCase(".css")) {
+ // // cascading style sheets
+ // partitioner = createCSSPartitioner();
} else if (extension.equalsIgnoreCase(".tpl")) {
// smarty ?
partitioner = createSmartyPartitioner();
-// } else if (extension.equalsIgnoreCase(".inc")) {
-// // php include files ?
-// partitioner = createIncludePartitioner();
+ // } else if (extension.equalsIgnoreCase(".inc")) {
+ // // php include files ?
+ // partitioner = createIncludePartitioner();
}
-
+
if (partitioner == null) {
partitioner = createJSPPartitioner();
}
return partitioner;
}
-
/**
* Sets up the Java document partitioner for the given document for the given partitioning.
*
*
* @since 3.0
*/
-// public void setupJavaDocumentPartitioner(IDocument document, String partitioning, Object element) {
-// IDocumentPartitioner partitioner = createDocumentPartitioner(".php");
-//
-// // if (document instanceof IDocumentExtension3) {
-// // IDocumentExtension3 extension3= (IDocumentExtension3) document;
-// // extension3.setDocumentPartitioner(partitioning, partitioner);
-// // } else {
-// document.setDocumentPartitioner(partitioner);
-// // }
-// partitioner.connect(document);
-// }
-
+ // public void setupJavaDocumentPartitioner(IDocument document, String partitioning, Object element) {
+ // IDocumentPartitioner partitioner = createDocumentPartitioner(".php");
+ //
+ // // if (document instanceof IDocumentExtension3) {
+ // // IDocumentExtension3 extension3= (IDocumentExtension3) document;
+ // // extension3.setDocumentPartitioner(partitioning, partitioner);
+ // // } else {
+ // document.setDocumentPartitioner(partitioner);
+ // // }
+ // partitioner.connect(document);
+ // }
public void setupHTMLDocumentPartitioner(IDocument document, String partitioning, Object element) {
IDocumentPartitioner partitioner = createDocumentPartitioner(".html");
}
/**
- * Determines whether the preference change encoded by the given event
- * changes the behavior of one its contained components.
- *
- * @param event the event to be investigated
- * @return <code>true</code> if event causes a behavioral change
- * @since 2.0
- * @deprecated As of 3.0, replaced by {@link org.eclipse.jdt.ui.text.JavaSourceViewerConfiguration#affectsTextPresentation(PropertyChangeEvent)}
- */
-// public boolean affectsBehavior(PropertyChangeEvent event) {
-// return fCodeScanner.affectsBehavior(event)
-// || fMultilineCommentScanner.affectsBehavior(event)
-// || fSinglelineCommentScanner.affectsBehavior(event)
-// || fStringScanner.affectsBehavior(event)
-// || fPHPDocScanner.affectsBehavior(event);
-// }
-
+ * Determines whether the preference change encoded by the given event changes the behavior of one its contained components.
+ *
+ * @param event
+ * the event to be investigated
+ * @return <code>true</code> if event causes a behavioral change
+ * @since 2.0
+ * @deprecated As of 3.0, replaced by
+ * {@link org.eclipse.jdt.ui.text.JavaSourceViewerConfiguration#affectsTextPresentation(PropertyChangeEvent)}
+ */
+ // public boolean affectsBehavior(PropertyChangeEvent event) {
+ // return fCodeScanner.affectsBehavior(event)
+ // || fMultilineCommentScanner.affectsBehavior(event)
+ // || fSinglelineCommentScanner.affectsBehavior(event)
+ // || fStringScanner.affectsBehavior(event)
+ // || fPHPDocScanner.affectsBehavior(event);
+ // }
/**
* Adapts the behavior of the contained components to the change encoded in the given event.
*
fMultilineCommentScanner.adaptToPreferenceChange(event);
if (fSinglelineCommentScanner.affectsBehavior(event))
fSinglelineCommentScanner.adaptToPreferenceChange(event);
-// if (fStringScanner.affectsBehavior(event))
-// fStringScanner.adaptToPreferenceChange(event);
+ // if (fStringScanner.affectsBehavior(event))
+ // fStringScanner.adaptToPreferenceChange(event);
if (fPHPDocScanner.affectsBehavior(event))
fPHPDocScanner.adaptToPreferenceChange(event);
// if (fHTMLScanner.affectsBehavior(event))
fSmartyScanner.adaptToPreferenceChange(event);
if (fSmartyDocScanner.affectsBehavior(event))
fSmartyDocScanner.adaptToPreferenceChange(event);
-// if (XMLPlugin.getDefault().getXMLTextTools().affectsBehavior(event)) {
-// XMLPlugin.getDefault().getXMLTextTools().adaptToPreferenceChange(event);
-// }
+ // if (XMLPlugin.getDefault().getXMLTextTools().affectsBehavior(event)) {
+ // XMLPlugin.getDefault().getXMLTextTools().adaptToPreferenceChange(event);
+ // }
}
/**
* Return a partitioner for .html files.
*/
public IDocumentPartitioner createHTMLPartitioner() {
-// return new DefaultPartitioner(getHTMLPartitionScanner(), TYPES);
+ // return new DefaultPartitioner(getHTMLPartitionScanner(), TYPES);
return xmlTextTools.createXMLPartitioner();
}
-// private static IDocumentPartitioner createIncludePartitioner() {
-// // return new DefaultPartitioner(getPHPPartitionScanner(), TYPES);
-// return new DefaultPartitioner(getPHPPartitionScanner(), FastJavaPartitionScanner.PHP_PARTITION_TYPES);
-//
-// }
+ // private static IDocumentPartitioner createIncludePartitioner() {
+ // // return new DefaultPartitioner(getPHPPartitionScanner(), TYPES);
+ // return new DefaultPartitioner(getPHPPartitionScanner(), FastJavaPartitionScanner.PHP_PARTITION_TYPES);
+ //
+ // }
-// private static IDocumentPartitioner createJavaScriptPartitioner() {
-// return new DefaultPartitioner(getHTMLPartitionScanner(), TYPES);
-// }
+ // private static IDocumentPartitioner createJavaScriptPartitioner() {
+ // return new DefaultPartitioner(getHTMLPartitionScanner(), TYPES);
+ // }
/**
- * Return a partitioner for .php files.
+ * Return a partitioner for .php files.
*/
public IDocumentPartitioner createPHPPartitioner() {
// return new DefaultPartitioner(getPHPPartitionScanner(), TYPES);
return new DefaultPartitioner(getPHPPartitionScanner(), LEGAL_CONTENT_TYPES);
- }
+ }
private IDocumentPartitioner createJSPPartitioner() {
- return new PHPDocumentPartitioner(
- getJSPPartitionScanner(), getPHPPartitionScanner());
-// return new JSPDocumentPartitioner(getJSPPartitionScanner(), jspScriptScanner);
+ return new PHPDocumentPartitioner(getJSPPartitionScanner(), getPHPPartitionScanner());
+ // return new JSPDocumentPartitioner(getJSPPartitionScanner(), jspScriptScanner);
}
-
+
/**
*
*/
-// public IPartitionTokenScanner getJSPScriptScanner() {
-// return jspScriptScanner;
-// }
-
+ // public IPartitionTokenScanner getJSPScriptScanner() {
+ // return jspScriptScanner;
+ // }
private IDocumentPartitioner createSmartyPartitioner() {
return new DefaultPartitioner(getSmartyPartitionScanner(), XMLTextTools.TYPES);
}
private IDocumentPartitioner createXMLPartitioner() {
-// return new DefaultPartitioner(getXMLPartitionScanner(), XMLTextTools.TYPES);
+ // return new DefaultPartitioner(getXMLPartitionScanner(), XMLTextTools.TYPES);
return xmlTextTools.createXMLPartitioner();
}
-// private IDocumentPartitioner createCSSPartitioner() {
-// return new DefaultPartitioner(getHTMLPartitionScanner(), XMLTextTools.TYPES);
-// }
+ // private IDocumentPartitioner createCSSPartitioner() {
+ // return new DefaultPartitioner(getHTMLPartitionScanner(), XMLTextTools.TYPES);
+ // }
/**
* Return a scanner for creating html partitions.
*/
-// private static XMLPartitionScanner getHTMLPartitionScanner() {
-// // if (HTML_PARTITION_SCANNER == null)
-// // HTML_PARTITION_SCANNER = new HTMLPartitionScanner(IPHPPartitions.HTML_FILE);
-// // return HTML_PARTITION_SCANNER;^
-// if (HTML_PARTITION_SCANNER == null)
-// HTML_PARTITION_SCANNER = new XMLPartitionScanner(false);
-// return HTML_PARTITION_SCANNER;
-// }
-
+ // private static XMLPartitionScanner getHTMLPartitionScanner() {
+ // // if (HTML_PARTITION_SCANNER == null)
+ // // HTML_PARTITION_SCANNER = new HTMLPartitionScanner(IPHPPartitions.HTML_FILE);
+ // // return HTML_PARTITION_SCANNER;^
+ // if (HTML_PARTITION_SCANNER == null)
+ // HTML_PARTITION_SCANNER = new XMLPartitionScanner(false);
+ // return HTML_PARTITION_SCANNER;
+ // }
/**
* Return a scanner for creating php partitions.
- */
+ */
private FastJavaPartitionScanner getPHPPartitionScanner() {
-// if (PHP_PARTITION_SCANNER == null)
-// PHP_PARTITION_SCANNER = new FastJavaPartitionScanner(); //new PHPPartitionScanner(IPHPPartitions.PHP_FILE);
-// return PHP_PARTITION_SCANNER;
+ // if (PHP_PARTITION_SCANNER == null)
+ // PHP_PARTITION_SCANNER = new FastJavaPartitionScanner(); //new PHPPartitionScanner(IPHPPartitions.PHP_FILE);
+ // return PHP_PARTITION_SCANNER;
return fPartitionScanner;
}
*
* @return a JSP text scanner
*/
-// public RuleBasedScanner getJSPTextScanner() {
-// return jspTextScanner;
-// }
-
+ // public RuleBasedScanner getJSPTextScanner() {
+ // return jspTextScanner;
+ // }
/**
* Returns a scanner which is configured to scan plain text in JSP.
*
* @return a JSP text scanner
*/
-// public RuleBasedScanner getJSPBracketScanner() {
-// return jspBracketScanner;
-// }
-
+ // public RuleBasedScanner getJSPBracketScanner() {
+ // return jspBracketScanner;
+ // }
/**
* Return a scanner for creating smarty partitions.
*/
XML_PARTITION_SCANNER = new XMLPartitionScanner(false);
return XML_PARTITION_SCANNER;
}
-
+
private PHPPartitionScanner getJSPPartitionScanner() {
if (jspPartitionScanner == null)
jspPartitionScanner = new PHPPartitionScanner();
}
/**
- * Sets up the Java document partitioner for the given document for the default partitioning.
- *
- * @param document the document to be set up
- * @since 3.0
- */
- public void setupJavaDocumentPartitioner(IDocument document) {
- setupJavaDocumentPartitioner(document, IDocumentExtension3.DEFAULT_PARTITIONING);
- }
-
- /**
- * Sets up the Java document partitioner for the given document for the given partitioning.
- *
- * @param document the document to be set up
- * @param partitioning the document partitioning
- * @since 3.0
- */
- public void setupJavaDocumentPartitioner(IDocument document, String partitioning) {
- IDocumentPartitioner partitioner= createDocumentPartitioner();
- if (document instanceof IDocumentExtension3) {
- IDocumentExtension3 extension3= (IDocumentExtension3) document;
- extension3.setDocumentPartitioner(partitioning, partitioner);
- } else {
- document.setDocumentPartitioner(partitioner);
- }
- partitioner.connect(document);
- }
-
- /**
- * Returns this text tool's preference store.
- *
- * @return the preference store
- * @since 3.0
- */
- protected IPreferenceStore getPreferenceStore() {
- return fPreferenceStore;
- }
-
- /**
- * Returns this text tool's core preference store.
- *
- * @return the core preference store
- * @since 3.0
- */
- protected Preferences getCorePreferenceStore() {
- return fCorePreferenceStore;
- }
+ * Sets up the Java document partitioner for the given document for the default partitioning.
+ *
+ * @param document
+ * the document to be set up
+ * @since 3.0
+ */
+ public void setupJavaDocumentPartitioner(IDocument document) {
+ setupJavaDocumentPartitioner(document, IDocumentExtension3.DEFAULT_PARTITIONING);
+ }
+
+ /**
+ * Sets up the Java document partitioner for the given document for the given partitioning.
+ *
+ * @param document
+ * the document to be set up
+ * @param partitioning
+ * the document partitioning
+ * @since 3.0
+ */
+ public void setupJavaDocumentPartitioner(IDocument document, String partitioning) {
+ IDocumentPartitioner partitioner = createDocumentPartitioner();
+ if (document instanceof IDocumentExtension3) {
+ IDocumentExtension3 extension3 = (IDocumentExtension3) document;
+ extension3.setDocumentPartitioner(partitioning, partitioner);
+ } else {
+ document.setDocumentPartitioner(partitioner);
+ }
+ partitioner.connect(document);
+ }
+
+ /**
+ * Returns this text tool's preference store.
+ *
+ * @return the preference store
+ * @since 3.0
+ */
+ protected IPreferenceStore getPreferenceStore() {
+ return fPreferenceStore;
+ }
+
+ /**
+ * Returns this text tool's core preference store.
+ *
+ * @return the core preference store
+ * @since 3.0
+ */
+ protected Preferences getCorePreferenceStore() {
+ return fCorePreferenceStore;
+ }
}
\ No newline at end of file
/**********************************************************************
-Copyright (c) 2000, 2002 IBM Corp. and others.
-All rights reserved. This program and the accompanying materials
-are made available under the terms of the Common Public License v1.0
-which accompanies this distribution, and is available at
-http://www.eclipse.org/legal/cpl-v10.html
-
-Contributors:
- IBM Corporation - Initial implementation
- www.phpeclipse.de
-**********************************************************************/
+ Copyright (c) 2000, 2002 IBM Corp. and others.
+ All rights reserved. This program and the accompanying materials
+ are made available under the terms of the Common Public License v1.0
+ which accompanies this distribution, and is available at
+ http://www.eclipse.org/legal/cpl-v10.html
+
+ Contributors:
+ IBM Corporation - Initial implementation
+ www.phpeclipse.de
+ **********************************************************************/
package net.sourceforge.phpeclipse;
import net.sourceforge.phpdt.internal.ui.JavaElementAdapterFactory;
* Predefined prference constants
*/
public interface IPreferenceConstants {
- /**
- * Preference key suffix for bold text style preference keys.
- *
- * @since 2.1
- */
- public static final String EDITOR_BOLD_SUFFIX= "_bold"; //$NON-NLS-1$
-
- /**
- * Preference key suffix for italic text style preference keys.
- *
- * @since 3.0
- */
- public static final String EDITOR_ITALIC_SUFFIX= "_italic"; //$NON-NLS-1$
-
-// public static final String LOCALHOST_PREF = "_localhost";
-// public static final String DOCUMENTROOT_PREF = "_documentroot";
+ /**
+ * Preference key suffix for bold text style preference keys.
+ *
+ * @since 2.1
+ */
+ public static final String EDITOR_BOLD_SUFFIX = "_bold"; //$NON-NLS-1$
+
+ /**
+ * Preference key suffix for italic text style preference keys.
+ *
+ * @since 3.0
+ */
+ public static final String EDITOR_ITALIC_SUFFIX = "_italic"; //$NON-NLS-1$
+
+ // public static final String LOCALHOST_PREF = "_localhost";
+ // public static final String DOCUMENTROOT_PREF = "_documentroot";
+ public static final String XAMPP_START_PREF = "_xampp_start_pref";
+
+ public static final String XAMPP_STOP_PREF = "_xampp_stop_pref";
+
public static final String MYSQL_RUN_PREF = "_mysql_run_pref";
+
public static final String MYSQL_START_BACKGROUND = "_mysql_start_background";
+
public static final String MYSQL_PREF = "__mysql_start";
+
public static final String APACHE_RUN_PREF = "_apache_run_pref";
+
public static final String APACHE_START_BACKGROUND = "_apache_start_background";
+
public static final String APACHE_START_PREF = "__apache_start";
+
public static final String APACHE_STOP_BACKGROUND = "_apache_stop_background";
+
public static final String APACHE_STOP_PREF = "__apache_stop";
+
public static final String APACHE_RESTART_BACKGROUND = "_apache_restart_background";
+
public static final String APACHE_RESTART_PREF = "__apache_restart";
+
public static final String SHOW_OUTPUT_IN_CONSOLE = "_show_output_in_console";
+
public static final String PHP_RUN_PREF = "_php_run_pref";
+
public static final String EXTERNAL_PARSER_PREF = "_external_parser";
+
public static final String PHP_EXTENSION_PREFS = "_php_parser_extensions";
+
public static final String PHP_PARSER_DEFAULT = "_php_parser_default";
-// public static final String PHP_INTERNAL_PARSER = "_php_internal_parser";
-// public static final String PHP_EXTERNAL_PARSER = "_php_external_parser";
+
+ // public static final String PHP_INTERNAL_PARSER = "_php_internal_parser";
+ // public static final String PHP_EXTERNAL_PARSER = "_php_external_parser";
// public static final String PHP_PARSE_ON_SAVE = "_php_parse_on_save";
public static final String PHP_MULTILINE_COMMENT = "_php_multilineComment";
+
public static final String PHP_MULTILINE_COMMENT_BOLD = "_php_multilineComment_bold";
+
public static final String PHP_MULTILINE_COMMENT_ITALIC = "_php_multilineComment_italic";
+
public static final String PHP_MULTILINE_COMMENT_UNDERLINE = "_php_multilineComment_underline";
- /** The color key for operators and brackets in PHP code
- * (value <code>"__php_operator"</code>).
- * @since 3.0
- */
+
+ /**
+ * The color key for operators and brackets in PHP code (value <code>"__php_operator"</code>).
+ *
+ * @since 3.0
+ */
public static final String PHP_OPERATOR = "__php_operator"; //$NON-NLS-1$
-
- /** The color key for {} in PHP code
- * (value <code>"__php_brace_operator"</code>).
- * @since 3.0
- */
+
+ /**
+ * The color key for {} in PHP code (value <code>"__php_brace_operator"</code>).
+ *
+ * @since 3.0
+ */
public static final String PHP_BRACE_OPERATOR = "__php_brace_operator"; //$NON-NLS-1$
/**
- * A named preference that holds the color used to render operators and brackets.
- * <p>
- * Value is of type <code>String</code>. A RGB color value encoded as a string
- * using class <code>PreferenceConverter</code>
- * </p>
- *
- * @see org.eclipse.jface.resource.StringConverter
- * @see org.eclipse.jface.preference.PreferenceConverter
- * @since 3.0
- */
- public final static String EDITOR_PHP_OPERATOR_COLOR= PHP_OPERATOR;
-
- /**
- * A named preference that controls whether operators and brackets are rendered in bold.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_OPERATOR_BOLD= PHP_OPERATOR + EDITOR_BOLD_SUFFIX;
-
- /**
- * A named preference that controls whether operators and brackets are rendered in italic.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_OPERATOR_ITALIC= PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
-
- /**
- * A named preference that holds the color used to render operators and brackets.
- * <p>
- * Value is of type <code>String</code>. A RGB color value encoded as a string
- * using class <code>PreferenceConverter</code>
- * </p>
- *
- * @see org.eclipse.jface.resource.StringConverter
- * @see org.eclipse.jface.preference.PreferenceConverter
- * @since 3.0
- */
- public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR= PHP_BRACE_OPERATOR;
-
- /**
- * A named preference that controls whether operators and brackets are rendered in bold.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD= PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
-
- /**
- * A named preference that controls whether operators and brackets are rendered in italic.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC= PHP_BRACE_OPERATOR + EDITOR_ITALIC_SUFFIX;
-
- /** The color key for keyword 'return' in PHP code
- * (value <code>"__php_keyword_return"</code>).
- * @since 3.0
- */
- public static final String PHP_KEYWORD_RETURN= "__php_keyword_return"; //$NON-NLS-1$
+ * A named preference that holds the color used to render operators and brackets.
+ * <p>
+ * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
+ * </p>
+ *
+ * @see org.eclipse.jface.resource.StringConverter
+ * @see org.eclipse.jface.preference.PreferenceConverter
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_OPERATOR_COLOR = PHP_OPERATOR;
+
+ /**
+ * A named preference that controls whether operators and brackets are rendered in bold.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_OPERATOR_BOLD = PHP_OPERATOR + EDITOR_BOLD_SUFFIX;
+
+ /**
+ * A named preference that controls whether operators and brackets are rendered in italic.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_OPERATOR_ITALIC = PHP_OPERATOR + EDITOR_ITALIC_SUFFIX;
+
+ /**
+ * A named preference that holds the color used to render operators and brackets.
+ * <p>
+ * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
+ * </p>
+ *
+ * @see org.eclipse.jface.resource.StringConverter
+ * @see org.eclipse.jface.preference.PreferenceConverter
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_BRACE_OPERATOR_COLOR = PHP_BRACE_OPERATOR;
+
+ /**
+ * A named preference that controls whether operators and brackets are rendered in bold.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_BRACE_OPERATOR_BOLD = PHP_BRACE_OPERATOR + EDITOR_BOLD_SUFFIX;
+
+ /**
+ * A named preference that controls whether operators and brackets are rendered in italic.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_BRACE_OPERATOR_ITALIC = PHP_BRACE_OPERATOR + EDITOR_ITALIC_SUFFIX;
+
+ /**
+ * The color key for keyword 'return' in PHP code (value <code>"__php_keyword_return"</code>).
+ *
+ * @since 3.0
+ */
+ public static final String PHP_KEYWORD_RETURN = "__php_keyword_return"; //$NON-NLS-1$
+
+ /**
+ * A named preference that holds the color used to render the 'return' keyword.
+ * <p>
+ * Value is of type <code>String</code>. A RGB color value encoded as a string using class <code>PreferenceConverter</code>
+ * </p>
+ *
+ * @see org.eclipse.jface.resource.StringConverter
+ * @see org.eclipse.jface.preference.PreferenceConverter
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_KEYWORD_RETURN_COLOR = PHP_KEYWORD_RETURN;
+
/**
- * A named preference that holds the color used to render the 'return' keyword.
- * <p>
- * Value is of type <code>String</code>. A RGB color value encoded as a string
- * using class <code>PreferenceConverter</code>
- * </p>
- *
- * @see org.eclipse.jface.resource.StringConverter
- * @see org.eclipse.jface.preference.PreferenceConverter
- * @since 3.0
- */
- public final static String EDITOR_PHP_KEYWORD_RETURN_COLOR= PHP_KEYWORD_RETURN;
-
- /**
- * A named preference that controls whether 'return' keyword is rendered in bold.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD= PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX;
-
- /**
- * A named preference that controls whether 'return' keyword is rendered in italic.
- * <p>
- * Value is of type <code>Boolean</code>.
- * </p>
- *
- * @since 3.0
- */
- public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC= PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX;
-
- public static final String PHP_SINGLELINE_COMMENT = "_php_singlelineComment";
+ * A named preference that controls whether 'return' keyword is rendered in bold.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_KEYWORD_RETURN_BOLD = PHP_KEYWORD_RETURN + EDITOR_BOLD_SUFFIX;
+
+ /**
+ * A named preference that controls whether 'return' keyword is rendered in italic.
+ * <p>
+ * Value is of type <code>Boolean</code>.
+ * </p>
+ *
+ * @since 3.0
+ */
+ public final static String EDITOR_PHP_KEYWORD_RETURN_ITALIC = PHP_KEYWORD_RETURN + EDITOR_ITALIC_SUFFIX;
+
+ public static final String PHP_SINGLELINE_COMMENT = "_php_singlelineComment";
+
public static final String PHP_SINGLELINE_COMMENT_BOLD = "_php_singlelineComment_bold";//$NON-NLS-1$
+
public static final String PHP_SINGLELINE_COMMENT_ITALIC = "_php_singlelineComment_italic";//$NON-NLS-1$
+
public static final String PHP_SINGLELINE_COMMENT_UNDERLINE = "_php_singlelineComment_underline";//$NON-NLS-1$
+
public static final String PHP_TAG = "_php_tag";//$NON-NLS-1$
+
public static final String PHP_TAG_BOLD = "_php_tag_bold";//$NON-NLS-1$
+
public static final String PHP_TAG_ITALIC = "_php_tag_italic";//$NON-NLS-1$
+
public static final String PHP_TAG_UNDERLINE = "_php_tag_underline";//$NON-NLS-1$
+
public static final String PHP_KEYWORD = "_php_keyword";//$NON-NLS-1$
+
public static final String PHP_KEYWORD_BOLD = "_php_keyword_bold";//$NON-NLS-1$
+
public static final String PHP_KEYWORD_ITALIC = "_php_keyword_italic";//$NON-NLS-1$
+
public static final String PHP_KEYWORD_UNDERLINE = "_php_keyword_underline";//$NON-NLS-1$
+
public static final String PHP_VARIABLE = "_php_variable";//$NON-NLS-1$
+
public static final String PHP_VARIABLE_BOLD = "_php_variable_bold";//$NON-NLS-1$
+
public static final String PHP_VARIABLE_ITALIC = "_php_variable_italic";//$NON-NLS-1$
+
public static final String PHP_VARIABLE_UNDERLINE = "_php_variable_underline";//$NON-NLS-1$
+
public static final String PHP_TYPE = "_php_type";//$NON-NLS-1$
+
public static final String PHP_TYPE_BOLD = "_php_type_bold";//$NON-NLS-1$
+
public static final String PHP_TYPE_ITALIC = "_php_type_italic";//$NON-NLS-1$
+
public static final String PHP_TYPE_UNDERLINE = "_php_type_underline";//$NON-NLS-1$
+
public static final String PHP_CONSTANT = "_php_constant";//$NON-NLS-1$
+
public static final String PHP_CONSTANT_BOLD = "_php_constant_bold";//$NON-NLS-1$
+
public static final String PHP_CONSTANT_ITALIC = "_php_constant_italic";//$NON-NLS-1$
+
public static final String PHP_CONSTANT_UNDERLINE = "_php_constant_underline";//$NON-NLS-1$
+
public static final String PHP_FUNCTIONNAME = "_php_functionname";//$NON-NLS-1$
+
public static final String PHP_FUNCTIONNAME_BOLD = "_php_functionname_bold";//$NON-NLS-1$
+
public static final String PHP_FUNCTIONNAME_ITALIC = "_php_functionname_italic";//$NON-NLS-1$
+
public static final String PHP_FUNCTIONNAME_UNDERLINE = "_php_functionname_underline";//$NON-NLS-1$
+
public static final String PHP_STRING = "_php_string";//$NON-NLS-1$
+
public static final String PHP_STRING_BOLD = "_php_string_bold";
+
public static final String PHP_STRING_ITALIC = "_php_string_italic";
+
public static final String PHP_STRING_UNDERLINE = "_php_string_underline";
+
public static final String PHP_DEFAULT = "_php_default";
+
public static final String PHP_DEFAULT_BOLD = "_php_default_bold";
+
public static final String PHP_DEFAULT_ITALIC = "_php_default_italic";
+
public static final String PHP_DEFAULT_UNDERLINE = "_php_default_underline";
- public static final String TASK_TAG= "_php_comment_task_tag"; //$NON-NLS-1$
+
+ public static final String TASK_TAG = "_php_comment_task_tag"; //$NON-NLS-1$
+
public static final String TASK_TAG_BOLD = "_php_comment_task_tag_bold"; //$NON-NLS-1$
-
- /** The color key for PHPDoc keywords (<code>@foo</code>) in PHPDoc comments. */
+
+ /**
+ * The color key for PHPDoc keywords (<code>@foo</code>) in PHPDoc comments.
+ */
public static final String PHPDOC_KEYWORD = "_php_doc_keyword"; //$NON-NLS-1$
+
public static final String PHPDOC_KEYWORD_BOLD = "_php_doc_keyword_bold";
+
public static final String PHPDOC_KEYWORD_ITALIC = "_php_doc_keyword_italic";
+
public static final String PHPDOC_KEYWORD_UNDERLINE = "_php_doc_keyword_underline";
+
/** The color key for HTML tags (<code><foo></code>) in PHPDoc comments. */
public static final String PHPDOC_TAG = "_php_doc_tag"; //$NON-NLS-1$
+
public static final String PHPDOC_TAG_BOLD = "_php_doc_tag_bold";
+
public static final String PHPDOC_TAG_ITALIC = "_php_doc_tag_italic";
+
public static final String PHPDOC_TAG_UNDERLINE = "_php_doc_tag_underline";
+
/** The color key for PHPDoc links (<code>{foo}</code>) in PHPDoc comments. */
public static final String PHPDOC_LINK = "_php_doc_link"; //$NON-NLS-1$
+
public static final String PHPDOC_LINK_BOLD = "_php_doc_link_bold";
+
public static final String PHPDOC_LINK_ITALIC = "_php_doc_link_italic";
+
public static final String PHPDOC_LINK_UNDERLINE = "_php_doc_link_underline";
+
/** The color key for everthing in PHPDoc comments for which no other color is specified. */
public static final String PHPDOC_DEFAULT = "_php_doc_default"; //$NON-NLS-1$
+
public static final String PHPDOC_DEFAULT_BOLD = "_php_doc_default_bold";
+
public static final String PHPDOC_DEFAULT_ITALIC = "_php_doc_default_italic";
+
public static final String PHPDOC_DEFAULT_UNDERLINE = "_php_doc_default_underline";
// public static final String LINKED_POSITION_COLOR = "_linkedPositionColor";
// public final static String LINE_NUMBER_RULER = "_lineNumberRuler"; //$NON-NLS-1$
/** Preference key for the foreground color of the line numbers */
// public final static String LINE_NUMBER_COLOR = "_lineNumberColor"; //$NON-NLS-1$
-
// public final static String PREFERENCE_COLOR_BACKGROUND_SYSTEM_DEFAULT = "_defaultBackgroundColor"; //$NON-NLS-1$
// public final static String PREFERENCE_COLOR_BACKGROUND = "backgroundColor"; //$NON-NLS-1$
-
/** Preference key for content assist proposal color */
public final static String PROPOSALS_FOREGROUND = "content_assist_proposals_foreground"; //$NON-NLS-1$
+
/** Preference key for content assist proposal color */
public final static String PROPOSALS_BACKGROUND = "content_assist_proposals_background"; //$NON-NLS-1$
+
public static final String EDITOR_EVALUTE_TEMPORARY_PROBLEMS = null;
+
public static final String EDITOR_CORRECTION_INDICATION = null;
public static final String PHP_OBFUSCATOR_DEFAULT = "_php_obfuscator_default";
-// public static final String PHP_BOOKMARK_DEFAULT = "_php_bookmark_default";
-// public static final String PHP_LOCALHOST_PREF = "_php_localhost";
-// public static final String PHP_DOCUMENTROOT_PREF = "_php_documentroot";
-//
-// public static final String PHP_AUTO_PREVIEW_DEFAULT = "_auto_preview";
-// public static final String PHP_BRING_TO_TOP_PREVIEW_DEFAULT = "_bring_to_top_preview";
-// public static final String PHP_SHOW_HTML_FILES_LOCAL = "_show_html_files_local";
+ // public static final String PHP_BOOKMARK_DEFAULT = "_php_bookmark_default";
+ // public static final String PHP_LOCALHOST_PREF = "_php_localhost";
+ // public static final String PHP_DOCUMENTROOT_PREF = "_php_documentroot";
+ //
+ // public static final String PHP_AUTO_PREVIEW_DEFAULT = "_auto_preview";
+ // public static final String PHP_BRING_TO_TOP_PREVIEW_DEFAULT = "_bring_to_top_preview";
+ // public static final String PHP_SHOW_HTML_FILES_LOCAL = "_show_html_files_local";
}
\ No newline at end of file
public class PHPEclipseBasePreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
StringFieldEditor phpParserExtensionsSFE;
-
+ StringFieldEditor xamppStartSFE;
+ StringFieldEditor xamppStopSFE;
StringFieldEditor apacheStartSFE;
StringFieldEditor apacheStopSFE;
protected void performDefaults() {
phpParserExtensionsSFE.loadDefault();
+ xamppStartSFE.loadDefault();
+ xamppStopSFE.loadDefault();
apacheStartSFE.loadDefault();
apacheStopSFE.loadDefault();
apacheRestartSFE.loadDefault();
public boolean performOk() {
PHPFileUtil.setExtensins(null);
phpParserExtensionsSFE.store();
+ xamppStartSFE.store();
+ xamppStopSFE.store();
apacheStartSFE.store();
apacheStopSFE.store();
apacheRestartSFE.store();
apacheSettingsGroup.setLayoutData(new GridData(GridData.FILL_HORIZONTAL));
apacheSettingsGroup.setLayout(new GridLayout());
+
+ xamppStartSFE = new StringFieldEditor(IPreferenceConstants.XAMPP_START_PREF, PHPPreferencesMessages
+ .getString("PHPBasePreferencePage.apacheGroup.xampp_start"), apacheSettingsGroup);
+ xamppStartSFE.setPreferencePage(this);
+ xamppStartSFE.setPreferenceStore(getPreferenceStore());
+ xamppStartSFE.load();
+ new Label(apacheSettingsGroup, SWT.NONE);
+
+ xamppStopSFE = new StringFieldEditor(IPreferenceConstants.XAMPP_STOP_PREF, PHPPreferencesMessages
+ .getString("PHPBasePreferencePage.apacheGroup.xampp_stop"), apacheSettingsGroup);
+ xamppStopSFE.setPreferencePage(this);
+ xamppStopSFE.setPreferenceStore(getPreferenceStore());
+ xamppStopSFE.load();
+ new Label(apacheSettingsGroup, SWT.NONE);
+
apacheStartBFE = new BooleanFieldEditor(PHPeclipsePlugin.APACHE_START_BACKGROUND, PHPPreferencesMessages
.getString("PHPBasePreferencePage.apacheGroup.start_background"), apacheSettingsGroup);
apacheStartBFE.setPreferencePage(this);
store.setDefault(EXTERNAL_PARSER_PREF, "c:\\apache\\php\\php -l -f {0}");
store.setDefault(MYSQL_RUN_PREF, "c:\\apache\\mysql\\bin\\mysqld-nt.exe");
store.setDefault(APACHE_RUN_PREF, "c:\\apache\\apache.exe");
+ store.setDefault(XAMPP_START_PREF, "c:\\xampp\\xampp_start.exe");
+ store.setDefault(XAMPP_STOP_PREF, "c:\\xampp\\xampp_stop.exe");
} else {
store.setDefault(PHP_RUN_PREF, "/apache/php/php");
store.setDefault(EXTERNAL_PARSER_PREF, "/apache/php/php -l -f {0}");
store.setDefault(MYSQL_RUN_PREF, "/apache/mysql/bin/mysqld");
store.setDefault(APACHE_RUN_PREF, "/apache/apache");
+ store.setDefault(XAMPP_START_PREF, "xamp/xampp_start");
+ store.setDefault(XAMPP_STOP_PREF, "xampp/xampp_stop");
}
store.setDefault(MYSQL_PREF, "--standalone");
store.setDefault(APACHE_START_PREF, "-c \"DocumentRoot \"{0}\"\"");
-/*******************************************************************************
- * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This
- * program and the accompanying materials are made available under the terms of
- * the Common Public License v1.0 which accompanies this distribution, and is
- * available at http://www.eclipse.org/legal/cpl-v10.html
+/***********************************************************************************************************************************
+ * Copyright (c) 2000, 2002 IBM Corp. and others. All rights reserved. This program and the accompanying materials are made
+ * available under the terms of the Common Public License v1.0 which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/cpl-v10.html
*
* Contributors: www.phpeclipse.de
- ******************************************************************************/
+ **********************************************************************************************************************************/
package net.sourceforge.phpeclipse.actions;
-import java.sql.Connection;
-import java.sql.DatabaseMetaData;
-import java.sql.ResultSet;
import java.sql.SQLException;
-import java.util.ArrayList;
-import net.sourceforge.phpeclipse.PHPeclipsePlugin;
import net.sourceforge.phpeclipse.phpeditor.PHPEditor;
import net.sourceforge.phpeclipse.ui.WebUI;
import net.sourceforge.phpeclipse.ui.overlaypages.ProjectPrefUtil;
import org.eclipse.jface.text.ITextSelection;
import org.eclipse.jface.text.TextSelection;
import org.eclipse.jface.viewers.ISelection;
-import org.eclipse.jface.viewers.LabelProvider;
-import org.eclipse.jface.window.Window;
import org.eclipse.swt.graphics.Point;
import org.eclipse.ui.IEditorActionDelegate;
import org.eclipse.ui.IEditorPart;
import org.eclipse.ui.IWorkbenchWindow;
import org.eclipse.ui.PartInitException;
import org.eclipse.ui.actions.ActionDelegate;
-import org.eclipse.ui.dialogs.ListSelectionDialog;
-import org.eclipse.ui.internal.dialogs.ListContentProvider;
+import com.quantum.ExternalInterface;
import com.quantum.QuantumPlugin;
-import com.quantum.adapters.DatabaseAdapter;
-import com.quantum.model.Bookmark;
-import com.quantum.model.BookmarkCollection;
-import com.quantum.model.Entity;
-import com.quantum.model.EntityFactory;
import com.quantum.model.NotConnectedException;
-import com.quantum.sql.MultiSQLServer;
-import com.quantum.sql.SQLResultSetCollection;
-import com.quantum.sql.SQLResultSetResults;
-import com.quantum.sql.SQLResults;
-import com.quantum.ui.dialog.ExceptionDisplayDialog;
-import com.quantum.util.connection.ConnectionUtil;
import com.quantum.view.tableview.TableView;
-public class PHPOpenSQLTableEditorAction extends ActionDelegate implements
- IEditorActionDelegate {
+public class PHPOpenSQLTableEditorAction extends ActionDelegate implements IEditorActionDelegate {
private IWorkbenchWindow fWindow;
if (!selection.isEmpty()) {
if (selection instanceof TextSelection) {
action.setEnabled(true);
- } else if (fWindow.getActivePage() != null
- && fWindow.getActivePage().getActivePart() != null) {
+ } else if (fWindow.getActivePage() != null && fWindow.getActivePage().getActivePart() != null) {
//
}
}
}
private IWorkbenchPage getActivePage() {
- fWindow = fEditor.getEditorSite()
- .getWorkbenchWindow();
+ fWindow = fEditor.getEditorSite().getWorkbenchWindow();
IWorkbenchPage page = fWindow.getActivePage();
return page;
}
return editorInput.getFile().getParent();
}
- private IFile getIncludeFile(IProject project, IFileEditorInput editorInput,
- String relativeFilename) {
+ private IFile getIncludeFile(IProject project, IFileEditorInput editorInput, String relativeFilename) {
// IContainer container = getWorkingLocation(editorInput);
// String fullPath = project.getLocation().toString();
Path path = new Path(relativeFilename);
}
}
if (fEditor != null) {
- // TableView view = TableView.getInstance();
-
- // determine the current Project from a (file-based) Editor
fWindow = fEditor.getEditorSite().getWorkbenchWindow();
IFile f = ((IFileEditorInput) fEditor.getEditorInput()).getFile();
fProject = f.getProject();
-
- ITextSelection selection = (ITextSelection) fEditor
- .getSelectionProvider().getSelection();
- IDocument doc = fEditor.getDocumentProvider().getDocument(
- fEditor.getEditorInput());
- int pos = selection.getOffset();
- // System.out.println(selection.getText());
- String tableName = getSQLTableName(doc, pos);
-
- IViewPart viewPart = null;
- String view = "com.quantum.view.tableview.TableView";
- try {
- IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
- viewPart = page.findView(view);
- if (viewPart == null) {
- viewPart = page.showView(view);
- }
- page.bringToTop(viewPart);
- getTables((TableView) viewPart, fProject, tableName);
- } catch (PartInitException e) {
- e.printStackTrace();
+ String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(fProject, WebUI.PHP_BOOKMARK_DEFAULT);
+ if (bookmarkString != null && !bookmarkString.equals("")) {
+ ITextSelection selection = (ITextSelection) fEditor.getSelectionProvider().getSelection();
+ IDocument doc = fEditor.getDocumentProvider().getDocument(fEditor.getEditorInput());
+ int pos = selection.getOffset();
+ // System.out.println(selection.getText());
+ String tableName = getSQLTableName(doc, pos);
+ if (tableName != null && tableName.length() > 0)
+ try {
+ ExternalInterface.displayTable(bookmarkString, tableName);
+
+ IViewPart viewPart = null;
+ String view = "com.quantum.view.tableview.TableView";
+ try {
+ IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
+ viewPart = page.findView(view);
+ if (viewPart == null) {
+ viewPart = page.showView(view);
+ }
+ page.bringToTop(viewPart);
+ } catch (PartInitException e) {
+ e.printStackTrace();
+ }
+ } catch (NotConnectedException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ } catch (SQLException e) {
+ // TODO Auto-generated catch block
+ e.printStackTrace();
+ }
}
+ //
+ // IViewPart viewPart = null;
+ // String view = "com.quantum.view.tableview.TableView";
+ // try {
+ // IWorkbenchPage page = QuantumPlugin.getDefault().getActivePage();
+ // viewPart = page.findView(view);
+ // if (viewPart == null) {
+ // viewPart = page.showView(view);
+ // }
+ // page.bringToTop(viewPart);
+ // getTables((TableView) viewPart, fProject, tableName);
+ // } catch (PartInitException e) {
+ // e.printStackTrace();
+ // }
+
}
}
while (position >= 0) {
character = doc.getChar(position);
- if (Character.isWhitespace(character) || (character == '\"')
- || (character == '\'') || (character == '\r')
+ if (Character.isWhitespace(character) || (character == '\"') || (character == '\'') || (character == '\r')
|| (character == '\n'))
break;
--position;
while (position < length) {
character = doc.getChar(position);
- if (Character.isWhitespace(character) || (character == '\"')
- || (character == '\'') || (character == '\r')
+ if (Character.isWhitespace(character) || (character == '\"') || (character == '\'') || (character == '\r')
|| (character == '\n'))
break;
++position;
return "";
}
- public void getTables(TableView tableView, IProject project, String tableName) {
- // Get The Database bookmark from the Quantum SQL plugin:
- BookmarkCollection sqlBookMarks = BookmarkCollection.getInstance();
- if (sqlBookMarks != null) {
- String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(project,
- WebUI.PHP_BOOKMARK_DEFAULT);
- if (bookmarkString != null && !bookmarkString.equals("")) {
- Bookmark bookmark = sqlBookMarks.find(bookmarkString);
- ArrayList sqlList = new ArrayList();
- if (bookmark != null && !bookmark.isConnected()) {
- new ConnectionUtil().connect(bookmark, null);
- }
- if (bookmark != null && bookmark.isConnected()) {
- try {
- Connection connection = bookmark.getConnection();
- DatabaseMetaData metaData = connection.getMetaData();
- ConnectionUtil connectionUtil = new ConnectionUtil();
- Entity entity;
- DatabaseAdapter adapter;
-
- if (metaData != null) {
- String columnName;
- String prefixWithoutDollar = tableName;
- if (prefixWithoutDollar.charAt(0) == '$') {
- prefixWithoutDollar = prefixWithoutDollar.substring(1);
- }
- ResultSet set;
- set = metaData.getTables(null, null, "%" + prefixWithoutDollar
- + "%", null);
- while (set.next()) {
- tableName = set.getString("TABLE_NAME");
- tableName = (tableName == null) ? "" : tableName.trim();
- if (tableName != null && tableName.length() > 0) {
- sqlList.add(tableName);
- }
- }
- set.close();
- EntityFactory entityFactory = EntityFactory.getInstance();
- if (sqlList.size() == 1) {
- adapter = bookmark.getAdapter();
- entity = entityFactory.create(bookmark, null, (String) sqlList
- .get(0), Entity.TABLE_TYPE, false);
- String query = adapter.getTableQuery(entity.getQualifiedName());
-
- try {
- SQLResults results = MultiSQLServer.getInstance().execute(
- bookmark, connectionUtil.connect(bookmark, fWindow.getShell()),
- entity, query);
-
- if (results != null && results.isResultSet()) {
- SQLResultSetCollection.getInstance().addSQLResultSet(
- (SQLResultSetResults) results);
- }
- } catch (SQLException e) {
- ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
- }
- // tableView.loadTable(entityFactory.create(
- // bookmark, null,
- // (String) sqlList.get(0),
- // Entity.TABLE_TYPE));
- } else if (sqlList.size() > 1) {
- ListSelectionDialog listSelectionDialog = new ListSelectionDialog(
- PHPeclipsePlugin.getDefault().getWorkbench()
- .getActiveWorkbenchWindow().getShell(), sqlList,
- new ListContentProvider(), new LabelProvider(),
- "Select the SQL table to open.");
- listSelectionDialog.setTitle("Multiple tablenames found");
- if (listSelectionDialog.open() == Window.OK) {
- Object[] locations = listSelectionDialog.getResult();
- if (locations != null) {
- for (int i = 0; i < locations.length; i++) {
- adapter = bookmark.getAdapter();
- entity = entityFactory.create(bookmark, null,
- (String) locations[i], Entity.TABLE_TYPE, false);
- String query = adapter.getTableQuery(entity
- .getQualifiedName());
-
- try {
- SQLResults results = MultiSQLServer.getInstance()
- .execute(bookmark,
- connectionUtil.connect(bookmark, fWindow.getShell()),
- entity, query);
-
- if (results != null && results.isResultSet()) {
- SQLResultSetCollection.getInstance().addSQLResultSet(
- (SQLResultSetResults) results);
- }
- } catch (SQLException e) {
- ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
- }
-
- // tableView
- // .loadTable(entityFactory
- // .create(
- // bookmark,
- // null,
- // (String) locations[i],
- // Entity.TABLE_TYPE));
- }
-
- }
- }
- }
- }
- } catch (NotConnectedException e) {
- // ignore this - not mission critical
- } catch (SQLException e) {
- e.printStackTrace();
- }
- }
- }
- }
- }
+ // public void getTables(TableView tableView, IProject project, String tableName) {
+ // // Get The Database bookmark from the Quantum SQL plugin:
+ // BookmarkCollection sqlBookMarks = BookmarkCollection.getInstance();
+ // if (sqlBookMarks != null) {
+ // String bookmarkString = ProjectPrefUtil.getMiscProjectsPreferenceValue(project,
+ // WebUI.PHP_BOOKMARK_DEFAULT);
+ // if (bookmarkString != null && !bookmarkString.equals("")) {
+ // Bookmark bookmark = sqlBookMarks.find(bookmarkString);
+ // ArrayList sqlList = new ArrayList();
+ // if (bookmark != null && !bookmark.isConnected()) {
+ // new ConnectionUtil().connect(bookmark, null);
+ // }
+ // if (bookmark != null && bookmark.isConnected()) {
+ // try {
+ // Connection connection = bookmark.getConnection();
+ // DatabaseMetaData metaData = connection.getMetaData();
+ // ConnectionUtil connectionUtil = new ConnectionUtil();
+ // Entity entity;
+ // DatabaseAdapter adapter;
+ //
+ // if (metaData != null) {
+ // String columnName;
+ // String prefixWithoutDollar = tableName;
+ // if (prefixWithoutDollar.charAt(0) == '$') {
+ // prefixWithoutDollar = prefixWithoutDollar.substring(1);
+ // }
+ // ResultSet set;
+ // set = metaData.getTables(null, null, "%" + prefixWithoutDollar
+ // + "%", null);
+ // while (set.next()) {
+ // tableName = set.getString("TABLE_NAME");
+ // tableName = (tableName == null) ? "" : tableName.trim();
+ // if (tableName != null && tableName.length() > 0) {
+ // sqlList.add(tableName);
+ // }
+ // }
+ // set.close();
+ // EntityFactory entityFactory = EntityFactory.getInstance();
+ // if (sqlList.size() == 1) {
+ // adapter = bookmark.getAdapter();
+ // entity = entityFactory.create(bookmark, null, (String) sqlList
+ // .get(0), Entity.TABLE_TYPE, false);
+ // String query = adapter.getTableQuery(entity.getQualifiedName());
+ //
+ // try {
+ // SQLResults results = MultiSQLServer.getInstance().execute(
+ // bookmark, connectionUtil.connect(bookmark, fWindow.getShell()),
+ // entity, query);
+ //
+ // if (results != null && results.isResultSet()) {
+ // SQLResultSetCollection.getInstance().addSQLResultSet(
+ // (SQLResultSetResults) results);
+ // }
+ // } catch (SQLException e) {
+ // ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
+ // }
+ // // tableView.loadTable(entityFactory.create(
+ // // bookmark, null,
+ // // (String) sqlList.get(0),
+ // // Entity.TABLE_TYPE));
+ // } else if (sqlList.size() > 1) {
+ // ListSelectionDialog listSelectionDialog = new ListSelectionDialog(
+ // PHPeclipsePlugin.getDefault().getWorkbench()
+ // .getActiveWorkbenchWindow().getShell(), sqlList,
+ // new ListContentProvider(), new LabelProvider(),
+ // "Select the SQL table to open.");
+ // listSelectionDialog.setTitle("Multiple tablenames found");
+ // if (listSelectionDialog.open() == Window.OK) {
+ // Object[] locations = listSelectionDialog.getResult();
+ // if (locations != null) {
+ // for (int i = 0; i < locations.length; i++) {
+ // adapter = bookmark.getAdapter();
+ // entity = entityFactory.create(bookmark, null,
+ // (String) locations[i], Entity.TABLE_TYPE, false);
+ // String query = adapter.getTableQuery(entity
+ // .getQualifiedName());
+ //
+ // try {
+ // SQLResults results = MultiSQLServer.getInstance()
+ // .execute(bookmark,
+ // connectionUtil.connect(bookmark, fWindow.getShell()),
+ // entity, query);
+ //
+ // if (results != null && results.isResultSet()) {
+ // SQLResultSetCollection.getInstance().addSQLResultSet(
+ // (SQLResultSetResults) results);
+ // }
+ // } catch (SQLException e) {
+ // ExceptionDisplayDialog.openError(fWindow.getShell(), null, null, e);
+ // }
+ //
+ // // tableView
+ // // .loadTable(entityFactory
+ // // .create(
+ // // bookmark,
+ // // null,
+ // // (String) locations[i],
+ // // Entity.TABLE_TYPE));
+ // }
+ //
+ // }
+ // }
+ // }
+ // }
+ // } catch (NotConnectedException e) {
+ // // ignore this - not mission critical
+ // } catch (SQLException e) {
+ // e.printStackTrace();
+ // }
+ // }
+ // }
+ // }
+ // }
}
\ No newline at end of file
--- /dev/null
+/**********************************************************************
+Copyright (c) 2000, 2002 IBM Corp. and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Common Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v10.html
+
+Contributors:
+ IBM Corporation - Initial implementation
+ www.phpeclipse.de
+**********************************************************************/
+package net.sourceforge.phpeclipse.actions;
+
+import java.io.File;
+
+import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsUtil;
+import net.sourceforge.phpeclipse.PHPConsole;
+import net.sourceforge.phpeclipse.PHPeclipsePlugin;
+
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.preference.IPreferenceStore;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.IWorkbenchWindowActionDelegate;
+
+public class PHPStartXAMPPAction implements IWorkbenchWindowActionDelegate {
+ protected IWorkbenchWindow activeWindow = null;
+
+ public void run(IAction action) {
+ final IPreferenceStore store =
+ PHPeclipsePlugin.getDefault().getPreferenceStore();
+ String executable = store.getString(PHPeclipsePlugin.XAMPP_START_PREF);
+ String workingDirectory = null;
+ if (executable!=null && executable.length()>0) {
+ int index = executable.lastIndexOf(File.separatorChar);
+ if (index>0) {
+ workingDirectory = executable.substring(0, index);
+ }
+ }
+ execute(
+ "xampp_start",
+ executable,
+ workingDirectory,
+ true);
+ }
+
+ /**
+ * Executes an external progam and saves the LaunchConfiguration under external tools
+ * @param command external tools command name
+ * @param executable executable path i.e.c:\apache\apache.exe
+ * @param background run this configuration in background mode
+ */
+ public static void execute(
+ String command,
+ String executable,
+ String workingDirectory,
+ boolean background) {
+ PHPConsole console = new PHPConsole();
+ String consoleMessage;
+ if (background) {
+ consoleMessage =
+ "run in background mode-"
+ + command
+ + ": "
+ + executable;
+ } else {
+ consoleMessage =
+ "run in foreground mode-"
+ + command
+ + ": "
+ + executable;
+ }
+ console.println(consoleMessage);
+
+ ExternalToolsUtil.execute(command, executable, workingDirectory, null, background);
+ }
+
+ public void selectionChanged(IAction action, ISelection selection) {
+
+ }
+
+ public void init(IWorkbenchWindow window) {
+ this.activeWindow = window;
+ }
+
+ public void dispose() {
+
+ }
+
+}
--- /dev/null
+/**********************************************************************
+Copyright (c) 2000, 2002 IBM Corp. and others.
+All rights reserved. This program and the accompanying materials
+are made available under the terms of the Common Public License v1.0
+which accompanies this distribution, and is available at
+http://www.eclipse.org/legal/cpl-v10.html
+
+Contributors:
+ IBM Corporation - Initial implementation
+ www.phpeclipse.de
+**********************************************************************/
+package net.sourceforge.phpeclipse.actions;
+
+import java.io.File;
+
+import net.sourceforge.phpdt.externaltools.launchConfigurations.ExternalToolsUtil;
+import net.sourceforge.phpeclipse.PHPConsole;
+import net.sourceforge.phpeclipse.PHPeclipsePlugin;
+
+import org.eclipse.jface.action.IAction;
+import org.eclipse.jface.preference.IPreferenceStore;
+import org.eclipse.jface.viewers.ISelection;
+import org.eclipse.ui.IWorkbenchWindow;
+import org.eclipse.ui.IWorkbenchWindowActionDelegate;
+
+public class PHPStopXAMPPAction implements IWorkbenchWindowActionDelegate {
+ protected IWorkbenchWindow activeWindow = null;
+
+ public void run(IAction action) {
+ final IPreferenceStore store =
+ PHPeclipsePlugin.getDefault().getPreferenceStore();
+ String executable = store.getString(PHPeclipsePlugin.XAMPP_STOP_PREF);
+ String workingDirectory = null;
+ if (executable!=null && executable.length()>0) {
+ int index = executable.lastIndexOf(File.separatorChar);
+ if (index>0) {
+ workingDirectory = executable.substring(0, index);
+ }
+ }
+ execute(
+ "xampp_stop",
+ executable,
+ workingDirectory,
+ true);
+ }
+
+ /**
+ * Executes an external progam and saves the LaunchConfiguration under external tools
+ * @param command external tools command name
+ * @param executable executable path i.e.c:\apache\apache.exe
+ * @param background run this configuration in background mode
+ */
+ public static void execute(
+ String command,
+ String executable,
+ String workingDirectory,
+ boolean background) {
+ PHPConsole console = new PHPConsole();
+ String consoleMessage;
+ if (background) {
+ consoleMessage =
+ "run in background mode-"
+ + command
+ + ": "
+ + executable;
+ } else {
+ consoleMessage =
+ "run in foreground mode-"
+ + command
+ + ": "
+ + executable;
+ }
+ console.println(consoleMessage);
+
+ ExternalToolsUtil.execute(command, executable, workingDirectory, null, background);
+ }
+
+ public void selectionChanged(IAction action, ISelection selection) {
+
+ }
+
+ public void init(IWorkbenchWindow window) {
+ this.activeWindow = window;
+ }
+
+ public void dispose() {
+
+ }
+
+}
public SmartyDocumentSetupParticipant() {
}
-
+
/*
* @see org.eclipse.core.filebuffers.IDocumentSetupParticipant#setup(org.eclipse.jface.text.IDocument)
*/
PHPBasePreferencePage.websettingsGroup.useexternal=Use external browser
#PHPBasePreferencePage.websettingsGroup.showexternalpreview=Show preview on editor load (win32 only)
PHPBasePreferencePage.apacheGroup=Apache Settings
+PHPBasePreferencePage.apacheGroup.xampp_start=XAMPP Start
+PHPBasePreferencePage.apacheGroup.xampp_stop=XAMPP Stop
PHPBasePreferencePage.apacheGroup.run=Apache
PHPBasePreferencePage.apacheGroup.start=Start Apache
PHPBasePreferencePage.apacheGroup.start_background=Run in background mode