The big rename of pluginbs from pluginomatic to ep

This commit is contained in:
Egil Moeller 2012-02-26 13:54:32 +01:00
parent 758666c3e1
commit da52353ba3
16 changed files with 48 additions and 48 deletions

View file

@ -0,0 +1,32 @@
{
"parts": [
{
"name": "somepart",
"pre": [],
"post": ["ep_onemoreplugin/partone"]
},
{
"name": "partlast",
"pre": ["ep_fintest/otherpart"],
"post": [],
"hooks": {
"somehookname": "ep_fintest/partlast:somehook"
}
},
{
"name": "partfirst",
"pre": [],
"post": ["ep_onemoreplugin/somepart"]
},
{
"name": "otherpart",
"pre": ["ep_fintest/somepart", "ep_otherplugin/main"],
"post": [],
"hooks": {
"somehookname": "ep_fintest/otherpart:somehook",
"morehook": "ep_fintest/otherpart:morehook",
"expressCreateServer": "ep_fintest/otherpart:expressServer"
}
}
]
}

View file

@ -1,4 +1,4 @@
test = ep_client_require("/plugins/pluginomatic_fintest/test.js");
test = ep_client_require("/plugins/ep_fintest/test.js");
console.log("FOOO:", test.foo);
exports.somehook = function (hook_name, args, cb) {

View file

@ -1,5 +1,5 @@
{
"name": "pluginomatic_fintest",
"name": "ep_fintest",
"description": "A test plugin",
"version": "0.0.1",
"author": "RedHog (Egil Moeller) <egil.moller@freecode.no>",

View file

@ -1,32 +0,0 @@
{
"parts": [
{
"name": "somepart",
"pre": [],
"post": ["pluginomatic_onemoreplugin/partone"]
},
{
"name": "partlast",
"pre": ["pluginomatic_fintest/otherpart"],
"post": [],
"hooks": {
"somehookname": "pluginomatic_fintest/partlast:somehook"
}
},
{
"name": "partfirst",
"pre": [],
"post": ["pluginomatic_onemoreplugin/somepart"]
},
{
"name": "otherpart",
"pre": ["pluginomatic_fintest/somepart", "pluginomatic_otherplugin/main"],
"post": [],
"hooks": {
"somehookname": "pluginomatic_fintest/otherpart:somehook",
"morehook": "pluginomatic_fintest/otherpart:morehook",
"expressCreateServer": "pluginomatic_fintest/otherpart:expressServer"
}
}
]
}