Roxen.git
/
server
/
modules
/
scripting
/
piketag.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/modules/scripting/piketag.pike:1:
// This is a roxen module. Copyright © 1996 - 2009, Roxen IS. // // Adds support for inline pike in documents. // // Example: // <pike> // return "Hello world!\n"; // </pike>
-
constant cvs_version = "
$Id: piketag.pike,v 2.39 2009/05/07 14:15:55 mast Exp $
";
+
constant cvs_version = "
$Id$
";
constant thread_safe=1; inherit "module"; #include <module.h> constant module_type = MODULE_TAG; constant module_name = "Scripting: Pike tag"; constant module_doc = #" <p>This module adds a processing instruction tag, <code><?pike ... ?></code>, for evaluating Pike code directly in the document.</p>