You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(13) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(11) |
Feb
(12) |
Mar
(8) |
Apr
(16) |
May
(56) |
Jun
(20) |
Jul
(16) |
Aug
(13) |
Sep
(12) |
Oct
(15) |
Nov
|
Dec
(2) |
2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(36) |
Jun
(14) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2004 |
Jan
|
Feb
|
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Jan T. <de...@us...> - 2004-03-22 01:01:42
|
Update of /cvsroot/net-script/netscript2/src/perl/XML/DAL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6047 Modified Files: DAL.pm XMLDOM2DAL.pm Log Message: * added line number to DAL Index: DAL.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DAL/DAL.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DAL.pm 31 May 2003 22:39:34 -0000 1.2 --- DAL.pm 22 Mar 2004 00:51:30 -0000 1.3 *************** *** 80,83 **** --- 80,93 ---- } + + #/** + # Returns the line number of the given node. + # @param the node whichs line number should be returned. + # @return the line number of the node. + #*/ + sub getLine { + + } + # ---------------- Node Type Checking -------------------- *************** *** 400,402 **** --- 410,414 ---- + + 1; Index: XMLDOM2DAL.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DAL/XMLDOM2DAL.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** XMLDOM2DAL.pm 31 May 2003 22:39:34 -0000 1.2 --- XMLDOM2DAL.pm 22 Mar 2004 00:51:30 -0000 1.3 *************** *** 47,50 **** --- 47,54 ---- } + sub getLine { + my ( $this, $node ) = @_; + $node -> getLine(); + } # ---------------- Node Type Checking -------------------- |
From: Jan T. <de...@us...> - 2004-03-22 00:37:47
|
Update of /cvsroot/net-script/netscript2/src/perl/XML/DAL In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1957 Modified Files: LibXMLDAL.pm Log Message: * fixed bug in the LibXMLDAL, which caused attributes to disappear Index: LibXMLDAL.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DAL/LibXMLDAL.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** LibXMLDAL.pm 2 Jun 2003 21:49:16 -0000 1.4 --- LibXMLDAL.pm 22 Mar 2004 00:27:29 -0000 1.5 *************** *** 21,24 **** --- 21,27 ---- my ( $this, $file ) = @_; my $parser = XML::LibXML -> new(); + eval { + $parser -> line_numbers(1); + }; return $parser -> parse_file( $file ); } *************** *** 28,31 **** --- 31,37 ---- my ( $this, $string ) = @_; my $parser = XML::LibXML -> new(); + eval { + $parser -> line_numbers(1); + }; return $parser -> parse_string( $string ); } *************** *** 57,60 **** --- 63,75 ---- } + sub getLine { + my ( $this, $node ) = @_; + my $result = "[Parser doesn't support line numbers!]"; + eval { + $result = $node -> line_number(); + }; + $result; + } + # ---------------- Node Type Checking -------------------- *************** *** 205,210 **** sub getAttributes { my ( $this, $node ) = @_; ! my @attributes = $node -> attributes; ! \@attributes; } --- 220,230 ---- sub getAttributes { my ( $this, $node ) = @_; ! my @attributes = $node -> attributes(); ! # filter namespaces, no frickin idea why libxml ! # treats them as attributes... ! my @result = grep { ! ! UNIVERSAL::isa( $_, "XML::LibXML::Namespace" ) ! } @attributes; ! \@result; } *************** *** 394,402 **** sub importNode { my ( $this, $document, $node, $deep ) = @_; ! unless ($deep) { ! $node = $node -> cloneNode( $deep ); #make a shallow copy } ! ! return $document -> importNode( $node ); } --- 414,431 ---- sub importNode { my ( $this, $document, $node, $deep ) = @_; ! my $copiedNode = $node; ! unless ( $deep ) { #not deep, make a shallow copy ! $copiedNode = $node -> cloneNode( 1 ); ! $copiedNode -> removeChildNodes(); ! # since LibXML doesnt copy the attributes when doing shallow ! # copies we gotta do this ourselves... ! # my $attrs = $this -> getAttributes( $node ); ! # my $length = $this -> getLength( $attrs ) -1; ! # for( 0..$length ) { ! # my $attr = $this -> getItemAt( $attrs, $_ ); ! # $this -> setAttribute( $this -> getNodeName( $attr ), $this -> getAttrValue( $attr ) ); ! # } } ! $document -> importNode( $copiedNode ); } |
From: Jan T. <de...@us...> - 2003-06-06 20:20:15
|
Update of /cvsroot/net-script/netscript2 In directory sc8-pr-cvs1:/tmp/cvs-serv23038 Modified Files: Makefile Makefile.files Log Message: * package generation fixes Index: Makefile =================================================================== RCS file: /cvsroot/net-script/netscript2/Makefile,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Makefile 31 May 2003 22:43:38 -0000 1.11 --- Makefile 6 Jun 2003 20:20:09 -0000 1.12 *************** *** 88,92 **** docs_ipdoc: -rm -rf $(DOCS_DIR)/ipdoc/api ! perl -Isrc/tools src/tools/ipdoc.pl -d ./$(DOCS_DIR)/ipdoc/api -f src/tools/IPdoc -t "The insOMnia Perl Documenting System - IPDoc" -desc ./$(DOCS_DIR)/ipdoc/README.html # Creates docs for NetScript --- 88,92 ---- docs_ipdoc: -rm -rf $(DOCS_DIR)/ipdoc/api ! perl -Isrc/tools src/tools/ipdoc.pl -d ./$(DOCS_DIR)/ipdoc/api -f src/tools/IPdoc -t "The insOMnia Perl Documenting System - IPDoc" # Creates docs for NetScript *************** *** 94,98 **** docs_netscript: -rm -rf $(DOCS_DIR)/netscript/api ! perl -Isrc/tools src/tools/ipdoc.pl -d ./$(DOCS_DIR)/netscript/api -f src/perl/NetScript -t "NetScript 2.1 Documentation" -desc ./$(DOCS_DIR)/netscript/REQUIREMENTS.html docs_all: docs_ipdoc docs_dom2 docs_netscript --- 94,98 ---- docs_netscript: -rm -rf $(DOCS_DIR)/netscript/api ! perl -Isrc/tools src/tools/ipdoc.pl -d ./$(DOCS_DIR)/netscript/api -f src/perl/NetScript -t "NetScript 2.1 Documentation" docs_all: docs_ipdoc docs_dom2 docs_netscript *************** *** 139,150 **** --- 139,155 ---- cp -r $(NETSCRIPT_DIR) netscript_$(VERSION_NETSCRIPT) cp -r $(DOCS_DIR)/netscript/* netscript_$(VERSION_NETSCRIPT)/docs + cp -r $(SCRIPT_DIR) netscript_$(VERSION_NETSCRIPT) mkdir -p netscript_$(VERSION_NETSCRIPT)/XML/DOM2 + mkdir -p netscript_$(VERSION_NETSCRIPT)/XML/DAL cp -r $(DOM2_DIR)/* netscript_$(VERSION_NETSCRIPT)/XML/DOM2 + cp -r $(DAL_DIR)/* netscript_$(VERSION_NETSCRIPT)/XML/DAL cp -r $(PAGE_DIR) netscript_$(VERSION_NETSCRIPT) rm -rf `find netscript_$(VERSION_NETSCRIPT) -type d | grep CVS` tar -czvf netscript_$(VERSION_NETSCRIPT).tar.gz netscript_$(VERSION_NETSCRIPT) + zip -r netscript_$(VERSION_NETSCRIPT).zip netscript_$(VERSION_NETSCRIPT) rm -rf netscript_$(VERSION_NETSCRIPT) -mkdir snapshots_netscript mv netscript_$(VERSION_NETSCRIPT).tar.gz snapshots_netscript + mv netscript_$(VERSION_NETSCRIPT).zip snapshots_netscript statistics: Index: Makefile.files =================================================================== RCS file: /cvsroot/net-script/netscript2/Makefile.files,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** Makefile.files 31 May 2003 22:43:38 -0000 1.10 --- Makefile.files 6 Jun 2003 20:20:10 -0000 1.11 *************** *** 34,37 **** --- 34,38 ---- DOM2_DIR = $(SOURCE_DIR)/XML/DOM2 + DAL_DIR = $(SOURCE_DIR)/XML/DAL NETSCRIPT_DIR = $(SOURCE_DIR)/NetScript Perl = $(shell find -name "*.pl" -or -name "*.pm" |grep "src/\(perl\|tools\)") *************** *** 44,47 **** VERSION_DOM2=0.2.0 VERSION_IPDOC=1.04 ! VERSION_NETSCRIPT=2.0pre1 --- 45,48 ---- VERSION_DOM2=0.2.0 VERSION_IPDOC=1.04 ! VERSION_NETSCRIPT=2.1 |
From: Jan T. <de...@us...> - 2003-06-06 19:24:16
|
Update of /cvsroot/net-script/netscript2/docs/netscript In directory sc8-pr-cvs1:/tmp/cvs-serv32131 Added Files: INSTALLATION.html Log Message: * added installation instructions --- NEW FILE: INSTALLATION.html --- <pre> /---------------------------------------------------------------------\ | $Id: INSTALLATION.html,v 1.1 2003/06/06 19:24:13 derkork Exp $ | NetScript and all related materials, such as documentation, | are protected under the terms and conditions of the Artistic License. | | (C) 2000-2002 by Jan Thomae, insOMnia (ko...@in...) \---------------------------------------------------------------------/ Installation of NetScript 2 ------------------------------------- The installation of NetScript 2 is quite easy. You need a webserver capable of executing perl scripts (most webservers are able to do so). There are some modules which need to be present on the webserver. Check REQUIREMENTS.html for a complete list. Note that some of the modules mentioned there are optional - NetScript will run without them, however some of the functionality might not be available. To install the package, copy the following files from this package to your webserver. * NetScript ( the complete folder with all subfolders ) * XML ( the complete folder with all subfolders ) * configuration * netscript.pl If perl scripts have to be in a special directory on your server (e.g cgi-bin), you have to copy these files below your cgi-bin directory. Change the mode of * netscript.pl to 755 (rwxr-xr-x) * configuration to 666 (rw-rw-rw-) After that you need to copy the * pages ( complete folder ) to somewhere to your webserver (not to the cgi-bin folder!). Now you are nearly done. Edit the configuration file to set up netscript. The options are explained within the file. When you are done with it, upload the changed configuration file. NetScript 2 is now installed and ready for use. You can now test it by accessing netscript.pl from your browser (e.g. http://www.yourdomain.com/cgi-bin/netscript.pl). An error message should show up, stating that you didnt specify a script. If this message shows up, you have installed NetScript correctly. If not, check the instructions again and make sure you didn't forget something. If you still don't get it to work, please email me at ko...@in.... After you have installed NetScript, you can try some of the scripts provided in the scripts folder. Just upload the script to your site and then type http://www.yourdomain.com/cgi-bin/netscript.pl?script=/path/to/script.xml. E.g. if you copied the scripts to cgi-bin/scripts then type: http://www.yourdomain.com/cgi-bin/netscript.pl?script=scripts/core.xml Now go and create your own scripts. Use the provided scripts as examples. There is a bigger example in docs/examples/eventcalendar. For full reference of all currently supported commands check the library documentation at docs/api/index.html. Click on NetScript::Libraries to get a list of all libraries. Click on the library to get a description of all commands processed by this library. A future release of NetScript will contain more extensive documentation. If you have any problems or questions, feel free to contact me at ko...@in.... Have fun playing with NetScript 2! </pre> |
From: Jan T. <de...@us...> - 2003-06-06 19:24:08
|
Update of /cvsroot/net-script/netscript2/docs/netscript In directory sc8-pr-cvs1:/tmp/cvs-serv32068 Modified Files: wipeout.project Log Message: * added installation instructions Index: wipeout.project =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/netscript/wipeout.project,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** wipeout.project 1 May 2003 10:42:06 -0000 1.3 --- wipeout.project 6 Jun 2003 19:24:04 -0000 1.4 *************** *** 1,195 **** b ! C DmDictionary 0 126a0 8 ! c 0 1271c 9 ! C Category 1 3942 ! c 0 12750 4 ! C DmString 2 12757 2 e3 ! c 2 12756 a defaultExe ! C DmSet 3 12759 1 ! c 2 3951 2 e3 ! L 3951 ! c 2 12758 b executables ! c 3 12754 3 ! c 2 3958 3 *.C ! L 3958 ! c 2 395b 4 *.cc ! L 395b ! c 2 395e 5 *.cpp ! L 395e ! c 2 12753 a extensions ! c 2 12752 a CPP_source ! c 2 12751 4 name ! c 2 1271e a CPP_source ! c 1 3973 ! c 0 12796 4 ! c 2 1279d 2 e3 ! c 2 1279c a defaultExe ! c 3 1279f 1 ! c 2 3980 2 e3 ! L 3980 ! c 2 1279e b executables ! c 3 1279a 1 ! c 2 3987 3 *.c ! L 3987 ! c 2 12799 a extensions ! c 2 12798 8 C_source ! c 2 12797 4 name ! c 2 1271f 8 C_source ! c 1 399c ! c 0 127d0 4 ! c 2 127d7 2 e3 ! c 2 127d6 a defaultExe ! c 3 127d9 1 ! c 2 39a9 2 e3 ! L 39a9 ! c 2 127d8 b executables ! c 3 127d4 1 ! c 2 39b0 3 *.e ! L 39b0 ! c 2 127d3 a extensions ! c 2 127d2 6 Eiffel ! c 2 127d1 4 name ! c 2 12720 6 Eiffel ! c 1 39c5 ! c 0 1280a 4 ! c 2 12811 2 e3 ! c 2 12810 a defaultExe ! c 3 12813 1 ! c 2 39d2 2 e3 ! L 39d2 ! c 2 12812 b executables ! c 3 1280e 4 ! c 2 39d9 3 *.F ! L 39d9 ! c 2 39dc 3 *.f ! L 39dc ! c 2 39df 5 *.for ! L 39df ! c 2 39e2 5 *.fpp ! L 39e2 ! c 2 1280d a extensions ! c 2 1280c 7 Fortran ! c 2 1280b 4 name ! c 2 12721 7 Fortran ! c 1 39f7 ! c 0 12850 4 ! c 2 12857 2 e3 ! c 2 12856 a defaultExe ! c 3 12859 1 ! c 2 3a04 2 e3 ! L 3a04 ! c 2 12858 b executables ! c 3 12854 2 ! c 2 3a0b 3 *.H ! L 3a0b ! c 2 3a0e 3 *.h ! L 3a0e ! c 2 12853 a extensions ! c 2 12852 6 Header ! c 2 12851 4 name ! c 2 12722 6 Header ! c 1 3a23 ! c 0 1288e 4 ! c 2 12895 9 surfboard ! c 2 12894 a defaultExe ! c 3 12897 2 ! c 2 3a30 2 e3 ! L 3a30 ! c 2 3a33 9 surfboard ! L 3a33 ! c 2 12896 b executables ! c 3 12892 2 ! c 2 3a3a 5 *.htm ! L 3a3a ! c 2 3a3d 6 *.html ! L 3a3d ! c 2 12891 a extensions ! c 2 12890 4 Html ! c 2 1288f 4 name ! c 2 12723 4 Html ! c 1 3a52 ! c 0 128d0 4 ! c 2 128d7 2 e3 ! c 2 128d6 a defaultExe ! c 3 128d9 1 ! c 2 3a5f 2 e3 ! L 3a5f ! c 2 128d8 b executables ! c 3 128d4 1 ! c 2 3a66 6 *.java ! L 3a66 ! c 2 128d3 a extensions ! c 2 128d2 4 Java ! c 2 128d1 4 name ! c 2 12724 4 Java ! c 1 3a7b ! c 0 1290a 4 ! c 2 12911 2 e3 ! c 2 12910 a defaultExe ! c 3 12913 1 ! c 2 3a88 2 e3 ! L 3a88 ! c 2 12912 b executables ! c 3 1290e 1 ! c 2 3a8f 5 *.tex ! L 3a8f ! c 2 1290d a extensions ! c 2 1290c 5 Latex ! c 2 1290b 4 name ! c 2 12725 5 Latex ! c 1 3aa4 ! c 0 12944 4 ! c 2 1294b 2 e3 ! c 2 1294a a defaultExe ! c 3 1294d 1 ! c 2 3ab1 2 e3 ! L 3ab1 ! c 2 1294c b executables ! c 3 12948 0 ! c 2 12947 a extensions ! c 2 12946 5 Other ! c 2 12945 4 name ! c 2 12726 5 Other ! c 2 1271b a categories ! c 0 12728 1 ! C ProjectDir 4 3ace ! c 2 3acf 1a netscript2/docs/netscript/ 11 81 ! c 2 3ad0 0 0 ! c 2 1272a 1a netscript2/docs/netscript/ ! c 2 12727 b directories ! C DmBag 5 126ae 2 ! c 2 126e4 e2 b ! C DmDictionary 0 126b0 3 ! C DmString 1 126c2 36 b ! C DmSet 0 42e6 1 ! C DmString 1 4314 5 Other ! L 4314 ! c 1 126c1 a categories ! c 1 126b2 c REQUIREMENTS ! c 1 126b1 4 name ! C DmInteger 2 126c4 80000001 ! c 1 126c3 9 substMode ! c 2 12719 e0 b ! C DmDictionary 0 126e5 3 ! C DmString 1 126f7 35 b ! C DmSet 0 4325 1 ! C DmString 1 4353 4 Html ! L 4353 ! c 1 126f6 a categories ! c 1 126e7 11 REQUIREMENTS.html ! c 1 126e6 4 name ! C DmInteger 2 126f9 1 ! c 1 126f8 9 substMode ! c 2 1271a 5 files ! c 2 126a8 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 126a7 6 launch ! c 2 126a4 4 make ! c 2 126a3 4 make ! c 2 126a6 0 ! c 2 126a5 8 makeFile ! c 5 126a9 2 ! c 2 126ab 8 examples ! c 2 126ac 3 src ! c 2 126ad 7 modules ! c 2 126a2 9 netscript ! c 2 126a1 4 name --- 1,206 ---- b ! C DmDictionary 0 1301b 8 ! c 0 130cc 9 ! C Category 1 28c1 ! c 0 13100 4 ! C DmString 2 13107 2 e3 ! c 2 13106 a defaultExe ! C DmSet 3 13109 1 ! c 2 28d0 2 e3 ! L 28d0 ! c 2 13108 b executables ! c 3 13104 3 ! c 2 28d7 3 *.C ! L 28d7 ! c 2 28da 4 *.cc ! L 28da ! c 2 28dd 5 *.cpp ! L 28dd ! c 2 13103 a extensions ! c 2 13102 a CPP_source ! c 2 13101 4 name ! c 2 130ce a CPP_source ! c 1 28f2 ! c 0 13146 4 ! c 2 1314d 2 e3 ! c 2 1314c a defaultExe ! c 3 1314f 1 ! c 2 28ff 2 e3 ! L 28ff ! c 2 1314e b executables ! c 3 1314a 1 ! c 2 2906 3 *.c ! L 2906 ! c 2 13149 a extensions ! c 2 13148 8 C_source ! c 2 13147 4 name ! c 2 130cf 8 C_source ! c 1 291b ! c 0 13180 4 ! c 2 13187 2 e3 ! c 2 13186 a defaultExe ! c 3 13189 1 ! c 2 2928 2 e3 ! L 2928 ! c 2 13188 b executables ! c 3 13184 1 ! c 2 292f 3 *.e ! L 292f ! c 2 13183 a extensions ! c 2 13182 6 Eiffel ! c 2 13181 4 name ! c 2 130d0 6 Eiffel ! c 1 2944 ! c 0 131ba 4 ! c 2 131c1 2 e3 ! c 2 131c0 a defaultExe ! c 3 131c3 1 ! c 2 2951 2 e3 ! L 2951 ! c 2 131c2 b executables ! c 3 131be 4 ! c 2 2958 3 *.F ! L 2958 ! c 2 295b 3 *.f ! L 295b ! c 2 295e 5 *.for ! L 295e ! c 2 2961 5 *.fpp ! L 2961 ! c 2 131bd a extensions ! c 2 131bc 7 Fortran ! c 2 131bb 4 name ! c 2 130d1 7 Fortran ! c 1 2976 ! c 0 13200 4 ! c 2 13207 2 e3 ! c 2 13206 a defaultExe ! c 3 13209 1 ! c 2 2983 2 e3 ! L 2983 ! c 2 13208 b executables ! c 3 13204 2 ! c 2 298a 3 *.H ! L 298a ! c 2 298d 3 *.h ! L 298d ! c 2 13203 a extensions ! c 2 13202 6 Header ! c 2 13201 4 name ! c 2 130d2 6 Header ! c 1 29a2 ! c 0 1323e 4 ! c 2 13245 9 surfboard ! c 2 13244 a defaultExe ! c 3 13247 2 ! c 2 29af 2 e3 ! L 29af ! c 2 29b2 9 surfboard ! L 29b2 ! c 2 13246 b executables ! c 3 13242 2 ! c 2 29b9 5 *.htm ! L 29b9 ! c 2 29bc 6 *.html ! L 29bc ! c 2 13241 a extensions ! c 2 13240 4 Html ! c 2 1323f 4 name ! c 2 130d3 4 Html ! c 1 29d1 ! c 0 13280 4 ! c 2 13287 2 e3 ! c 2 13286 a defaultExe ! c 3 13289 1 ! c 2 29de 2 e3 ! L 29de ! c 2 13288 b executables ! c 3 13284 1 ! c 2 29e5 6 *.java ! L 29e5 ! c 2 13283 a extensions ! c 2 13282 4 Java ! c 2 13281 4 name ! c 2 130d4 4 Java ! c 1 29fa ! c 0 132ba 4 ! c 2 132c1 2 e3 ! c 2 132c0 a defaultExe ! c 3 132c3 1 ! c 2 2a07 2 e3 ! L 2a07 ! c 2 132c2 b executables ! c 3 132be 1 ! c 2 2a0e 5 *.tex ! L 2a0e ! c 2 132bd a extensions ! c 2 132bc 5 Latex ! c 2 132bb 4 name ! c 2 130d5 5 Latex ! c 1 2a23 ! c 0 132f4 4 ! c 2 132fb 2 e3 ! c 2 132fa a defaultExe ! c 3 132fd 1 ! c 2 2a30 2 e3 ! L 2a30 ! c 2 132fc b executables ! c 3 132f8 0 ! c 2 132f7 a extensions ! c 2 132f6 5 Other ! c 2 132f5 4 name ! c 2 130d6 5 Other ! c 2 130cb a categories ! c 0 130d8 1 ! C ProjectDir 4 2a4d ! c 2 2a4e 1a netscript2/docs/netscript/ 11 81 ! c 2 2a4f 0 0 ! c 2 130da 1a netscript2/docs/netscript/ ! c 2 130d7 b directories ! C DmBag 5 13029 3 ! c 2 1305f e3 b ! C DmDictionary 0 1302b 3 ! C DmString 1 1303d 38 b ! C DmSet 0 12eb2 1 ! C DmString 1 13017 4 Html ! L 13017 ! c 1 1303c a categories ! c 1 1302d 11 INSTALLATION.html ! c 1 1302c 4 name ! C DmInteger 2 1303f 1 ! c 1 1303e 9 substMode ! c 2 13094 e2 b ! C DmDictionary 0 13060 3 ! C DmString 1 13072 36 b ! C DmSet 0 44c5 1 ! C DmString 1 44f3 5 Other ! L 44f3 ! c 1 13071 a categories ! c 1 13062 c REQUIREMENTS ! c 1 13061 4 name ! C DmInteger 2 13074 80000001 ! c 1 13073 9 substMode ! c 2 130c9 e0 b ! C DmDictionary 0 13095 3 ! C DmString 1 130a7 35 b ! C DmSet 0 4504 1 ! C DmString 1 4532 4 Html ! L 4532 ! c 1 130a6 a categories ! c 1 13097 11 REQUIREMENTS.html ! c 1 13096 4 name ! C DmInteger 2 130a9 1 ! c 1 130a8 9 substMode ! c 2 130ca 5 files ! c 2 13023 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 13022 6 launch ! c 2 1301f 4 make ! c 2 1301e 4 make ! c 2 13021 0 ! c 2 13020 8 makeFile ! c 5 13024 2 ! c 2 13026 8 examples ! c 2 13027 3 src ! c 2 13028 7 modules ! c 2 1301d 9 netscript ! c 2 1301c 4 name |
From: Jan T. <de...@us...> - 2003-06-03 22:39:00
|
Update of /cvsroot/net-script/netscript2/src/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv22656 Added Files: src.xml src.xsl Log Message: * added script for displaying source code --- NEW FILE: src.xml --- <?xml version="1.0"?> <!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # NetScript 2.0 Demo Script - Displays the source code of another # script. # $Id: src.xml,v 1.1 2003/06/03 22:38:57 derkork Exp $ # # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--> <!-- Source code of the script --> <?netscript use XSLT?> <ns:ignore xmlns:ns="http://netscript.insomnia-hq.de"> <?netscript include $(P.src)?> <xsl:transform default="./src.xsl" xmlns:xsl="http://xslt.netscript.insomnia-hq.de"/> </ns:ignore> <!-- End source code --> --- NEW FILE: src.xsl --- <?xml version="1.0"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:ns="http://netscript.insomnia-hq.de" version="1.0"> <xsl:preserve-space elements="*"/> <xsl:variable name="bgColor">#F7F7D7</xsl:variable> <xsl:variable name="commentColor">#AE6579</xsl:variable> <xsl:variable name="pcColor">#9696EF</xsl:variable> <xsl:variable name="tagColor">#9696EF</xsl:variable> <xsl:variable name="attributeNameColor">#9E9Af7</xsl:variable> <xsl:variable name="attributeValueColor">#DFA620</xsl:variable> <!-- match the root node --> <xsl:template match="/"> <html> <head> <!-- Set UTF-8 for   --> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> <title>Source code</title> </head> <body bgcolor="{$bgColor}"> <pre> <xsl:apply-templates/> </pre> </body> </html> </xsl:template> <!-- match all tags --> <xsl:template match="*"> <font color="{$tagColor}"><b><<xsl:value-of select="name()"/></b></font> <xsl:apply-templates select="@*"/> <xsl:choose> <!-- no child nodes --> <xsl:when test="count(./node()) = 0"><font color="{$tagColor}"><b>/></b></font> </xsl:when> <!-- apply child nodes --> <xsl:otherwise> <font color="{$tagColor}"><b>></b></font> <xsl:apply-templates/> <font color="{$tagColor}"><b></<xsl:value-of select="name()"/>></b></font> </xsl:otherwise> </xsl:choose> </xsl:template> <!-- match comment --> <xsl:template match="comment()"> <font color="{$commentColor}"><i><!--<xsl:value-of select="."/>--></i><br/></font> </xsl:template> <!-- match processing instruction --> <xsl:template match="processing-instruction()"> <font color="{$pcColor}"><b><?<xsl:value-of select="name()"/></b> <i><xsl:value-of select="."/></i> <b>?></b></font> </xsl:template> <!-- match all attributes --> <xsl:template match="@*"> <font color="{$attributeNameColor}"> <xsl:value-of select="name()"/>=</font><font color="{$attributeValueColor}">"<xsl:value-of select="."/>"</font></xsl:template> <!-- match text --> <xsl:template match="text()"> <xsl:value-of select="."/> </xsl:template> </xsl:stylesheet> |
From: Jan T. <de...@us...> - 2003-06-03 22:38:52
|
Update of /cvsroot/net-script/netscript2/src/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv22568 Modified Files: wipeout.project Log Message: * added script for displaying source code Index: wipeout.project =================================================================== RCS file: /cvsroot/net-script/netscript2/src/scripts/wipeout.project,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** wipeout.project 2 Jun 2003 21:49:17 -0000 1.5 --- wipeout.project 3 Jun 2003 22:38:49 -0000 1.6 *************** *** 1,314 **** b ! C DmDictionary 0 1bad0 8 ! c 0 1bd91 9 ! C Category 1 c46b ! c 0 1bdc5 4 ! C DmString 2 1bdcc 2 e3 ! c 2 1bdcb a defaultExe ! C DmSet 3 1bdce 1 ! c 2 c47a 2 e3 ! L c47a ! c 2 1bdcd b executables ! c 3 1bdc9 3 ! c 2 c481 3 *.C ! L c481 ! c 2 c484 4 *.cc ! L c484 ! c 2 c487 5 *.cpp ! L c487 ! c 2 1bdc8 a extensions ! c 2 1bdc7 a CPP_source ! c 2 1bdc6 4 name ! c 2 1bd93 a CPP_source ! c 1 c49c ! c 0 1be0b 4 ! c 2 1be12 2 e3 ! c 2 1be11 a defaultExe ! c 3 1be14 1 ! c 2 c4a9 2 e3 ! L c4a9 ! c 2 1be13 b executables ! c 3 1be0f 1 ! c 2 c4b0 3 *.c ! L c4b0 ! c 2 1be0e a extensions ! c 2 1be0d 8 C_source ! c 2 1be0c 4 name ! c 2 1bd94 8 C_source ! c 1 c4c5 ! c 0 1be45 4 ! c 2 1be4c 2 e3 ! c 2 1be4b a defaultExe ! c 3 1be4e 1 ! c 2 c4d2 2 e3 ! L c4d2 ! c 2 1be4d b executables ! c 3 1be49 1 ! c 2 c4d9 3 *.e ! L c4d9 ! c 2 1be48 a extensions ! c 2 1be47 6 Eiffel ! c 2 1be46 4 name ! c 2 1bd95 6 Eiffel ! c 1 c4ee ! c 0 1be7f 4 ! c 2 1be86 2 e3 ! c 2 1be85 a defaultExe ! c 3 1be88 1 ! c 2 c4fb 2 e3 ! L c4fb ! c 2 1be87 b executables ! c 3 1be83 4 ! c 2 c502 3 *.F ! L c502 ! c 2 c505 3 *.f ! L c505 ! c 2 c508 5 *.for ! L c508 ! c 2 c50b 5 *.fpp ! L c50b ! c 2 1be82 a extensions ! c 2 1be81 7 Fortran ! c 2 1be80 4 name ! c 2 1bd96 7 Fortran ! c 1 c520 ! c 0 1bec5 4 ! c 2 1becc 2 e3 ! c 2 1becb a defaultExe ! c 3 1bece 1 ! c 2 c52d 2 e3 ! L c52d ! c 2 1becd b executables ! c 3 1bec9 2 ! c 2 c534 3 *.H ! L c534 ! c 2 c537 3 *.h ! L c537 ! c 2 1bec8 a extensions ! c 2 1bec7 6 Header ! c 2 1bec6 4 name ! c 2 1bd97 6 Header ! c 1 c54c ! c 0 1bf03 4 ! c 2 1bf0a 9 surfboard ! c 2 1bf09 a defaultExe ! c 3 1bf0c 2 ! c 2 c559 2 e3 ! L c559 ! c 2 c55c 9 surfboard ! L c55c ! c 2 1bf0b b executables ! c 3 1bf07 2 ! c 2 c563 5 *.htm ! L c563 ! c 2 c566 6 *.html ! L c566 ! c 2 1bf06 a extensions ! c 2 1bf05 4 Html ! c 2 1bf04 4 name ! c 2 1bd98 4 Html ! c 1 c57b ! c 0 1bf45 4 ! c 2 1bf4c 2 e3 ! c 2 1bf4b a defaultExe ! c 3 1bf4e 1 ! c 2 c588 2 e3 ! L c588 ! c 2 1bf4d b executables ! c 3 1bf49 1 ! c 2 c58f 6 *.java ! L c58f ! c 2 1bf48 a extensions ! c 2 1bf47 4 Java ! c 2 1bf46 4 name ! c 2 1bd99 4 Java ! c 1 c5a4 ! c 0 1bf7f 4 ! c 2 1bf86 2 e3 ! c 2 1bf85 a defaultExe ! c 3 1bf88 1 ! c 2 c5b1 2 e3 ! L c5b1 ! c 2 1bf87 b executables ! c 3 1bf83 1 ! c 2 c5b8 5 *.tex ! L c5b8 ! c 2 1bf82 a extensions ! c 2 1bf81 5 Latex ! c 2 1bf80 4 name ! c 2 1bd9a 5 Latex ! c 1 c5cd ! c 0 1bfb9 4 ! c 2 1bfc0 2 e3 ! c 2 1bfbf a defaultExe ! c 3 1bfc2 1 ! c 2 c5da 2 e3 ! L c5da ! c 2 1bfc1 b executables ! c 3 1bfbd 0 ! c 2 1bfbc a extensions ! c 2 1bfbb 5 Other ! c 2 1bfba 4 name ! c 2 1bd9b 5 Other ! c 2 1bd90 a categories ! c 0 1bd9d 1 ! C ProjectDir 4 c5f7 ! c 2 c5f8 17 netscript2/src/scripts/ 11 81 ! c 2 c5f9 0 0 ! c 2 1bd9f 17 netscript2/src/scripts/ ! c 2 1bd9c b directories ! C DmBag 5 1badc d ! c 2 1bb12 e5 b ! C DmDictionary 0 1bade 3 ! C DmString 1 1baf0 36 b ! C DmSet 0 c643 1 ! C DmString 1 c671 5 Other ! L c671 ! c 1 1baef a categories ! c 1 1bae0 f allfeatures.xml ! c 1 1badf 4 name ! C DmInteger 2 1baf2 80000001 ! c 1 1baf1 9 substMode ! c 2 1bb47 d7 b ! C DmDictionary 0 1bb13 3 ! C DmString 1 1bb25 36 b ! C DmSet 0 c682 1 ! C DmString 1 c6b0 5 Other ! L c6b0 ! c 1 1bb24 a categories ! c 1 1bb15 8 core.xml ! c 1 1bb14 4 name ! C DmInteger 2 1bb27 1 ! c 1 1bb26 9 substMode ! c 2 1bb7c db b ! C DmDictionary 0 1bb48 3 ! C DmString 1 1bb5a 36 b ! C DmSet 0 c6c1 1 ! C DmString 1 c6ef 5 Other ! L c6ef ! c 1 1bb59 a categories ! c 1 1bb4a c database.xml ! c 1 1bb49 4 name ! C DmInteger 2 1bb5c 1 ! c 1 1bb5b 9 substMode ! c 2 1bbb1 d8 b ! C DmDictionary 0 1bb7d 3 ! C DmString 1 1bb8f 36 b ! C DmSet 0 c700 1 ! C DmString 1 c72e 5 Other ! L c72e ! c 1 1bb8e a categories ! c 1 1bb7f 9 files.xml ! c 1 1bb7e 4 name ! C DmInteger 2 1bb91 1 ! c 1 1bb90 9 substMode ! c 2 1bbe6 d8 b ! C DmDictionary 0 1bbb2 3 ! C DmString 1 1bbc4 36 b ! C DmSet 0 c73f 1 ! C DmString 1 c76d 5 Other ! L c76d ! c 1 1bbc3 a categories ! c 1 1bbb4 9 forms.xml ! c 1 1bbb3 4 name ! C DmInteger 2 1bbc6 1 ! c 1 1bbc5 9 substMode ! c 2 1bc1b dd b ! C DmDictionary 0 1bbe7 3 ! C DmString 1 1bbf9 39 b ! C DmSet 0 1b96b 1 ! C DmString 1 1bac5 5 Other ! L 1bac5 ! c 1 1bbf8 a categories ! c 1 1bbe9 b include.xml ! c 1 1bbe8 4 name ! C DmInteger 2 1bbfb 1 ! c 1 1bbfa 9 substMode ! c 2 1bc50 de b ! C DmDictionary 0 1bc1c 3 ! C DmString 1 1bc2e 36 b ! C DmSet 0 c77e 1 ! C DmString 1 c7ac 5 Other ! L c7ac ! c 1 1bc2d a categories ! c 1 1bc1e f rimport_src.xml ! c 1 1bc1d 4 name ! C DmInteger 2 1bc30 1 ! c 1 1bc2f 9 substMode ! c 2 1bc85 de b ! C DmDictionary 0 1bc51 3 ! C DmString 1 1bc63 36 b ! C DmSet 0 c7bd 1 ! C DmString 1 c7eb 5 Other ! L c7eb ! c 1 1bc62 a categories ! c 1 1bc53 f rimport_trg.xml ! c 1 1bc52 4 name ! C DmInteger 2 1bc65 1 ! c 1 1bc64 9 substMode ! c 2 1bcba da b ! C DmDictionary 0 1bc86 3 ! C DmString 1 1bc98 36 b ! C DmSet 0 c7fc 1 ! C DmString 1 c82a 5 Other ! L c82a ! c 1 1bc97 a categories ! c 1 1bc88 b strings.xml ! c 1 1bc87 4 name ! C DmInteger 2 1bc9a 1 ! c 1 1bc99 9 substMode ! c 2 1bcef d9 b ! C DmDictionary 0 1bcbb 3 ! C DmString 1 1bccd 36 b ! C DmSet 0 c83b 1 ! C DmString 1 c869 5 Other ! L c869 ! c 1 1bccc a categories ! c 1 1bcbd a upload.xml ! c 1 1bcbc 4 name ! C DmInteger 2 1bccf 1 ! c 1 1bcce 9 substMode ! c 2 1bd24 d7 b ! C DmDictionary 0 1bcf0 3 ! C DmString 1 1bd02 36 b ! C DmSet 0 c87a 1 ! C DmString 1 c8a8 5 Other ! L c8a8 ! c 1 1bd01 a categories ! c 1 1bcf2 8 xslt.xml ! c 1 1bcf1 4 name ! C DmInteger 2 1bd04 1 ! c 1 1bd03 9 substMode ! c 2 1bd59 d7 b ! C DmDictionary 0 1bd25 3 ! C DmString 1 1bd37 36 b ! C DmSet 0 c8b9 1 ! C DmString 1 c8e7 5 Other ! L c8e7 ! c 1 1bd36 a categories ! c 1 1bd27 8 xslt.xsl ! c 1 1bd26 4 name ! C DmInteger 2 1bd39 1 ! c 1 1bd38 9 substMode ! c 2 1bd8e dd b ! C DmDictionary 0 1bd5a 3 ! C DmString 1 1bd6c 36 b ! C DmSet 0 c8f8 1 ! C DmString 1 c926 5 Other ! L c926 ! c 1 1bd6b a categories ! c 1 1bd5c e xslt_gecko.xsl ! c 1 1bd5b 4 name ! C DmInteger 2 1bd6e 1 ! c 1 1bd6d 9 substMode ! c 2 1bd8f 5 files ! c 2 1bad8 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 1bad7 6 launch ! c 2 1bad4 4 make ! c 2 1bad3 4 make ! c 2 1bad6 0 ! c 2 1bad5 8 makeFile ! c 5 1bad9 0 ! c 2 1badb 7 modules ! c 2 1bad2 7 scripts ! c 2 1bad1 4 name --- 1,336 ---- b ! C DmDictionary 0 1b54d 8 ! c 0 1b878 9 ! C Category 1 c41f ! c 0 1b8ac 4 ! C DmString 2 1b8b3 2 e3 ! c 2 1b8b2 a defaultExe ! C DmSet 3 1b8b5 1 ! c 2 c42e 2 e3 ! L c42e ! c 2 1b8b4 b executables ! c 3 1b8b0 3 ! c 2 c435 3 *.C ! L c435 ! c 2 c438 4 *.cc ! L c438 ! c 2 c43b 5 *.cpp ! L c43b ! c 2 1b8af a extensions ! c 2 1b8ae a CPP_source ! c 2 1b8ad 4 name ! c 2 1b87a a CPP_source ! c 1 c450 ! c 0 1b8f2 4 ! c 2 1b8f9 2 e3 ! c 2 1b8f8 a defaultExe ! c 3 1b8fb 1 ! c 2 c45d 2 e3 ! L c45d ! c 2 1b8fa b executables ! c 3 1b8f6 1 ! c 2 c464 3 *.c ! L c464 ! c 2 1b8f5 a extensions ! c 2 1b8f4 8 C_source ! c 2 1b8f3 4 name ! c 2 1b87b 8 C_source ! c 1 c479 ! c 0 1b92c 4 ! c 2 1b933 2 e3 ! c 2 1b932 a defaultExe ! c 3 1b935 1 ! c 2 c486 2 e3 ! L c486 ! c 2 1b934 b executables ! c 3 1b930 1 ! c 2 c48d 3 *.e ! L c48d ! c 2 1b92f a extensions ! c 2 1b92e 6 Eiffel ! c 2 1b92d 4 name ! c 2 1b87c 6 Eiffel ! c 1 c4a2 ! c 0 1b966 4 ! c 2 1b96d 2 e3 ! c 2 1b96c a defaultExe ! c 3 1b96f 1 ! c 2 c4af 2 e3 ! L c4af ! c 2 1b96e b executables ! c 3 1b96a 4 ! c 2 c4b6 3 *.F ! L c4b6 ! c 2 c4b9 3 *.f ! L c4b9 ! c 2 c4bc 5 *.for ! L c4bc ! c 2 c4bf 5 *.fpp ! L c4bf ! c 2 1b969 a extensions ! c 2 1b968 7 Fortran ! c 2 1b967 4 name ! c 2 1b87d 7 Fortran ! c 1 c4d4 ! c 0 1b9ac 4 ! c 2 1b9b3 2 e3 ! c 2 1b9b2 a defaultExe ! c 3 1b9b5 1 ! c 2 c4e1 2 e3 ! L c4e1 ! c 2 1b9b4 b executables ! c 3 1b9b0 2 ! c 2 c4e8 3 *.H ! L c4e8 ! c 2 c4eb 3 *.h ! L c4eb ! c 2 1b9af a extensions ! c 2 1b9ae 6 Header ! c 2 1b9ad 4 name ! c 2 1b87e 6 Header ! c 1 c500 ! c 0 1b9ea 4 ! c 2 1b9f1 9 surfboard ! c 2 1b9f0 a defaultExe ! c 3 1b9f3 2 ! c 2 c50d 2 e3 ! L c50d ! c 2 c510 9 surfboard ! L c510 ! c 2 1b9f2 b executables ! c 3 1b9ee 2 ! c 2 c517 5 *.htm ! L c517 ! c 2 c51a 6 *.html ! L c51a ! c 2 1b9ed a extensions ! c 2 1b9ec 4 Html ! c 2 1b9eb 4 name ! c 2 1b87f 4 Html ! c 1 c52f ! c 0 1ba2c 4 ! c 2 1ba33 2 e3 ! c 2 1ba32 a defaultExe ! c 3 1ba35 1 ! c 2 c53c 2 e3 ! L c53c ! c 2 1ba34 b executables ! c 3 1ba30 1 ! c 2 c543 6 *.java ! L c543 ! c 2 1ba2f a extensions ! c 2 1ba2e 4 Java ! c 2 1ba2d 4 name ! c 2 1b880 4 Java ! c 1 c558 ! c 0 1ba66 4 ! c 2 1ba6d 2 e3 ! c 2 1ba6c a defaultExe ! c 3 1ba6f 1 ! c 2 c565 2 e3 ! L c565 ! c 2 1ba6e b executables ! c 3 1ba6a 1 ! c 2 c56c 5 *.tex ! L c56c ! c 2 1ba69 a extensions ! c 2 1ba68 5 Latex ! c 2 1ba67 4 name ! c 2 1b881 5 Latex ! c 1 c581 ! c 0 1baa0 4 ! c 2 1baa7 2 e3 ! c 2 1baa6 a defaultExe ! c 3 1baa9 1 ! c 2 c58e 2 e3 ! L c58e ! c 2 1baa8 b executables ! c 3 1baa4 0 ! c 2 1baa3 a extensions ! c 2 1baa2 5 Other ! c 2 1baa1 4 name ! c 2 1b882 5 Other ! c 2 1b877 a categories ! c 0 1b884 1 ! C ProjectDir 4 c5ab ! c 2 c5ac 17 netscript2/src/scripts/ 11 81 ! c 2 c5ad 0 0 ! c 2 1b886 17 netscript2/src/scripts/ ! c 2 1b883 b directories ! C DmBag 5 1b559 f ! c 2 1b58f e5 b ! C DmDictionary 0 1b55b 3 ! C DmString 1 1b56d 36 b ! C DmSet 0 c5f9 1 ! C DmString 1 c627 5 Other ! L c627 ! c 1 1b56c a categories ! c 1 1b55d f allfeatures.xml ! c 1 1b55c 4 name ! C DmInteger 2 1b56f 80000001 ! c 1 1b56e 9 substMode ! c 2 1b5c4 d7 b ! C DmDictionary 0 1b590 3 ! C DmString 1 1b5a2 36 b ! C DmSet 0 c638 1 ! C DmString 1 c666 5 Other ! L c666 ! c 1 1b5a1 a categories ! c 1 1b592 8 core.xml ! c 1 1b591 4 name ! C DmInteger 2 1b5a4 1 ! c 1 1b5a3 9 substMode ! c 2 1b5f9 db b ! C DmDictionary 0 1b5c5 3 ! C DmString 1 1b5d7 36 b ! C DmSet 0 c677 1 ! C DmString 1 c6a5 5 Other ! L c6a5 ! c 1 1b5d6 a categories ! c 1 1b5c7 c database.xml ! c 1 1b5c6 4 name ! C DmInteger 2 1b5d9 1 ! c 1 1b5d8 9 substMode ! c 2 1b62e d8 b ! C DmDictionary 0 1b5fa 3 ! C DmString 1 1b60c 36 b ! C DmSet 0 c6b6 1 ! C DmString 1 c6e4 5 Other ! L c6e4 ! c 1 1b60b a categories ! c 1 1b5fc 9 files.xml ! c 1 1b5fb 4 name ! C DmInteger 2 1b60e 1 ! c 1 1b60d 9 substMode ! c 2 1b663 d8 b ! C DmDictionary 0 1b62f 3 ! C DmString 1 1b641 36 b ! C DmSet 0 c6f5 1 ! C DmString 1 c723 5 Other ! L c723 ! c 1 1b640 a categories ! c 1 1b631 9 forms.xml ! c 1 1b630 4 name ! C DmInteger 2 1b643 1 ! c 1 1b642 9 substMode ! c 2 1b698 da b ! C DmDictionary 0 1b664 3 ! C DmString 1 1b676 36 b ! C DmSet 0 c734 1 ! C DmString 1 c762 5 Other ! L c762 ! c 1 1b675 a categories ! c 1 1b666 b include.xml ! c 1 1b665 4 name ! C DmInteger 2 1b678 1 ! c 1 1b677 9 substMode ! c 2 1b6cd de b ! C DmDictionary 0 1b699 3 ! C DmString 1 1b6ab 36 b ! C DmSet 0 c773 1 ! C DmString 1 c7a1 5 Other ! L c7a1 ! c 1 1b6aa a categories ! c 1 1b69b f rimport_src.xml ! c 1 1b69a 4 name ! C DmInteger 2 1b6ad 1 ! c 1 1b6ac 9 substMode ! c 2 1b702 de b ! C DmDictionary 0 1b6ce 3 ! C DmString 1 1b6e0 36 b ! C DmSet 0 c7b2 1 ! C DmString 1 c7e0 5 Other ! L c7e0 ! c 1 1b6df a categories ! c 1 1b6d0 f rimport_trg.xml ! c 1 1b6cf 4 name ! C DmInteger 2 1b6e2 1 ! c 1 1b6e1 9 substMode ! c 2 1b737 d9 b ! C DmDictionary 0 1b703 3 ! C DmString 1 1b715 39 b ! C DmSet 0 1a967 1 ! C DmString 1 1aac1 5 Other ! L 1aac1 ! c 1 1b714 a categories ! c 1 1b705 7 src.xml ! c 1 1b704 4 name ! C DmInteger 2 1b717 1 ! c 1 1b716 9 substMode ! c 2 1b76c d9 b ! C DmDictionary 0 1b738 3 ! C DmString 1 1b74a 39 b ! C DmSet 0 1b3e8 1 ! C DmString 1 1b542 5 Other ! L 1b542 ! c 1 1b749 a categories ! c 1 1b73a 7 src.xsl ! c 1 1b739 4 name ! C DmInteger 2 1b74c 1 ! c 1 1b74b 9 substMode ! c 2 1b7a1 da b ! C DmDictionary 0 1b76d 3 ! C DmString 1 1b77f 36 b ! C DmSet 0 c7f1 1 ! C DmString 1 c81f 5 Other ! L c81f ! c 1 1b77e a categories ! c 1 1b76f b strings.xml ! c 1 1b76e 4 name ! C DmInteger 2 1b781 1 ! c 1 1b780 9 substMode ! c 2 1b7d6 d9 b ! C DmDictionary 0 1b7a2 3 ! C DmString 1 1b7b4 36 b ! C DmSet 0 c830 1 ! C DmString 1 c85e 5 Other ! L c85e ! c 1 1b7b3 a categories ! c 1 1b7a4 a upload.xml ! c 1 1b7a3 4 name ! C DmInteger 2 1b7b6 1 ! c 1 1b7b5 9 substMode ! c 2 1b80b d7 b ! C DmDictionary 0 1b7d7 3 ! C DmString 1 1b7e9 36 b ! C DmSet 0 c86f 1 ! C DmString 1 c89d 5 Other ! L c89d ! c 1 1b7e8 a categories ! c 1 1b7d9 8 xslt.xml ! c 1 1b7d8 4 name ! C DmInteger 2 1b7eb 1 ! c 1 1b7ea 9 substMode ! c 2 1b840 d7 b ! C DmDictionary 0 1b80c 3 ! C DmString 1 1b81e 36 b ! C DmSet 0 c8ae 1 ! C DmString 1 c8dc 5 Other ! L c8dc ! c 1 1b81d a categories ! c 1 1b80e 8 xslt.xsl ! c 1 1b80d 4 name ! C DmInteger 2 1b820 1 ! c 1 1b81f 9 substMode ! c 2 1b875 dd b ! C DmDictionary 0 1b841 3 ! C DmString 1 1b853 36 b ! C DmSet 0 c8ed 1 ! C DmString 1 c91b 5 Other ! L c91b ! c 1 1b852 a categories ! c 1 1b843 e xslt_gecko.xsl ! c 1 1b842 4 name ! C DmInteger 2 1b855 1 ! c 1 1b854 9 substMode ! c 2 1b876 5 files ! c 2 1b555 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 1b554 6 launch ! c 2 1b551 4 make ! c 2 1b550 4 make ! c 2 1b553 0 ! c 2 1b552 8 makeFile ! c 5 1b556 0 ! c 2 1b558 7 modules ! c 2 1b54f 7 scripts ! c 2 1b54e 4 name |
From: Jan T. <de...@us...> - 2003-06-02 21:50:32
|
Update of /cvsroot/net-script/netscript2/src/perl/XML/DAL In directory sc8-pr-cvs1:/tmp/cvs-serv7847/perl/XML/DAL Modified Files: LibXMLDAL.pm Log Message: * added <?netscript include ?> directive Index: LibXMLDAL.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DAL/LibXMLDAL.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** LibXMLDAL.pm 1 Jun 2003 13:34:04 -0000 1.3 --- LibXMLDAL.pm 2 Jun 2003 21:49:16 -0000 1.4 *************** *** 394,399 **** sub importNode { my ( $this, $document, $node, $deep ) = @_; ! my $clone = $node -> cloneNode( $deep ); ! return $document -> importNode( $clone ); } --- 394,402 ---- sub importNode { my ( $this, $document, $node, $deep ) = @_; ! unless ($deep) { ! $node = $node -> cloneNode( $deep ); #make a shallow copy ! } ! ! return $document -> importNode( $node ); } |
From: Jan T. <de...@us...> - 2003-06-02 21:50:32
|
Update of /cvsroot/net-script/netscript2/src/perl/NetScript/Engine In directory sc8-pr-cvs1:/tmp/cvs-serv7847/perl/NetScript/Engine Modified Files: DOMWalker.pm Log Message: * added <?netscript include ?> directive Index: DOMWalker.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/NetScript/Engine/DOMWalker.pm,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** DOMWalker.pm 31 May 2003 22:39:33 -0000 1.12 --- DOMWalker.pm 2 Jun 2003 21:49:16 -0000 1.13 *************** *** 215,220 **** # set current target node to new node ! if ( $this -> dal() -> isElementNode( $clone ) && $isRefNode ) { ! $this -> setCurrentTarget( $clone ) ; if ( $this -> { m_is_firstNode } ) { --- 215,222 ---- # set current target node to new node ! if ( $this -> dal() -> isElementNode( $clone ) ) { ! if ( $isRefNode ) { ! $this -> setCurrentTarget( $clone ) ; ! } if ( $this -> { m_is_firstNode } ) { *************** *** 226,229 **** --- 228,252 ---- $clone; } + + #/** + # Inserts the given node and its subtree into the target without any + # processing. + # @param the node/subtree to insert. + #*/ + sub insertSubtreeIntoTarget { + my ($this, $node) = @_; + my $copy = $this -> dal() -> importNode( $this -> targetDocument(), $node, 1 ); + + $this -> dal() -> appendChild( $this -> currentTarget(), $copy ); + if ( $this -> dal() -> isElementNode( $copy ) ) { + if ( $this -> { m_is_firstNode } ) { + $this -> dal() -> setDocumentElement( $this -> targetDocument(), + $copy ); + $this -> { m_is_firstNode } = 0; + } + } + } + + #/** |
From: Jan T. <de...@us...> - 2003-06-02 21:49:59
|
Update of /cvsroot/net-script/netscript2/src/perl In directory sc8-pr-cvs1:/tmp/cvs-serv7847/perl Modified Files: configuration Log Message: * added <?netscript include ?> directive Index: configuration =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/configuration,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** configuration 31 May 2003 22:39:32 -0000 1.3 --- configuration 2 Jun 2003 21:49:15 -0000 1.4 *************** *** 18,32 **** LIBDIR=/home/kork/public_html/cgi-bin/netscript2/NetScript/Libraries ! # Allow http-scriptURLs and HTTP-imports (yes/no) ? # Most people will say no here because # it allows an attacker to run arbitrary code on the system. ALLOW_REMOTE_SCRIPTS=no # The DOM Abstraction Layer (DAL) to use. Set this according to the # available Modules. ! # ! DAL=XML::DAL::LibXMLDAL # Use this only if you cannot find a better DOM implementation. XML::DOM2 is # fairly slow and should be used as last resort, only ! #DAL=XML::DAL::XMLDOM2DAL --- 18,36 ---- LIBDIR=/home/kork/public_html/cgi-bin/netscript2/NetScript/Libraries ! # Allow http-scriptURLs (yes/no) ? # Most people will say no here because # it allows an attacker to run arbitrary code on the system. ALLOW_REMOTE_SCRIPTS=no + # Allow access to remote locations (remote imports/includes/files) + # Most people will say yes here, no is the paranoid setting. + ALLOW_REMOTE_ACCESS=yes + # The DOM Abstraction Layer (DAL) to use. Set this according to the # available Modules. ! # The DAL for XML::LibXML ! #DAL=XML::DAL::LibXMLDAL # Use this only if you cannot find a better DOM implementation. XML::DOM2 is # fairly slow and should be used as last resort, only ! DAL=XML::DAL::XMLDOM2DAL |
From: Jan T. <de...@us...> - 2003-06-02 21:49:59
|
Update of /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries In directory sc8-pr-cvs1:/tmp/cvs-serv7847/perl/NetScript/Libraries Modified Files: ControlStructuresLibrary.pm Log Message: * added <?netscript include ?> directive Index: ControlStructuresLibrary.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries/ControlStructuresLibrary.pm,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** ControlStructuresLibrary.pm 31 May 2003 22:39:33 -0000 1.16 --- ControlStructuresLibrary.pm 2 Jun 2003 21:49:16 -0000 1.17 *************** *** 75,78 **** --- 75,85 ---- # destination document, the <ns:ignore>-tag disappears. # </p> + # Another import variant is the + # <pre> + # <?netscript include URL?> + # </pre> + # instruction. This works mostly like the <?netscript import URL?> instruction however, the + # code imported by this function is directly copied to the output document without + # any further processing. # <p> # There are occasions when the import-facility is not enough. One thing is *************** *** 541,551 **** return 0; # consume event } ! elsif ( $data =~ /^\s*import\s*([^\s]+)/ ) { #check for "import FILEURL" ! my $fileURL = $1; $fileURL = $se -> evaluateStatement( $fileURL ); $fileURL = $this -> checkURL( $fileURL ); if ( $fileURL =~ /^http:/ || $fileURL =~ /^ftp:/ ) { ! unless ( $this -> interpreter() -> getConfig() -> getSetting( "ALLOW_REMOTE_SCRIPTS" ) =~ /yes/ ) { $this -> getEventRelay() -> createAndRaiseEvent( $NetScript::Interpreter::FATAL_EVENT, --- 548,559 ---- return 0; # consume event } ! elsif ( $data =~ /^\s*(import|include)\s*([^\s]+)/ ) { #check for "import/include FILEURL" ! my $type = $1; ! my $fileURL = $2; $fileURL = $se -> evaluateStatement( $fileURL ); $fileURL = $this -> checkURL( $fileURL ); if ( $fileURL =~ /^http:/ || $fileURL =~ /^ftp:/ ) { ! unless ( $this -> interpreter() -> getConfig() -> getSetting( "ALLOW_REMOTE_ACCESS" ) =~ /yes/ ) { $this -> getEventRelay() -> createAndRaiseEvent( $NetScript::Interpreter::FATAL_EVENT, *************** *** 571,575 **** } ! $this -> importDocument( $document, $domWalker, $node ); return 0; # consume event } --- 579,588 ---- } ! if ( $type eq "import" ) { ! $this -> importDocument( $document, $domWalker, $node ); ! } ! else { ! $this -> includeDocument( $document, $domWalker, $node ); ! } return 0; # consume event } *************** *** 589,592 **** --- 602,628 ---- return 1; # do not consume event } + + + #/** + # Includes the given document into the target document. + # @param the document to import + # @param the DOMWalker + # @param the reference node + #*/ + sub includeDocument { + my ( $this, $document, $domWalker, $node ) = @_; + my $targetDocument = $domWalker -> targetDocument(); + my $children = $this -> dal() -> getChildNodes( $document ); + my $length = $this -> dal() -> getLength( $children ) - 1; + + # Import all nodes of the document to the current target document + for ( 0..$length ) { + $domWalker -> insertSubtreeIntoTarget( + $this -> dal() -> getItemAt( $children, $_ ) ); + } + # move source pointer to next node + $domWalker -> stepSourceNext(); + } + #/** |
From: Jan T. <de...@us...> - 2003-06-02 21:49:59
|
Update of /cvsroot/net-script/netscript2/src/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv7847/scripts Modified Files: core.xml wipeout.project Added Files: include.xml Log Message: * added <?netscript include ?> directive --- NEW FILE: include.xml --- <?xml version="1.0"?> <!--+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ # NetScript 2.0 Demo Script - include example # $Id: include.xml,v 1.1 2003/06/02 21:49:17 derkork Exp $ # # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++--> <ns:ignore xmlns:ns="http://netscript.insomnia-hq.de"> <!-- Include self --> <?netscript include ./include.xml?> </ns:ignore> Index: core.xml =================================================================== RCS file: /cvsroot/net-script/netscript2/src/scripts/core.xml,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** core.xml 21 Aug 2002 10:40:04 -0000 1.1.1.1 --- core.xml 2 Jun 2003 21:49:17 -0000 1.2 *************** *** 92,96 **** <ns:invoke var="aCar" method="printYourself"/><br/> </ns:while> - That's it. We are finished. </body> --- 92,95 ---- Index: wipeout.project =================================================================== RCS file: /cvsroot/net-script/netscript2/src/scripts/wipeout.project,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** wipeout.project 31 May 2003 22:41:22 -0000 1.4 --- wipeout.project 2 Jun 2003 21:49:17 -0000 1.5 *************** *** 1,303 **** b ! C DmDictionary 0 621dc 8 ! c 0 62468 9 ! C Category 1 c2c3 ! c 0 6249c 4 ! C DmString 2 624a3 2 e3 ! c 2 624a2 a defaultExe ! C DmSet 3 624a5 1 ! c 2 c2d2 2 e3 ! L c2d2 ! c 2 624a4 b executables ! c 3 624a0 3 ! c 2 c2d9 3 *.C ! L c2d9 ! c 2 c2dc 4 *.cc ! L c2dc ! c 2 c2df 5 *.cpp ! L c2df ! c 2 6249f a extensions ! c 2 6249e a CPP_source ! c 2 6249d 4 name ! c 2 6246a a CPP_source ! c 1 c2f4 ! c 0 624e2 4 ! c 2 624e9 2 e3 ! c 2 624e8 a defaultExe ! c 3 624eb 1 ! c 2 c301 2 e3 ! L c301 ! c 2 624ea b executables ! c 3 624e6 1 ! c 2 c308 3 *.c ! L c308 ! c 2 624e5 a extensions ! c 2 624e4 8 C_source ! c 2 624e3 4 name ! c 2 6246b 8 C_source ! c 1 c31d ! c 0 6251c 4 ! c 2 62523 2 e3 ! c 2 62522 a defaultExe ! c 3 62525 1 ! c 2 c32a 2 e3 ! L c32a ! c 2 62524 b executables ! c 3 62520 1 ! c 2 c331 3 *.e ! L c331 ! c 2 6251f a extensions ! c 2 6251e 6 Eiffel ! c 2 6251d 4 name ! c 2 6246c 6 Eiffel ! c 1 c346 ! c 0 62556 4 ! c 2 6255d 2 e3 ! c 2 6255c a defaultExe ! c 3 6255f 1 ! c 2 c353 2 e3 ! L c353 ! c 2 6255e b executables ! c 3 6255a 4 ! c 2 c35a 3 *.F ! L c35a ! c 2 c35d 3 *.f ! L c35d ! c 2 c360 5 *.for ! L c360 ! c 2 c363 5 *.fpp ! L c363 ! c 2 62559 a extensions ! c 2 62558 7 Fortran ! c 2 62557 4 name ! c 2 6246d 7 Fortran ! c 1 c378 ! c 0 6259c 4 ! c 2 625a3 2 e3 ! c 2 625a2 a defaultExe ! c 3 625a5 1 ! c 2 c385 2 e3 ! L c385 ! c 2 625a4 b executables ! c 3 625a0 2 ! c 2 c38c 3 *.H ! L c38c ! c 2 c38f 3 *.h ! L c38f ! c 2 6259f a extensions ! c 2 6259e 6 Header ! c 2 6259d 4 name ! c 2 6246e 6 Header ! c 1 c3a4 ! c 0 625da 4 ! c 2 625e1 9 surfboard ! c 2 625e0 a defaultExe ! c 3 625e3 2 ! c 2 c3b1 2 e3 ! L c3b1 ! c 2 c3b4 9 surfboard ! L c3b4 ! c 2 625e2 b executables ! c 3 625de 2 ! c 2 c3bb 5 *.htm ! L c3bb ! c 2 c3be 6 *.html ! L c3be ! c 2 625dd a extensions ! c 2 625dc 4 Html ! c 2 625db 4 name ! c 2 6246f 4 Html ! c 1 c3d3 ! c 0 6261c 4 ! c 2 62623 2 e3 ! c 2 62622 a defaultExe ! c 3 62625 1 ! c 2 c3e0 2 e3 ! L c3e0 ! c 2 62624 b executables ! c 3 62620 1 ! c 2 c3e7 6 *.java ! L c3e7 ! c 2 6261f a extensions ! c 2 6261e 4 Java ! c 2 6261d 4 name ! c 2 62470 4 Java ! c 1 c3fc ! c 0 62656 4 ! c 2 6265d 2 e3 ! c 2 6265c a defaultExe ! c 3 6265f 1 ! c 2 c409 2 e3 ! L c409 ! c 2 6265e b executables ! c 3 6265a 1 ! c 2 c410 5 *.tex ! L c410 ! c 2 62659 a extensions ! c 2 62658 5 Latex ! c 2 62657 4 name ! c 2 62471 5 Latex ! c 1 c425 ! c 0 62690 4 ! c 2 62697 2 e3 ! c 2 62696 a defaultExe ! c 3 62699 1 ! c 2 c432 2 e3 ! L c432 ! c 2 62698 b executables ! c 3 62694 0 ! c 2 62693 a extensions ! c 2 62692 5 Other ! c 2 62691 4 name ! c 2 62472 5 Other ! c 2 62467 a categories ! c 0 62474 1 ! C ProjectDir 4 c44f ! c 2 c450 17 netscript2/src/scripts/ 11 81 ! c 2 c451 0 0 ! c 2 62476 17 netscript2/src/scripts/ ! c 2 62473 b directories ! C DmBag 5 621e8 c ! c 2 6221e e8 b ! C DmDictionary 0 621ea 3 ! C DmString 1 621fc 39 b ! C DmSet 0 1ae0b 1 ! C DmString 1 1af65 5 Other ! L 1af65 ! c 1 621fb a categories ! c 1 621ec f allfeatures.xml ! c 1 621eb 4 name ! C DmInteger 2 621fe 80000001 ! c 1 621fd 9 substMode ! c 2 62253 d7 b ! C DmDictionary 0 6221f 3 ! C DmString 1 62231 36 b ! C DmSet 0 c493 1 ! C DmString 1 c4c1 5 Other ! L c4c1 ! c 1 62230 a categories ! c 1 62221 8 core.xml ! c 1 62220 4 name ! C DmInteger 2 62233 1 ! c 1 62232 9 substMode ! c 2 62288 db b ! C DmDictionary 0 62254 3 ! C DmString 1 62266 36 b ! C DmSet 0 c4d2 1 ! C DmString 1 c500 5 Other ! L c500 ! c 1 62265 a categories ! c 1 62256 c database.xml ! c 1 62255 4 name ! C DmInteger 2 62268 1 ! c 1 62267 9 substMode ! c 2 622bd d8 b ! C DmDictionary 0 62289 3 ! C DmString 1 6229b 36 b ! C DmSet 0 c511 1 ! C DmString 1 c53f 5 Other ! L c53f ! c 1 6229a a categories ! c 1 6228b 9 files.xml ! c 1 6228a 4 name ! C DmInteger 2 6229d 1 ! c 1 6229c 9 substMode ! c 2 622f2 d8 b ! C DmDictionary 0 622be 3 ! C DmString 1 622d0 36 b ! C DmSet 0 c550 1 ! C DmString 1 c57e 5 Other ! L c57e ! c 1 622cf a categories ! c 1 622c0 9 forms.xml ! c 1 622bf 4 name ! C DmInteger 2 622d2 1 ! c 1 622d1 9 substMode ! c 2 62327 de b ! C DmDictionary 0 622f3 3 ! C DmString 1 62305 36 b ! C DmSet 0 c58f 1 ! C DmString 1 c5bd 5 Other ! L c5bd ! c 1 62304 a categories ! c 1 622f5 f rimport_src.xml ! c 1 622f4 4 name ! C DmInteger 2 62307 1 ! c 1 62306 9 substMode ! c 2 6235c de b ! C DmDictionary 0 62328 3 ! C DmString 1 6233a 36 b ! C DmSet 0 c5ce 1 ! C DmString 1 c5fc 5 Other ! L c5fc ! c 1 62339 a categories ! c 1 6232a f rimport_trg.xml ! c 1 62329 4 name ! C DmInteger 2 6233c 1 ! c 1 6233b 9 substMode ! c 2 62391 da b ! C DmDictionary 0 6235d 3 ! C DmString 1 6236f 36 b ! C DmSet 0 c60d 1 ! C DmString 1 c63b 5 Other ! L c63b ! c 1 6236e a categories ! c 1 6235f b strings.xml ! c 1 6235e 4 name ! C DmInteger 2 62371 1 ! c 1 62370 9 substMode ! c 2 623c6 d9 b ! C DmDictionary 0 62392 3 ! C DmString 1 623a4 36 b ! C DmSet 0 c64c 1 ! C DmString 1 c67a 5 Other ! L c67a ! c 1 623a3 a categories ! c 1 62394 a upload.xml ! c 1 62393 4 name ! C DmInteger 2 623a6 1 ! c 1 623a5 9 substMode ! c 2 623fb da b ! C DmDictionary 0 623c7 3 ! C DmString 1 623d9 39 b ! C DmSet 0 42f22 1 ! C DmString 1 4307c 5 Other ! L 4307c ! c 1 623d8 a categories ! c 1 623c9 8 xslt.xml ! c 1 623c8 4 name ! C DmInteger 2 623db 1 ! c 1 623da 9 substMode ! c 2 62430 da b ! C DmDictionary 0 623fc 3 ! C DmString 1 6240e 39 b ! C DmSet 0 438c2 1 ! C DmString 1 43a1c 5 Other ! L 43a1c ! c 1 6240d a categories ! c 1 623fe 8 xslt.xsl ! c 1 623fd 4 name ! C DmInteger 2 62410 1 ! c 1 6240f 9 substMode ! c 2 62465 e0 b ! C DmDictionary 0 62431 3 ! C DmString 1 62443 39 b ! C DmSet 0 62077 1 ! C DmString 1 621d1 5 Other ! L 621d1 ! c 1 62442 a categories ! c 1 62433 e xslt_gecko.xsl ! c 1 62432 4 name ! C DmInteger 2 62445 1 ! c 1 62444 9 substMode ! c 2 62466 5 files ! c 2 621e4 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 621e3 6 launch ! c 2 621e0 4 make ! c 2 621df 4 make ! c 2 621e2 0 ! c 2 621e1 8 makeFile ! c 5 621e5 0 ! c 2 621e7 7 modules ! c 2 621de 7 scripts ! c 2 621dd 4 name --- 1,314 ---- b ! C DmDictionary 0 1bad0 8 ! c 0 1bd91 9 ! C Category 1 c46b ! c 0 1bdc5 4 ! C DmString 2 1bdcc 2 e3 ! c 2 1bdcb a defaultExe ! C DmSet 3 1bdce 1 ! c 2 c47a 2 e3 ! L c47a ! c 2 1bdcd b executables ! c 3 1bdc9 3 ! c 2 c481 3 *.C ! L c481 ! c 2 c484 4 *.cc ! L c484 ! c 2 c487 5 *.cpp ! L c487 ! c 2 1bdc8 a extensions ! c 2 1bdc7 a CPP_source ! c 2 1bdc6 4 name ! c 2 1bd93 a CPP_source ! c 1 c49c ! c 0 1be0b 4 ! c 2 1be12 2 e3 ! c 2 1be11 a defaultExe ! c 3 1be14 1 ! c 2 c4a9 2 e3 ! L c4a9 ! c 2 1be13 b executables ! c 3 1be0f 1 ! c 2 c4b0 3 *.c ! L c4b0 ! c 2 1be0e a extensions ! c 2 1be0d 8 C_source ! c 2 1be0c 4 name ! c 2 1bd94 8 C_source ! c 1 c4c5 ! c 0 1be45 4 ! c 2 1be4c 2 e3 ! c 2 1be4b a defaultExe ! c 3 1be4e 1 ! c 2 c4d2 2 e3 ! L c4d2 ! c 2 1be4d b executables ! c 3 1be49 1 ! c 2 c4d9 3 *.e ! L c4d9 ! c 2 1be48 a extensions ! c 2 1be47 6 Eiffel ! c 2 1be46 4 name ! c 2 1bd95 6 Eiffel ! c 1 c4ee ! c 0 1be7f 4 ! c 2 1be86 2 e3 ! c 2 1be85 a defaultExe ! c 3 1be88 1 ! c 2 c4fb 2 e3 ! L c4fb ! c 2 1be87 b executables ! c 3 1be83 4 ! c 2 c502 3 *.F ! L c502 ! c 2 c505 3 *.f ! L c505 ! c 2 c508 5 *.for ! L c508 ! c 2 c50b 5 *.fpp ! L c50b ! c 2 1be82 a extensions ! c 2 1be81 7 Fortran ! c 2 1be80 4 name ! c 2 1bd96 7 Fortran ! c 1 c520 ! c 0 1bec5 4 ! c 2 1becc 2 e3 ! c 2 1becb a defaultExe ! c 3 1bece 1 ! c 2 c52d 2 e3 ! L c52d ! c 2 1becd b executables ! c 3 1bec9 2 ! c 2 c534 3 *.H ! L c534 ! c 2 c537 3 *.h ! L c537 ! c 2 1bec8 a extensions ! c 2 1bec7 6 Header ! c 2 1bec6 4 name ! c 2 1bd97 6 Header ! c 1 c54c ! c 0 1bf03 4 ! c 2 1bf0a 9 surfboard ! c 2 1bf09 a defaultExe ! c 3 1bf0c 2 ! c 2 c559 2 e3 ! L c559 ! c 2 c55c 9 surfboard ! L c55c ! c 2 1bf0b b executables ! c 3 1bf07 2 ! c 2 c563 5 *.htm ! L c563 ! c 2 c566 6 *.html ! L c566 ! c 2 1bf06 a extensions ! c 2 1bf05 4 Html ! c 2 1bf04 4 name ! c 2 1bd98 4 Html ! c 1 c57b ! c 0 1bf45 4 ! c 2 1bf4c 2 e3 ! c 2 1bf4b a defaultExe ! c 3 1bf4e 1 ! c 2 c588 2 e3 ! L c588 ! c 2 1bf4d b executables ! c 3 1bf49 1 ! c 2 c58f 6 *.java ! L c58f ! c 2 1bf48 a extensions ! c 2 1bf47 4 Java ! c 2 1bf46 4 name ! c 2 1bd99 4 Java ! c 1 c5a4 ! c 0 1bf7f 4 ! c 2 1bf86 2 e3 ! c 2 1bf85 a defaultExe ! c 3 1bf88 1 ! c 2 c5b1 2 e3 ! L c5b1 ! c 2 1bf87 b executables ! c 3 1bf83 1 ! c 2 c5b8 5 *.tex ! L c5b8 ! c 2 1bf82 a extensions ! c 2 1bf81 5 Latex ! c 2 1bf80 4 name ! c 2 1bd9a 5 Latex ! c 1 c5cd ! c 0 1bfb9 4 ! c 2 1bfc0 2 e3 ! c 2 1bfbf a defaultExe ! c 3 1bfc2 1 ! c 2 c5da 2 e3 ! L c5da ! c 2 1bfc1 b executables ! c 3 1bfbd 0 ! c 2 1bfbc a extensions ! c 2 1bfbb 5 Other ! c 2 1bfba 4 name ! c 2 1bd9b 5 Other ! c 2 1bd90 a categories ! c 0 1bd9d 1 ! C ProjectDir 4 c5f7 ! c 2 c5f8 17 netscript2/src/scripts/ 11 81 ! c 2 c5f9 0 0 ! c 2 1bd9f 17 netscript2/src/scripts/ ! c 2 1bd9c b directories ! C DmBag 5 1badc d ! c 2 1bb12 e5 b ! C DmDictionary 0 1bade 3 ! C DmString 1 1baf0 36 b ! C DmSet 0 c643 1 ! C DmString 1 c671 5 Other ! L c671 ! c 1 1baef a categories ! c 1 1bae0 f allfeatures.xml ! c 1 1badf 4 name ! C DmInteger 2 1baf2 80000001 ! c 1 1baf1 9 substMode ! c 2 1bb47 d7 b ! C DmDictionary 0 1bb13 3 ! C DmString 1 1bb25 36 b ! C DmSet 0 c682 1 ! C DmString 1 c6b0 5 Other ! L c6b0 ! c 1 1bb24 a categories ! c 1 1bb15 8 core.xml ! c 1 1bb14 4 name ! C DmInteger 2 1bb27 1 ! c 1 1bb26 9 substMode ! c 2 1bb7c db b ! C DmDictionary 0 1bb48 3 ! C DmString 1 1bb5a 36 b ! C DmSet 0 c6c1 1 ! C DmString 1 c6ef 5 Other ! L c6ef ! c 1 1bb59 a categories ! c 1 1bb4a c database.xml ! c 1 1bb49 4 name ! C DmInteger 2 1bb5c 1 ! c 1 1bb5b 9 substMode ! c 2 1bbb1 d8 b ! C DmDictionary 0 1bb7d 3 ! C DmString 1 1bb8f 36 b ! C DmSet 0 c700 1 ! C DmString 1 c72e 5 Other ! L c72e ! c 1 1bb8e a categories ! c 1 1bb7f 9 files.xml ! c 1 1bb7e 4 name ! C DmInteger 2 1bb91 1 ! c 1 1bb90 9 substMode ! c 2 1bbe6 d8 b ! C DmDictionary 0 1bbb2 3 ! C DmString 1 1bbc4 36 b ! C DmSet 0 c73f 1 ! C DmString 1 c76d 5 Other ! L c76d ! c 1 1bbc3 a categories ! c 1 1bbb4 9 forms.xml ! c 1 1bbb3 4 name ! C DmInteger 2 1bbc6 1 ! c 1 1bbc5 9 substMode ! c 2 1bc1b dd b ! C DmDictionary 0 1bbe7 3 ! C DmString 1 1bbf9 39 b ! C DmSet 0 1b96b 1 ! C DmString 1 1bac5 5 Other ! L 1bac5 ! c 1 1bbf8 a categories ! c 1 1bbe9 b include.xml ! c 1 1bbe8 4 name ! C DmInteger 2 1bbfb 1 ! c 1 1bbfa 9 substMode ! c 2 1bc50 de b ! C DmDictionary 0 1bc1c 3 ! C DmString 1 1bc2e 36 b ! C DmSet 0 c77e 1 ! C DmString 1 c7ac 5 Other ! L c7ac ! c 1 1bc2d a categories ! c 1 1bc1e f rimport_src.xml ! c 1 1bc1d 4 name ! C DmInteger 2 1bc30 1 ! c 1 1bc2f 9 substMode ! c 2 1bc85 de b ! C DmDictionary 0 1bc51 3 ! C DmString 1 1bc63 36 b ! C DmSet 0 c7bd 1 ! C DmString 1 c7eb 5 Other ! L c7eb ! c 1 1bc62 a categories ! c 1 1bc53 f rimport_trg.xml ! c 1 1bc52 4 name ! C DmInteger 2 1bc65 1 ! c 1 1bc64 9 substMode ! c 2 1bcba da b ! C DmDictionary 0 1bc86 3 ! C DmString 1 1bc98 36 b ! C DmSet 0 c7fc 1 ! C DmString 1 c82a 5 Other ! L c82a ! c 1 1bc97 a categories ! c 1 1bc88 b strings.xml ! c 1 1bc87 4 name ! C DmInteger 2 1bc9a 1 ! c 1 1bc99 9 substMode ! c 2 1bcef d9 b ! C DmDictionary 0 1bcbb 3 ! C DmString 1 1bccd 36 b ! C DmSet 0 c83b 1 ! C DmString 1 c869 5 Other ! L c869 ! c 1 1bccc a categories ! c 1 1bcbd a upload.xml ! c 1 1bcbc 4 name ! C DmInteger 2 1bccf 1 ! c 1 1bcce 9 substMode ! c 2 1bd24 d7 b ! C DmDictionary 0 1bcf0 3 ! C DmString 1 1bd02 36 b ! C DmSet 0 c87a 1 ! C DmString 1 c8a8 5 Other ! L c8a8 ! c 1 1bd01 a categories ! c 1 1bcf2 8 xslt.xml ! c 1 1bcf1 4 name ! C DmInteger 2 1bd04 1 ! c 1 1bd03 9 substMode ! c 2 1bd59 d7 b ! C DmDictionary 0 1bd25 3 ! C DmString 1 1bd37 36 b ! C DmSet 0 c8b9 1 ! C DmString 1 c8e7 5 Other ! L c8e7 ! c 1 1bd36 a categories ! c 1 1bd27 8 xslt.xsl ! c 1 1bd26 4 name ! C DmInteger 2 1bd39 1 ! c 1 1bd38 9 substMode ! c 2 1bd8e dd b ! C DmDictionary 0 1bd5a 3 ! C DmString 1 1bd6c 36 b ! C DmSet 0 c8f8 1 ! C DmString 1 c926 5 Other ! L c926 ! c 1 1bd6b a categories ! c 1 1bd5c e xslt_gecko.xsl ! c 1 1bd5b 4 name ! C DmInteger 2 1bd6e 1 ! c 1 1bd6d 9 substMode ! c 2 1bd8f 5 files ! c 2 1bad8 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 1bad7 6 launch ! c 2 1bad4 4 make ! c 2 1bad3 4 make ! c 2 1bad6 0 ! c 2 1bad5 8 makeFile ! c 5 1bad9 0 ! c 2 1badb 7 modules ! c 2 1bad2 7 scripts ! c 2 1bad1 4 name |
From: Jan T. <de...@us...> - 2003-06-02 21:49:59
|
Update of /cvsroot/net-script/netscript2/src/tools/IPdoc In directory sc8-pr-cvs1:/tmp/cvs-serv7847/tools/IPdoc Modified Files: IPdoc.pm Log Message: * added <?netscript include ?> directive Index: IPdoc.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/IPdoc.pm,v retrieving revision 1.7 retrieving revision 1.8 diff -C2 -d -r1.7 -r1.8 *** IPdoc.pm 31 May 2003 22:43:40 -0000 1.7 --- IPdoc.pm 2 Jun 2003 21:49:17 -0000 1.8 *************** *** 30,34 **** # The current version of IPdoc. #*/ ! $VERSION = "1.06"; #/** --- 30,34 ---- # The current version of IPdoc. #*/ ! $VERSION = "1.1"; #/** |
From: Jan T. <de...@us...> - 2003-06-01 13:34:10
|
Update of /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries In directory sc8-pr-cvs1:/tmp/cvs-serv27129/NetScript/Libraries Modified Files: XSLTLibrary.pm Log Message: * some small fixes for 5.6.0 compatibility Index: XSLTLibrary.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/NetScript/Libraries/XSLTLibrary.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** XSLTLibrary.pm 31 May 2003 22:39:33 -0000 1.1 --- XSLTLibrary.pm 1 Jun 2003 13:34:04 -0000 1.2 *************** *** 13,18 **** # The XSLT library serves the purpose of applying XSLT stylesheets to the # processed NetScript. The XSLT-library depends on a DAL capable of performing ! # XSLT statements. If you try to use the library with a DAL not capable of ! # no processing will be done. To use this library in your scripts put the # following statements into your NetScript. # <pre> --- 13,18 ---- # The XSLT library serves the purpose of applying XSLT stylesheets to the # processed NetScript. The XSLT-library depends on a DAL capable of performing ! # XSLT statements. If you try to use the library with a DAL not capable of doing ! # xslt, this library will fail. To use this library in your scripts put the # following statements into your NetScript. # <pre> *************** *** 106,110 **** } else { ! warn( "XSLT is not supported by the DAL!" ); } } --- 106,112 ---- } else { ! $this -> interpreter() -> getEventRelay() -> createAndRaiseEvent( ! $NetScript::Interpreter::FATAL_EVENT, ! "XSLT is not supported by the current DAL!" ); } } |
From: Jan T. <de...@us...> - 2003-06-01 13:34:09
|
Update of /cvsroot/net-script/netscript2/src/perl/NetScript In directory sc8-pr-cvs1:/tmp/cvs-serv27129/NetScript Modified Files: Interpreter.pm Log Message: * some small fixes for 5.6.0 compatibility Index: Interpreter.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/NetScript/Interpreter.pm,v retrieving revision 1.17 retrieving revision 1.18 diff -C2 -d -r1.17 -r1.18 *** Interpreter.pm 31 May 2003 22:39:32 -0000 1.17 --- Interpreter.pm 1 Jun 2003 13:34:03 -0000 1.18 *************** *** 133,140 **** sub handler { eval { ! use Apache::Constants; ! use Apache; }; ! my ($request) = @_; my $configFile = $request -> dir_config( "NetScriptConfigFile" ); --- 133,142 ---- sub handler { eval { ! require Apache::Constants; ! import Apache::Constants; ! require Apache; ! import Apache; }; ! warn( "handler called!" ); my ($request) = @_; my $configFile = $request -> dir_config( "NetScriptConfigFile" ); *************** *** 142,146 **** my $interpreter = NetScript::Interpreter -> new( $request ); $interpreter -> run(); ! return OK; } --- 144,148 ---- my $interpreter = NetScript::Interpreter -> new( $request ); $interpreter -> run(); ! return "OK"; } |
From: Jan T. <de...@us...> - 2003-06-01 13:34:09
|
Update of /cvsroot/net-script/netscript2/src/perl/XML/DAL In directory sc8-pr-cvs1:/tmp/cvs-serv27129/XML/DAL Modified Files: LibXMLDAL.pm Log Message: * some small fixes for 5.6.0 compatibility Index: LibXMLDAL.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/perl/XML/DAL/LibXMLDAL.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** LibXMLDAL.pm 31 May 2003 22:39:34 -0000 1.2 --- LibXMLDAL.pm 1 Jun 2003 13:34:04 -0000 1.3 *************** *** 11,15 **** use XML::LibXML; - #use XML::LibXML::Document; #/** --- 11,14 ---- *************** *** 39,47 **** sub supportsXSLT { if ( defined( eval{ ! use XML::LibXSLT; } ) ) { return 1; } ! return 0; } --- 38,48 ---- sub supportsXSLT { if ( defined( eval{ ! require XML::LibXSLT; ! import XML::LibXSLT; ! 1; } ) ) { return 1; } ! warn( $@ ); return 0; } |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src/tests In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src/tests Modified Files: DOMAppendRemoveTest.pm DOMCharacterDataTest.pm DOMCloneImportTest.pm DOMParserTest.pm FileRetrieverTest.pm Log Message: * xslt implementation Index: DOMAppendRemoveTest.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tests/DOMAppendRemoveTest.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DOMAppendRemoveTest.pm 26 Apr 2002 10:52:03 -0000 1.1 --- DOMAppendRemoveTest.pm 31 May 2003 22:43:39 -0000 1.2 *************** *** 6,10 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: DOMCharacterDataTest.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tests/DOMCharacterDataTest.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** DOMCharacterDataTest.pm 26 Apr 2002 10:52:03 -0000 1.1 --- DOMCharacterDataTest.pm 31 May 2003 22:43:39 -0000 1.2 *************** *** 6,10 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: DOMCloneImportTest.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tests/DOMCloneImportTest.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DOMCloneImportTest.pm 26 Apr 2002 10:52:03 -0000 1.2 --- DOMCloneImportTest.pm 31 May 2003 22:43:39 -0000 1.3 *************** *** 6,10 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: DOMParserTest.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tests/DOMParserTest.pm,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** DOMParserTest.pm 26 Apr 2002 10:52:03 -0000 1.2 --- DOMParserTest.pm 31 May 2003 22:43:39 -0000 1.3 *************** *** 6,10 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: FileRetrieverTest.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tests/FileRetrieverTest.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** FileRetrieverTest.pm 26 Apr 2002 10:52:03 -0000 1.5 --- FileRetrieverTest.pm 31 May 2003 22:43:39 -0000 1.6 *************** *** 6,10 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src/tools/IPdoc In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src/tools/IPdoc Modified Files: Class.pm CodeElement.pm Global.pm IPdoc.pm NSDoclet.pm Sub.pm Log Message: * xslt implementation Index: Class.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/Class.pm,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Class.pm 13 May 2002 11:19:30 -0000 1.4 --- Class.pm 31 May 2003 22:43:40 -0000 1.5 *************** *** 6,10 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: CodeElement.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/CodeElement.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** CodeElement.pm 13 May 2002 11:19:30 -0000 1.1 --- CodeElement.pm 31 May 2003 22:43:40 -0000 1.2 *************** *** 6,10 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 6,10 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: Global.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/Global.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** Global.pm 13 May 2002 11:19:30 -0000 1.1 --- Global.pm 31 May 2003 22:43:40 -0000 1.2 *************** *** 4,8 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 4,8 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: IPdoc.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/IPdoc.pm,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** IPdoc.pm 24 Sep 2002 23:22:08 -0000 1.6 --- IPdoc.pm 31 May 2003 22:43:40 -0000 1.7 *************** *** 5,9 **** # IPdoc and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 5,9 ---- # IPdoc and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: NSDoclet.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/NSDoclet.pm,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** NSDoclet.pm 24 Sep 2002 23:22:08 -0000 1.5 --- NSDoclet.pm 31 May 2003 22:43:40 -0000 1.6 *************** *** 5,9 **** # IPdoc and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 5,9 ---- # IPdoc and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: Sub.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/IPdoc/Sub.pm,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** Sub.pm 13 May 2002 11:19:30 -0000 1.3 --- Sub.pm 31 May 2003 22:43:40 -0000 1.4 *************** *** 4,8 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 4,8 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src Modified Files: wipeout.project Log Message: * xslt implementation Index: wipeout.project =================================================================== RCS file: /cvsroot/net-script/netscript2/src/wipeout.project,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** wipeout.project 29 Nov 2001 22:24:11 -0000 1.2 --- wipeout.project 31 May 2003 22:43:39 -0000 1.3 *************** *** 1,174 **** b ! C DmDictionary 0 36962 8 ! c 0 36975 9 ! C Category 1 2c328 ! c 0 369a3 4 ! C DmString 2 369aa 2 e3 ! c 2 369a9 a defaultExe ! C DmSet 3 369ac 1 ! c 2 2c337 2 e3 ! L 2c337 ! c 2 369ab b executables ! c 3 369a7 3 ! c 2 2c33e 3 *.C ! L 2c33e ! c 2 2c341 4 *.cc ! L 2c341 ! c 2 2c344 5 *.cpp ! L 2c344 ! c 2 369a6 a extensions ! c 2 369a5 a CPP_source ! c 2 369a4 4 name ! c 2 36977 a CPP_source ! c 1 2c359 ! c 0 369e9 4 ! c 2 369f0 2 e3 ! c 2 369ef a defaultExe ! c 3 369f2 1 ! c 2 2c366 2 e3 ! L 2c366 ! c 2 369f1 b executables ! c 3 369ed 1 ! c 2 2c36d 3 *.c ! L 2c36d ! c 2 369ec a extensions ! c 2 369eb 8 C_source ! c 2 369ea 4 name ! c 2 36978 8 C_source ! c 1 2c382 ! c 0 36a23 4 ! c 2 36a2a 2 e3 ! c 2 36a29 a defaultExe ! c 3 36a2c 1 ! c 2 2c38f 2 e3 ! L 2c38f ! c 2 36a2b b executables ! c 3 36a27 1 ! c 2 2c396 3 *.e ! L 2c396 ! c 2 36a26 a extensions ! c 2 36a25 6 Eiffel ! c 2 36a24 4 name ! c 2 36979 6 Eiffel ! c 1 2c3ab ! c 0 36a5d 4 ! c 2 36a64 2 e3 ! c 2 36a63 a defaultExe ! c 3 36a66 1 ! c 2 2c3b8 2 e3 ! L 2c3b8 ! c 2 36a65 b executables ! c 3 36a61 4 ! c 2 2c3bf 3 *.F ! L 2c3bf ! c 2 2c3c2 3 *.f ! L 2c3c2 ! c 2 2c3c5 5 *.for ! L 2c3c5 ! c 2 2c3c8 5 *.fpp ! L 2c3c8 ! c 2 36a60 a extensions ! c 2 36a5f 7 Fortran ! c 2 36a5e 4 name ! c 2 3697a 7 Fortran ! c 1 2c3dd ! c 0 36aa3 4 ! c 2 36aaa 2 e3 ! c 2 36aa9 a defaultExe ! c 3 36aac 1 ! c 2 2c3ea 2 e3 ! L 2c3ea ! c 2 36aab b executables ! c 3 36aa7 2 ! c 2 2c3f1 3 *.H ! L 2c3f1 ! c 2 2c3f4 3 *.h ! L 2c3f4 ! c 2 36aa6 a extensions ! c 2 36aa5 6 Header ! c 2 36aa4 4 name ! c 2 3697b 6 Header ! c 1 2c409 ! c 0 36ae1 4 ! c 2 36ae8 9 surfboard ! c 2 36ae7 a defaultExe ! c 3 36aea 2 ! c 2 2c416 2 e3 ! L 2c416 ! c 2 2c419 9 surfboard ! L 2c419 ! c 2 36ae9 b executables ! c 3 36ae5 2 ! c 2 2c420 5 *.htm ! L 2c420 ! c 2 2c423 6 *.html ! L 2c423 ! c 2 36ae4 a extensions ! c 2 36ae3 4 Html ! c 2 36ae2 4 name ! c 2 3697c 4 Html ! c 1 2c438 ! c 0 36b23 4 ! c 2 36b2a 2 e3 ! c 2 36b29 a defaultExe ! c 3 36b2c 1 ! c 2 2c445 2 e3 ! L 2c445 ! c 2 36b2b b executables ! c 3 36b27 1 ! c 2 2c44c 6 *.java ! L 2c44c ! c 2 36b26 a extensions ! c 2 36b25 4 Java ! c 2 36b24 4 name ! c 2 3697d 4 Java ! c 1 2c461 ! c 0 36b5d 4 ! c 2 36b64 2 e3 ! c 2 36b63 a defaultExe ! c 3 36b66 1 ! c 2 2c46e 2 e3 ! L 2c46e ! c 2 36b65 b executables ! c 3 36b61 1 ! c 2 2c475 5 *.tex ! L 2c475 ! c 2 36b60 a extensions ! c 2 36b5f 5 Latex ! c 2 36b5e 4 name ! c 2 3697e 5 Latex ! c 1 2c48a ! c 0 36b97 4 ! c 2 36b9e 2 e3 ! c 2 36b9d a defaultExe ! c 3 36ba0 1 ! c 2 2c497 2 e3 ! L 2c497 ! c 2 36b9f b executables ! c 3 36b9b 0 ! c 2 36b9a a extensions ! c 2 36b99 5 Other ! c 2 36b98 4 name ! c 2 3697f 5 Other ! c 2 36974 a categories ! c 0 36981 1 ! C ProjectDir 4 2c4b4 ! c 2 2c4b5 f netscript2/src/ 11 81 ! c 2 2c4b6 0 0 ! c 2 36983 f netscript2/src/ ! c 2 36980 b directories ! C DmBag 5 36971 0 ! c 2 36973 5 files ! c 2 3696a 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 36969 6 launch ! c 2 36966 4 make ! c 2 36965 4 make ! c 2 36968 0 ! c 2 36967 8 makeFile ! c 5 3696b 3 ! c 2 3696d 4 perl ! c 2 3696e 5 tests ! c 2 3696f 5 tools ! c 2 36970 7 modules ! c 2 36964 3 src ! c 2 36963 4 name --- 1,176 ---- b ! C DmDictionary 0 3a00e 8 ! c 0 3a023 9 ! C Category 1 4d76 ! c 0 3a051 4 ! C DmString 2 3a058 2 e3 ! c 2 3a057 a defaultExe ! C DmSet 3 3a05a 1 ! c 2 4d85 2 e3 ! L 4d85 ! c 2 3a059 b executables ! c 3 3a055 3 ! c 2 4d8c 3 *.C ! L 4d8c ! c 2 4d8f 4 *.cc ! L 4d8f ! c 2 4d92 5 *.cpp ! L 4d92 ! c 2 3a054 a extensions ! c 2 3a053 a CPP_source ! c 2 3a052 4 name ! c 2 3a025 a CPP_source ! c 1 4da7 ! c 0 3a097 4 ! c 2 3a09e 2 e3 ! c 2 3a09d a defaultExe ! c 3 3a0a0 1 ! c 2 4db4 2 e3 ! L 4db4 ! c 2 3a09f b executables ! c 3 3a09b 1 ! c 2 4dbb 3 *.c ! L 4dbb ! c 2 3a09a a extensions ! c 2 3a099 8 C_source ! c 2 3a098 4 name ! c 2 3a026 8 C_source ! c 1 4dd0 ! c 0 3a0d1 4 ! c 2 3a0d8 2 e3 ! c 2 3a0d7 a defaultExe ! c 3 3a0da 1 ! c 2 4ddd 2 e3 ! L 4ddd ! c 2 3a0d9 b executables ! c 3 3a0d5 1 ! c 2 4de4 3 *.e ! L 4de4 ! c 2 3a0d4 a extensions ! c 2 3a0d3 6 Eiffel ! c 2 3a0d2 4 name ! c 2 3a027 6 Eiffel ! c 1 4df9 ! c 0 3a10b 4 ! c 2 3a112 2 e3 ! c 2 3a111 a defaultExe ! c 3 3a114 1 ! c 2 4e06 2 e3 ! L 4e06 ! c 2 3a113 b executables ! c 3 3a10f 4 ! c 2 4e0d 3 *.F ! L 4e0d ! c 2 4e10 3 *.f ! L 4e10 ! c 2 4e13 5 *.for ! L 4e13 ! c 2 4e16 5 *.fpp ! L 4e16 ! c 2 3a10e a extensions ! c 2 3a10d 7 Fortran ! c 2 3a10c 4 name ! c 2 3a028 7 Fortran ! c 1 4e2b ! c 0 3a151 4 ! c 2 3a158 2 e3 ! c 2 3a157 a defaultExe ! c 3 3a15a 1 ! c 2 4e38 2 e3 ! L 4e38 ! c 2 3a159 b executables ! c 3 3a155 2 ! c 2 4e3f 3 *.H ! L 4e3f ! c 2 4e42 3 *.h ! L 4e42 ! c 2 3a154 a extensions ! c 2 3a153 6 Header ! c 2 3a152 4 name ! c 2 3a029 6 Header ! c 1 4e57 ! c 0 3a18f 4 ! c 2 3a196 9 surfboard ! c 2 3a195 a defaultExe ! c 3 3a198 2 ! c 2 4e64 2 e3 ! L 4e64 ! c 2 4e67 9 surfboard ! L 4e67 ! c 2 3a197 b executables ! c 3 3a193 2 ! c 2 4e6e 5 *.htm ! L 4e6e ! c 2 4e71 6 *.html ! L 4e71 ! c 2 3a192 a extensions ! c 2 3a191 4 Html ! c 2 3a190 4 name ! c 2 3a02a 4 Html ! c 1 4e86 ! c 0 3a1d1 4 ! c 2 3a1d8 2 e3 ! c 2 3a1d7 a defaultExe ! c 3 3a1da 1 ! c 2 4e93 2 e3 ! L 4e93 ! c 2 3a1d9 b executables ! c 3 3a1d5 1 ! c 2 4e9a 6 *.java ! L 4e9a ! c 2 3a1d4 a extensions ! c 2 3a1d3 4 Java ! c 2 3a1d2 4 name ! c 2 3a02b 4 Java ! c 1 4eaf ! c 0 3a20b 4 ! c 2 3a212 2 e3 ! c 2 3a211 a defaultExe ! c 3 3a214 1 ! c 2 4ebc 2 e3 ! L 4ebc ! c 2 3a213 b executables ! c 3 3a20f 1 ! c 2 4ec3 5 *.tex ! L 4ec3 ! c 2 3a20e a extensions ! c 2 3a20d 5 Latex ! c 2 3a20c 4 name ! c 2 3a02c 5 Latex ! c 1 4ed8 ! c 0 3a245 4 ! c 2 3a24c 2 e3 ! c 2 3a24b a defaultExe ! c 3 3a24e 1 ! c 2 4ee5 2 e3 ! L 4ee5 ! c 2 3a24d b executables ! c 3 3a249 0 ! c 2 3a248 a extensions ! c 2 3a247 5 Other ! c 2 3a246 4 name ! c 2 3a02d 5 Other ! c 2 3a022 a categories ! c 0 3a02f 1 ! C ProjectDir 4 4f02 ! c 2 4f03 f netscript2/src/ 11 81 ! c 2 4f04 0 0 ! c 2 3a031 f netscript2/src/ ! c 2 3a02e b directories ! C DmBag 5 3a01f 0 ! c 2 3a021 5 files ! c 2 3a016 94 xterm -ls -fn -*-lucidatypewriter-medium-r-normal-*-12-* -bg gray90 -T Program -geometry 80x10+0+0 -e "[set command with 'Project->Launch Command']" ! c 2 3a015 6 launch ! c 2 3a012 4 make ! c 2 3a011 4 make ! c 2 3a014 0 ! c 2 3a013 8 makeFile ! c 5 3a017 5 ! c 2 3a019 5 pages ! c 2 3a01a 4 perl ! c 2 3a01b 7 scripts ! c 2 3a01c 5 tests ! c 2 3a01d 5 tools ! c 2 3a01e 7 modules ! c 2 3a010 3 src ! c 2 3a00f 4 name |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src/pages In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src/pages Modified Files: errorpage.html Log Message: * xslt implementation Index: errorpage.html =================================================================== RCS file: /cvsroot/net-script/netscript2/src/pages/errorpage.html,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** errorpage.html 3 May 2002 13:28:26 -0000 1.3 --- errorpage.html 31 May 2003 22:43:39 -0000 1.4 *************** *** 7,11 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... --> --- 7,11 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... --> |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/docs/xmldom2 In directory sc8-pr-cvs1:/tmp/cvs-serv5670/docs/xmldom2 Modified Files: CHANGELOG.html TODO.html Log Message: * xslt implementation Index: CHANGELOG.html =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/xmldom2/CHANGELOG.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** CHANGELOG.html 2 Jul 2002 11:08:11 -0000 1.2 --- CHANGELOG.html 31 May 2003 22:43:39 -0000 1.3 *************** *** 7,11 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 7,11 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: TODO.html =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/xmldom2/TODO.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** TODO.html 8 Jun 2002 12:01:47 -0000 1.2 --- TODO.html 31 May 2003 22:43:39 -0000 1.3 *************** *** 5,9 **** | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomä, insOMnia (ko...@in...) \---------------------------------------------------------------------/ --- 5,9 ---- | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomae, insOMnia (ko...@in...) \---------------------------------------------------------------------/ |
From: Jan T. <de...@us...> - 2003-05-31 22:43:43
|
Update of /cvsroot/net-script/netscript2/src/tools In directory sc8-pr-cvs1:/tmp/cvs-serv5670/src/tools Modified Files: ipdoc.pl runtests.pl Log Message: * xslt implementation Index: ipdoc.pl =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/ipdoc.pl,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** ipdoc.pl 8 Apr 2002 21:48:36 -0000 1.3 --- ipdoc.pl 31 May 2003 22:43:39 -0000 1.4 *************** *** 9,13 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 9,13 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- Index: runtests.pl =================================================================== RCS file: /cvsroot/net-script/netscript2/src/tools/runtests.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** runtests.pl 5 Feb 2002 00:31:27 -0000 1.2 --- runtests.pl 31 May 2003 22:43:40 -0000 1.3 *************** *** 6,15 **** # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2001 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- ! use Test::Unit::TestRunner; use strict; --- 6,15 ---- # DOM2 and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2001 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- ! #use Test::Unit::TestRunner; use strict; *************** *** 21,25 **** $testPackage .= "/"; print "\n Looking for tests in package: $testPackage"; ! my $testrunner = Test::Unit::TestRunner -> new(); opendir(DIR, "$testPackage") || die "\n Testing failed. Cannot open package directory."; $testPackage =~ s/\.\///g; --- 21,25 ---- $testPackage .= "/"; print "\n Looking for tests in package: $testPackage"; ! #my $testrunner = Test::Unit::TestRunner -> new(); opendir(DIR, "$testPackage") || die "\n Testing failed. Cannot open package directory."; $testPackage =~ s/\.\///g; *************** *** 30,34 **** for( @tests ) { print "\n Running Test: $_\n\n"; ! $testrunner -> start( $_ ); } print "\nTests complete.\n" --- 30,34 ---- for( @tests ) { print "\n Running Test: $_\n\n"; ! # $testrunner -> start( $_ ); } print "\nTests complete.\n" |
From: Jan T. <de...@us...> - 2003-05-31 22:43:42
|
Update of /cvsroot/net-script/netscript2/docs/netscript In directory sc8-pr-cvs1:/tmp/cvs-serv5670/docs/netscript Modified Files: REQUIREMENTS.html Log Message: * xslt implementation Index: REQUIREMENTS.html =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/netscript/REQUIREMENTS.html,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** REQUIREMENTS.html 1 May 2003 10:42:18 -0000 1.2 --- REQUIREMENTS.html 31 May 2003 22:43:38 -0000 1.3 *************** *** 5,9 **** | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomä, insOMnia (ko...@in...) \---------------------------------------------------------------------/ --- 5,9 ---- | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomae, insOMnia (ko...@in...) \---------------------------------------------------------------------/ *************** *** 21,29 **** - Optional Modules: * LWP::UserAgent (for work with remote files) * HTTP::Request (for work with remote files) * HTTP::Response (for work with remote files) - * XML::XSLT* (for XSLT-support) - * XML::XPath* (for XSLT-support) * Test::Unit (for unit tests) * DBI + Driver (for Database-Support) --- 21,29 ---- - Optional Modules: + * XML::LibXML (fast DOM - useable instead of XML::DOM2) + * XML::LibXSLT (for XSLT-Support, needs XML::LibXML ) * LWP::UserAgent (for work with remote files) * HTTP::Request (for work with remote files) * HTTP::Response (for work with remote files) * Test::Unit (for unit tests) * DBI + Driver (for Database-Support) *************** *** 31,39 **** (*) = included in distribution of NetScript2 ! XML::DOM2, XML::XSLT and XML::XPath are part of the NetScript II distribution. The optional modules need only to be installed if you want to use these features. NetScript2 checks for required modules and will provide the features which can be realized with the installed modules. ! Note: XML::DOM2 is yet unstable, XML::XPath and XML::XSLT are not yet finished. </pre> --- 31,40 ---- (*) = included in distribution of NetScript2 ! XML::DOM2 is part of the NetScript II distribution. The optional modules need only to be installed if you want to use these features. NetScript2 checks for required modules and will provide the features which can be realized with the installed modules. ! Note: XML::DOM2 is not very fast and should be used as a last resort, only, since ! you cannot use XSLT with it either. </pre> |
From: Jan T. <de...@us...> - 2003-05-31 22:43:42
|
Update of /cvsroot/net-script/netscript2/docs/netscript/src In directory sc8-pr-cvs1:/tmp/cvs-serv5670/docs/netscript/src Modified Files: ExampleLibrary.pm Log Message: * xslt implementation Index: ExampleLibrary.pm =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/netscript/src/ExampleLibrary.pm,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ExampleLibrary.pm 4 Dec 2002 19:24:25 -0000 1.1 --- ExampleLibrary.pm 31 May 2003 22:43:39 -0000 1.2 *************** *** 4,8 **** # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomä, insOMnia # mailto: ko...@in... #-------------------------------------------------------- --- 4,8 ---- # NetScript and all related materials, such as documentation, # are protected under the terms and conditions of the Artistic License. ! # (C) 2000-2002 by Jan Thomae, insOMnia # mailto: ko...@in... #-------------------------------------------------------- |
From: Jan T. <de...@us...> - 2003-05-31 22:43:42
|
Update of /cvsroot/net-script/netscript2/docs/ipdoc In directory sc8-pr-cvs1:/tmp/cvs-serv5670/docs/ipdoc Modified Files: HISTORY.html README.html Log Message: * xslt implementation Index: HISTORY.html =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/ipdoc/HISTORY.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** HISTORY.html 13 May 2002 11:38:33 -0000 1.1 --- HISTORY.html 31 May 2003 22:43:38 -0000 1.2 *************** *** 5,9 **** | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomä, insOMnia (ko...@in...) \---------------------------------------------------------------------/ --- 5,9 ---- | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomae, insOMnia (ko...@in...) \---------------------------------------------------------------------/ Index: README.html =================================================================== RCS file: /cvsroot/net-script/netscript2/docs/ipdoc/README.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** README.html 13 May 2002 11:38:33 -0000 1.1 --- README.html 31 May 2003 22:43:38 -0000 1.2 *************** *** 5,9 **** | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomä, insOMnia (ko...@in...) \---------------------------------------------------------------------/ --- 5,9 ---- | are protected under the terms and conditions of the Artistic License. | ! | (C) 2000-2002 by Jan Thomae, insOMnia (ko...@in...) \---------------------------------------------------------------------/ |