Source Code Cross Referenced for XSLConvert.java in  » Database-ORM » MMBase » org » mmbase » module » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database ORM » MMBase » org.mmbase.module 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:
003:        This software is OSI Certified Open Source Software.
004:        OSI Certified is a certification mark of the Open Source Initiative.
005:
006:        The license (Mozilla version 1.0) can be read at the MMBase site.
007:        See http://www.MMBase.org/license
008:
009:         */
010:        package org.mmbase.module;
011:
012:        import java.util.*;
013:        import java.io.*;
014:
015:        import org.mmbase.module.core.MMBaseContext;
016:        import org.mmbase.util.*;
017:        import org.mmbase.util.logging.Logger;
018:        import org.mmbase.util.logging.Logging;
019:
020:        /**
021:         * XSL conversion module
022:         *
023:         * Right now, only the replace() method is defined. It is called as:
024:         *   $MOD-XSLCONVERT-xmlPath-xslFile
025:         * where xmlPath is the path relative to mmbase.config and xslFile is
026:         * and xsl file located in the subdirectory xslt of mmbase.config.
027:         *
028:         * @application XSL or Tools
029:         * @move org.mmbase.util.xml
030:         * @author Case Roole, cjr@dds.nl
031:         * @version $Id: XSLConvert.java,v 1.13 2007/06/19 13:59:30 michiel Exp $
032:         */
033:        public class XSLConvert extends ProcessorModule {
034:
035:            private static final Logger log = Logging
036:                    .getLoggerInstance(XSLConvert.class);
037:
038:            private String configpath;
039:
040:            public void init() {
041:                configpath = MMBaseContext.getConfigPath();
042:            }
043:
044:            public XSLConvert(String name) {
045:                super (name);
046:            }
047:
048:            /**
049:             * Generate a list of values from a command to the processor
050:             *
051:             * NOT IMPLEMENTED FOR XSLConvert
052:             */
053:            public Vector getList(PageInfo sp, StringTagger tagger, String value) {
054:                return null;
055:            }
056:
057:            /**
058:             * Execute the commands provided in the form values
059:             */
060:            public boolean process(PageInfo sp, Hashtable cmds, Hashtable vars) {
061:                return false;
062:            }
063:
064:            /**
065:             *	Handle a $MOD command
066:             *
067:             * It is called as:
068:             *   $MOD-XSLCONVERT-xmlPath-xslFile
069:             * where:
070:             *  - xmlPath is the path relative to mmbase.config and,
071:             *  - xslFile is xsl file located in the subdirectory xslt of mmbase.config.
072:             */
073:            public String replace(PageInfo sp, String cmds) {
074:                StringTokenizer tok = new StringTokenizer(cmds, "-\n\r");
075:                int count = tok.countTokens();
076:                String[] argv = new String[count];
077:                for (int i = 0; i < count; i++) {
078:                    argv[i] = tok.nextToken();
079:                }
080:
081:                if (argv.length != 2) {
082:                    return "$MOD-XSLCONVERT should have two arguments, e.g. $MOD-XSLCONVERT-xmlPath-xslFile";
083:                } else {
084:                    String xmlPath = configpath + File.separator + argv[0];
085:                    String xslPath = configpath + File.separator + "xslt"
086:                            + File.separator + argv[1];
087:
088:                    if (!xslPath.endsWith(".xsl")) {
089:                        xslPath = xslPath + ".xsl";
090:                    }
091:                    if (!xmlPath.endsWith(".xml")) {
092:                        xmlPath = xmlPath + ".xml";
093:                    }
094:
095:                    return transform(xmlPath, xslPath);
096:                }
097:                //return "[no command defined]";
098:            }
099:
100:            /**
101:             * Transform XML file using an XSL file
102:             *
103:             * @param xmlPath Path to XML file
104:             * @param xslPath Path to XSL file
105:             * @return Converted document
106:             */
107:            public String transform(String xmlPath, String xslPath) {
108:                // Do nothing for the time being
109:                if (log.isDebugEnabled()) {
110:                    log.debug("XML file = " + xmlPath);
111:                    log.debug("XSL file = " + xslPath);
112:                }
113:                return XSLTransformer.transform(xmlPath, xslPath);
114:            }
115:
116:            public String getModuleInfo() {
117:                return "Support XSL transformations of XML files, cjr@dds.nl";
118:            }
119:
120:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.