-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
org.dslforge.workspace.config.configuration #45
Comments
The schema is here: https://github.com/plugbee/dslforge/blob/master/plugins/org.dslforge.workspace.config/schema/configuration.exsd
for the path, there are these examples in the extension point description |
Slightly related, is it possible to modify path programatically? Or is it possible to use @user.home to point to the user directory? |
I agree. If we are sharing the project in a team during development or if we have it in several computers we should not rely on hardcoded absolute paths. Right now, if we don't define this extension point it will take dslforge/plugins/org.dslforge.workspace/src/org/dslforge/workspace/IWorkspaceConstants.java Line 28 in 0888041
As @kgardas suggests, at least we can replace this line with public static final String WORKSPACE_DEFAULT_PATH = System.getProperty("user.home") + File.separator + "www" + File.separator + "dslforge" + File.separator + "workbench"; @kgardas, is this solution valid for your case? If yes, please, open a new issue to manage it correction properly or to continue this discussion. |
I modified/then deleted my org.dslforge.workspace.config.configuration extension point (and path contribution). Recreating an org.dslforge.workspace.config.configuration - where can I find the schema for the extension point; without a schema I get a java.sql.SQLException in terms of the workspace going to the default value. Which schema file could one apply to this config extension point?
The text was updated successfully, but these errors were encountered: