Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
change namespace
  • Loading branch information
QuBiT committed Apr 8, 2010
1 parent 68e2f05 commit b2116b7
Show file tree
Hide file tree
Showing 11 changed files with 79 additions and 79 deletions.
4 changes: 2 additions & 2 deletions Rakefile
Expand Up @@ -21,8 +21,8 @@ task :i18n_generate do
end.join
end

File.open(File.dirname(__FILE__) + '/src/info/cukes/feature/feature.nbs', "wb") do |io|
template = ERB.new(IO.read(File.dirname(__FILE__) + '/src/info/cukes/feature/feature.nbs.erb'))
File.open(File.dirname(__FILE__) + '/src/qubit/cucumber/editor/feature.nbs', "wb") do |io|
template = ERB.new(IO.read(File.dirname(__FILE__) + '/src/qubit/cucumber/editor/feature.nbs.erb'))
io.write(template.result(binding))
end
end
4 changes: 2 additions & 2 deletions build.xml
Expand Up @@ -2,7 +2,7 @@
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
<!-- for some information on what you could do (e.g. targets to override). -->
<!-- If you delete this file and reopen the project it will be recreated. -->
<project name="info.cukes.feature" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project info.cukes.feature.</description>
<project name="qubit.cucumber.editor" default="netbeans" basedir=".">
<description>Builds, tests, and runs the project qubit.cucumber.editor.</description>
<import file="nbproject/build-impl.xml"/>
</project>
6 changes: 3 additions & 3 deletions manifest.mf
@@ -1,6 +1,6 @@
Manifest-Version: 1.0
OpenIDE-Module: info.cukes.feature
OpenIDE-Module: qubit.cucumber.editor
OpenIDE-Module-Implementation-Version: 1
OpenIDE-Module-Layer: info/cukes/feature/layer.xml
OpenIDE-Module-Localizing-Bundle: info/cukes/feature/Bundle.properties
OpenIDE-Module-Layer: qubit/cucumber/editor/layer.xml
OpenIDE-Module-Localizing-Bundle: qubit/cucumber/editor/Bundle.properties

2 changes: 1 addition & 1 deletion nbproject/build-impl.xml
Expand Up @@ -3,7 +3,7 @@
*** GENERATED FROM project.xml - DO NOT EDIT ***
*** EDIT ../build.xml INSTEAD ***
-->
<project name="info.cukes.feature-impl" basedir="..">
<project name="qubit.cucumber.editor-impl" basedir="..">
<fail message="Please build using Ant 1.7.1 or higher.">
<condition>
<not>
Expand Down
2 changes: 1 addition & 1 deletion nbproject/project.xml
Expand Up @@ -3,7 +3,7 @@
<type>org.netbeans.modules.apisupport.project</type>
<configuration>
<data xmlns="http://www.netbeans.org/ns/nb-module-project/3">
<code-name-base>info.cukes.feature</code-name-base>
<code-name-base>qubit.cucumber.editor</code-name-base>
<standalone/>
<module-dependencies>
<dependency>
Expand Down
2 changes: 1 addition & 1 deletion src/qubit/cucumber/editor/FeatureDataObject.java
Expand Up @@ -2,7 +2,7 @@
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package info.cukes.feature;
package qubit.cucumber.editor;

import java.io.IOException;
import org.openide.filesystems.FileObject;
Expand Down
4 changes: 2 additions & 2 deletions src/qubit/cucumber/editor/actions/RunFeatureWithCucumber.java
@@ -1,6 +1,6 @@
package info.cukes.feature.actions;
package qubit.cucumber.editor.actions;

import info.cukes.feature.threads.FeatureThread;
import qubit.cucumber.editor.threads.FeatureThread;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import org.openide.loaders.DataObject;
Expand Down
22 changes: 11 additions & 11 deletions src/qubit/cucumber/editor/feature.nbs
Expand Up @@ -276,28 +276,28 @@ BRACE "\':\'"
# navigator

