- Aug 14, 2006
- Aug 12, 2006
- Aug 11, 2006
-
-
cyan authored
-
deuce authored
to keep the global namespace clean.
-
rswindell authored
no script filename, or if a *function* object was specified for the scope object.
-
deuce authored
Document the cwd global variable.
-
deuce authored
-
cyan authored
-
cyan authored
-
cyan authored
-
rswindell authored
load() - to force an execution scope, no longer worked.
-
cyan authored
-
deuce authored
are local if declared with var.
-
deuce authored
-
- Aug 10, 2006
- Aug 09, 2006
-
-
rswindell authored
Log message when stop semaphore file signaled. Yield while retrieving article list using XOVER.
-
rswindell authored
-
rswindell authored
-
rswindell authored
-
deuce authored
which calls it is located in.
-
deuce authored
-
deuce authored
-
deuce authored
files to convert another xjs file to ssjs and load() it.
-
deuce authored
-
deuce authored
-
deuce authored
more usefull. Only use \n to terminate lines... Win32 uses textmode so it already "fixes" that.
-
deuce authored
-
deuce authored
Allow <?xjs to be at the end of a line without a trailing space. Allow short tags ala PHP... ie: <? some code here ?>
-
deuce authored
1) If the *.xjs.ssjs file exists and is newer than the *.xjs file, simply load()s the *.xjs.ssjs file. 2) Otherwise, generates the *.xjs.ssjs file from the *.xjs file as follows: Anything inside the tag <?xjs ... ?> is SSJS. A simple welcome.xjs page would then be as follows: <html> <head> <title><?xjs write(system.name)?></title> </head> <body> Your SysOp <?xjs write(system.operator)?> would like to welcome you to <?xjs write(system.name) ?> </body> </html> This is converted to welcome.xjs.ssjs as follows: writeln('<html>'); writeln('<head>'); write('<title>'); write(system.name); writeln('</title>'); writeln('</head>'); writeln('<body>'); write('Your SysOp '); write(system.operator); writeln(' would like to welcome you to'); write(''); write(system.name) ; writeln('</body>'); writeln('</html>'); Now all you PHP folks out there can get comfortable writing XJS scripts if I understand how PHP embedding works.
-