kip 2003/05/25 19:35:42
Modified: . MANIFEST t/conf extra.conf.in Log: XSL document function tests added Revision Changes Path 1.16 +8 -1 xml-axkit/MANIFEST Index: MANIFEST =================================================================== RCS file: /home/cvs/xml-axkit/MANIFEST,v retrieving revision 1.15 retrieving revision 1.16 diff -u -r1.15 -r1.16 --- MANIFEST 26 May 2003 01:40:37 -0000 1.15 +++ MANIFEST 26 May 2003 02:35:41 -0000 1.16 @@ -177,8 +177,15 @@ t/htdocs/style/xslt-basic/01.xsl t/htdocs/style/xslt-basic/02_include.xsl t/htdocs/style/xslt-basic/02_include_inc.xsl +t/htdocs/style/xslt-basic/03_document_1arg.xsl +t/htdocs/style/xslt-basic/03_document.xml +t/htdocs/style/xslt-basic/04_document_2args.xsl t/htdocs/xslt-basic/01.xml -t/htdocs/xslt-basic/02_include.xml +t/htdocs/xslt-basic/03_document_1arg.xml +t/htdocs/xslt-basic/04_document_2args.xml +t/htdocs/xslt-basic/04_document.xml t/xslt-basic/01.t t/xslt-basic/02_include.t +t/xslt-basic/03_document_1arg.t +t/xslt-basic/03_document_2args.t typemap 1.2 +24 -3 xml-axkit/t/conf/extra.conf.in Index: extra.conf.in =================================================================== RCS file: /home/cvs/xml-axkit/t/conf/extra.conf.in,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- extra.conf.in 25 May 2003 19:22:14 -0000 1.1 +++ extra.conf.in 26 May 2003 02:35:42 -0000 1.2 @@ -22,13 +22,34 @@ } } </Perl> - AxAddStyleMap application/x-xsp Apache::AxKit::Language::XSP; -<Location "/xslt-basic/01"> +####################################### +# Directives that control the individual configs +####################################### + +<Location "/xslt-basic/01.xml"> SetHandler axkit - AxContentProvider Provider::Tiny AxResetProcessors AxAddProcessor text/xsl /style/xslt-basic/01.xsl +</Location> + +<Location "/xslt-basic/02_include.xml"> + SetHandler axkit + AxResetProcessors + AxAddProcessor text/xsl /style/xslt-basic/02_include.xsl +</Location> + +<Location "/xslt-basic/03_document_1arg.xml"> + SetHandler axkit + AxResetProcessors + AxAddProcessor text/xsl /style/xslt-basic/03_document_1arg.xsl +</Location> + + +<Location "/xslt-basic/04_document_2args.xml"> + SetHandler axkit + AxResetProcessors + AxAddProcessor text/xsl /style/xslt-basic/04_document_2args.xsl </Location>