Skip to content

Commit 1ac0688

Browse files
committed
NB module created
0 parents  commit 1ac0688

10 files changed

+95
-0
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
build
2+
nbproject/private

build.xml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!-- You may freely edit this file. See harness/README in the NetBeans platform -->
3+
<!-- for some information on what you could do (e.g. targets to override). -->
4+
<!-- If you delete this file and reopen the project it will be recreated. -->
5+
<project name="org.cakephp.netbeans" default="netbeans" basedir=".">
6+
<description>Builds, tests, and runs the project org.cakephp.netbeans.</description>
7+
<import file="nbproject/build-impl.xml"/>
8+
</project>

manifest.mf

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
Manifest-Version: 1.0
2+
OpenIDE-Module: org.cakephp.netbeans
3+
OpenIDE-Module-Layer: org/cakephp/netbeans/resources/layer.xml
4+
OpenIDE-Module-Localizing-Bundle: org/cakephp/netbeans/resources/Bundle.properties
5+
OpenIDE-Module-Specification-Version: 1.0
6+

nbproject/build-impl.xml

+42
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!--
3+
*** GENERATED FROM project.xml - DO NOT EDIT ***
4+
*** EDIT ../build.xml INSTEAD ***
5+
-->
6+
<project name="org.cakephp.netbeans-impl" basedir="..">
7+
<fail message="Please build using Ant 1.7.1 or higher.">
8+
<condition>
9+
<not>
10+
<antversion atleast="1.7.1"/>
11+
</not>
12+
</condition>
13+
</fail>
14+
<property file="nbproject/private/platform-private.properties"/>
15+
<property file="nbproject/platform.properties"/>
16+
<macrodef name="property" uri="http://www.netbeans.org/ns/nb-module-project/2">
17+
<attribute name="name"/>
18+
<attribute name="value"/>
19+
<sequential>
20+
<property name="@{name}" value="${@{value}}"/>
21+
</sequential>
22+
</macrodef>
23+
<macrodef name="evalprops" uri="http://www.netbeans.org/ns/nb-module-project/2">
24+
<attribute name="property"/>
25+
<attribute name="value"/>
26+
<sequential>
27+
<property name="@{property}" value="@{value}"/>
28+
</sequential>
29+
</macrodef>
30+
<property file="${user.properties.file}"/>
31+
<nbmproject2:property name="harness.dir" value="nbplatform.${nbplatform.active}.harness.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
32+
<nbmproject2:property name="nbplatform.active.dir" value="nbplatform.${nbplatform.active}.netbeans.dest.dir" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
33+
<nbmproject2:evalprops property="cluster.path.evaluated" value="${cluster.path}" xmlns:nbmproject2="http://www.netbeans.org/ns/nb-module-project/2"/>
34+
<fail message="Path to 'platform' cluster missing in $${cluster.path} property or using corrupt Netbeans Platform (missing harness).">
35+
<condition>
36+
<not>
37+
<contains string="${cluster.path.evaluated}" substring="platform"/>
38+
</not>
39+
</condition>
40+
</fail>
41+
<import file="${harness.dir}/build.xml"/>
42+
</project>

nbproject/genfiles.properties

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
build.xml.data.CRC32=3594e381
2+
build.xml.script.CRC32=509b06b8
3+
build.xml.stylesheet.CRC32=[email protected]
4+
# This file is used by a NetBeans-based IDE to track changes in generated files such as build-impl.xml.
5+
# Do not edit this file. You may delete it but then the IDE will never regenerate such files for you.
6+
nbproject/build-impl.xml.data.CRC32=3594e381
7+
nbproject/build-impl.xml.script.CRC32=66d0a2dd
8+
nbproject/build-impl.xml.stylesheet.CRC32=[email protected]

nbproject/platform.properties

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
cluster.path=\
2+
${nbplatform.active.dir}/websvccommon:\
3+
${nbplatform.active.dir}/php:\
4+
${nbplatform.active.dir}/harness:\
5+
${nbplatform.active.dir}/profiler:\
6+
${nbplatform.active.dir}/platform:\
7+
${nbplatform.active.dir}/ide:\
8+
${nbplatform.active.dir}/apisupport:\
9+
${nbplatform.active.dir}/nb:\
10+
${nbplatform.active.dir}/java
11+
nbplatform.active=NetBeans_IDE_Dev

nbproject/project.properties

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
javac.source=1.6
2+
javac.compilerargs=-Xlint -Xlint:-serial

nbproject/project.xml

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://www.netbeans.org/ns/project/1">
3+
<type>org.netbeans.modules.apisupport.project</type>
4+
<configuration>
5+
<data xmlns="http://www.netbeans.org/ns/nb-module-project/3">
6+
<code-name-base>org.cakephp.netbeans</code-name-base>
7+
<standalone/>
8+
<module-dependencies/>
9+
<public-packages/>
10+
</data>
11+
</configuration>
12+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
OpenIDE-Module-Name=PHP CakePHP Framework
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE filesystem PUBLIC "-//NetBeans//DTD Filesystem 1.2//EN" "http://www.netbeans.org/dtds/filesystem-1_2.dtd">
3+
<filesystem/>

0 commit comments

Comments
 (0)