commenting example code
[nodejsws.git] / examples / simple / purls / justlayout.js
index f02b439..050a4fc 100644 (file)
@@ -1,5 +1,15 @@
+/*
+ *  this is an example of a purl that simply contains a layout and only a layout
+ *  
+ *  this is useful when you can do everything synchronously and just need to fling back
+ *  some content - if you tie layout to preRequest you can make preRequest determine
+ *  if you can simply use layout to push some simple html out and this simplifies the
+ *  whole request pipeline.
+ */
+
+
 exports.layout = function(request, response) {
-       var tkl = "<html><body><h1>Just a Layout</h1>this purl is simple a layout";
+       var tkl = "<html><body><h1>Just a Layout</h1>this purl is simply a layout";
        tkl += " and nothing else!</body></html>";
        
        return tkl;