Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions static/index.jade
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ html(lang=gw.language)

project.routes.add(new Route(function(gw){
gw.html("Hola Mundo!!");
});
}));
ul#features-menu
li
a(href="#negociacion-http") Negociación HTTP
Expand Down Expand Up @@ -80,7 +80,7 @@ html(lang=gw.language)
method:"post|get"
},
// Manejador
function(gw){/
function(gw){
gw.send("Hello from the other side");
}
);
Expand Down Expand Up @@ -112,7 +112,7 @@ html(lang=gw.language)
:highlight(lang='javascript')
var myRoute = new Route(
{
id:"users"
id:"users",
path:"/users"
},
function(gw){
Expand Down Expand Up @@ -207,7 +207,7 @@ html(lang=gw.language)
var myPlugin = new Plugin(
// Configuración del plugin
{
id:"idPlugin"
id:"idPlugin",
active: true
},
// Manejador del Plugin
Expand All @@ -222,11 +222,11 @@ html(lang=gw.language)

// Modificación del Plugin
project.plugins.get('idPlugin').configure({
active: false;
active: false
});

// Eliminación del Plugin
project.plugins.delete(); ????
project.plugins.delete(); // ????
//
div.tutos
p TUTORIALES
Expand Down Expand Up @@ -383,4 +383,4 @@ html(lang=gw.language)
a Pasar parámetros de procesos a procesos
a Mix de carreras y colas