NAVIGATOR:Feature: {
display_name: info.cukes.feature.Feature.featureName;
icon: info.cukes.feature.Feature.featureIcon;
display_name: qubit.cucumber.editor.Feature.featureName;
icon: qubit.cucumber.editor.Feature.featureIcon;
}

NAVIGATOR:Scenario: {
display_name: info.cukes.feature.Feature.scenarioName;
icon: info.cukes.feature.Feature.scenarioIcon;
display_name: qubit.cucumber.editor.Feature.scenarioName;
icon: qubit.cucumber.editor.Feature.scenarioIcon;
}

NAVIGATOR:ExamplesBlock: {
display_name: info.cukes.feature.Feature.examplesName;
icon: info.cukes.feature.Feature.examplesIcon;
display_name: qubit.cucumber.editor.Feature.examplesName;
icon: qubit.cucumber.editor.Feature.examplesIcon;
}

NAVIGATOR:TableBlock: {
display_name: info.cukes.feature.Feature.tableName;
icon: info.cukes.feature.Feature.tableIcon;
display_name: qubit.cucumber.editor.Feature.tableName;
icon: qubit.cucumber.editor.Feature.tableIcon;
}

NAVIGATOR:Background: {
display_name: info.cukes.feature.Feature.backgroundName;
icon: info.cukes.feature.Feature.backgroundIcon;
display_name: qubit.cucumber.editor.Feature.backgroundName;
icon: qubit.cucumber.editor.Feature.backgroundIcon;
}

# INDENT -----------------------------------------------------------------------
Expand Down Expand Up @@ -325,5 +325,5 @@ FOLD:ScenarioBlock
FOLD:TableBlock

# BUNDLE -----------------------------------------------------------------------
BUNDLE "info.cukes.feature.Bundle"
BUNDLE "qubit.cucumber.editor.Bundle"
# EOF --------------------------------------------------------------------------
22 changes: 11 additions & 11 deletions src/qubit/cucumber/editor/feature.nbs.erb
Expand Up @@ -276,28 +276,28 @@ BRACE "\':\'"
# navigator

NAVIGATOR:Feature: {
display_name: info.cukes.feature.Feature.featureName;
icon: info.cukes.feature.Feature.featureIcon;
display_name: qubit.cucumber.editor.Feature.featureName;
icon: qubit.cucumber.editor.Feature.featureIcon;
}

NAVIGATOR:Scenario: {
display_name: info.cukes.feature.Feature.scenarioName;
icon: info.cukes.feature.Feature.scenarioIcon;
display_name: qubit.cucumber.editor.Feature.scenarioName;
icon: qubit.cucumber.editor.Feature.scenarioIcon;
}

NAVIGATOR:ExamplesBlock: {
display_name: info.cukes.feature.Feature.examplesName;
icon: info.cukes.feature.Feature.examplesIcon;
display_name: qubit.cucumber.editor.Feature.examplesName;
icon: qubit.cucumber.editor.Feature.examplesIcon;
}

NAVIGATOR:TableBlock: {
display_name: info.cukes.feature.Feature.tableName;
icon: info.cukes.feature.Feature.tableIcon;
display_name: qubit.cucumber.editor.Feature.tableName;
icon: qubit.cucumber.editor.Feature.tableIcon;
}

NAVIGATOR:Background: {
display_name: info.cukes.feature.Feature.backgroundName;
icon: info.cukes.feature.Feature.backgroundIcon;
display_name: qubit.cucumber.editor.Feature.backgroundName;
icon: qubit.cucumber.editor.Feature.backgroundIcon;
}

# INDENT -----------------------------------------------------------------------
Expand Down Expand Up @@ -325,5 +325,5 @@ FOLD:ScenarioBlock
FOLD:TableBlock

# BUNDLE -----------------------------------------------------------------------
BUNDLE "info.cukes.feature.Bundle"
BUNDLE "qubit.cucumber.editor.Bundle"
# EOF --------------------------------------------------------------------------

0 comments on commit b2116b7

Please sign in to comment.