Roxen.git
/
server
/
modules
/
examples
/
newstyle_fnord.pike
version
»
Context lines:
10
20
40
80
file
none
3
Roxen.git/server/modules/examples/newstyle_fnord.pike:1:
// This is a roxen module. Copyright © 2000 - 2001, Roxen IS. // This is a small sample module intended to show how a newstyle tag // is written. Note that this is only a very brief overview and that // the new parser is still under development and incompatible changes // might be done in the future. // See fnord.pike for more information of what this tag does. // This variable is shown in the configinterface as the version of the module.
-
constant cvs_version = "$Id: newstyle_fnord.pike,v 1.
13
2001
/
09
/
21
15:
58
:
09
jhs
Exp $";
+
constant cvs_version = "$Id: newstyle_fnord.pike,v 1.
14
2003
/
06
/
26
15:
59
:
22
anders
Exp $";
// Tell Roxen that this module is threadsafe. constant thread_safe=1; // Inherit code that is needed in every module. inherit "module";
-
//
moduke
.h must be included to use the LOCALE macro below.
+
//
module
.h must be included to use the LOCALE macro below.
#include <module.h> // Some defines for the translation system //
-
//<locale-token project="mod_fnord">LOCALE</locale-token>
-
#define LOCALE(X,Y) _DEF_LOCALE("mod_fnord",X,Y)
+
//<locale-token project="mod_
newstyle_
fnord">LOCALE</locale-token>
+
#define LOCALE(X,Y) _DEF_LOCALE("mod_
newstyle_
fnord",X,Y)
// end of the locale related stuff // Define the fnord tag class. It must begin with "Tag". class TagFnord { inherit RXML.Tag; // This constant tells the parser that the tag should be called "fnord". constant name = "fnord";