Revision: 3975
          http://vexi.svn.sourceforge.net/vexi/?rev=3975&view=rev
Author:   clrg
Date:     2010-12-20 19:06:26 +0000 (Mon, 20 Dec 2010)

Log Message:
-----------
Fix running jsdoc generation

Modified Paths:
--------------
    trunk/org.vexi-build.jsdoc/src/poke/java/vexi/jsdoc/RunOnVexi.java

Modified: trunk/org.vexi-build.jsdoc/src/poke/java/vexi/jsdoc/RunOnVexi.java
===================================================================
--- trunk/org.vexi-build.jsdoc/src/poke/java/vexi/jsdoc/RunOnVexi.java  
2010-12-20 16:56:02 UTC (rev 3974)
+++ trunk/org.vexi-build.jsdoc/src/poke/java/vexi/jsdoc/RunOnVexi.java  
2010-12-20 19:06:26 UTC (rev 3975)
@@ -10,7 +10,7 @@
        // vexidoc options / defaults
        static String version = "3.0 svn";
        static String build = "Unknown";
-       static String docpath = "../../vexi3_platform_clean";
+       static String docpath = "../";
        
        static public void main(String[] args) throws Exception {
 
@@ -20,23 +20,27 @@
                        build = args[++i];
                    } else if (args[i].equals("-version")) {
                        version = args[++i];
-                   } else docpath = args[i];
+                   } else {
+                       docpath = args[i];
+                   }
                }
                // setup path
                SourcePath path = new SourcePath();
-               path.addSourceDir(docpath+"/org.ibex.js/src");
-               path.addSourceDir(docpath+"/org.vexi.core/src");
+               path.addSourceDir(docpath+"/org.vexi-library.js/src/main/java");
+               path.addSourceDir(docpath+"/org.vexi-library.js/src/main/jpp");
+               path.addSourceDir(docpath+"/org.vexi-core.main/src/main/java");
+               path.addSourceDir(docpath+"/org.vexi-core.main/src/main/jpp");
                
                
 //             JSDoc jsdoc_debug = new JSDoc(path, new 
File("vexi_jsdoc_debug"), "vexi.js", "org.vexi.js.VexiJS");
 //             jsdoc_debug.doIt();
-//             if(true) return;
+//             if (true) return;
                
                
                JSDoc jsdoc = new JSDoc(path, new File("vexi_jsdoc")){{
                        setName("Vexi");
                        setVersion("3.0");
-                       setCopyRight("2009 The Vexi Project");
+                       setCopyRight("2011 The Vexi Project");
                        setProjectWWW("vexi.sourceforge.net");
                        
                        addLibraryRoot("vexi", "org.vexi.core.Vexi");
@@ -49,7 +53,7 @@
                        addConcept("Special Variables", 
"org.ibex.js.Interpreter");
                        addConcept("Streams", "org.vexi.core.Vexi");
                        addConcept("Surfaces", "org.vexi.core.Surface");
-                       addConcept("Templates", 
"org.vexi.core.TemplateBuilder");
+                       addConcept("Templates", "org.vexi.core.VMLBuilder");
                        addConcept("Threading", "org.vexi.core.Vexi");
                        addConcept("Traps", "org.ibex.js.JS");
                }};


This was sent by the SourceForge.net collaborative development platform, the 
world's largest Open Source development site.

------------------------------------------------------------------------------
Lotusphere 2011
Register now for Lotusphere 2011 and learn how
to connect the dots, take your collaborative environment
to the next level, and enter the era of Social Business.
http://p.sf.net/sfu/lotusphere-d2d
_______________________________________________
Vexi-svn mailing list
Vexi-svn@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/vexi-svn

Reply via email to