From 3069eaf35e833ffe4a1c1c7829dd7e168ae27420 Mon Sep 17 00:00:00 2001 From: Ciro Mattia Gonano Date: Wed, 11 Sep 2013 15:56:48 +0200 Subject: Merge up to r3319 --- .../jGrouseDoc/skins/noframes/vm/antgen.vm | 77 ------------------ .../jGrouseDoc/skins/noframes/vm/detail.vm | 94 ---------------------- .../jGrouseDoc/skins/noframes/vm/jsindex.vm | 57 ------------- buildscripts/jGrouseDoc/skins/noframes/vm/test.vm | 1 - 4 files changed, 229 deletions(-) delete mode 100644 buildscripts/jGrouseDoc/skins/noframes/vm/antgen.vm delete mode 100644 buildscripts/jGrouseDoc/skins/noframes/vm/detail.vm delete mode 100644 buildscripts/jGrouseDoc/skins/noframes/vm/jsindex.vm delete mode 100644 buildscripts/jGrouseDoc/skins/noframes/vm/test.vm (limited to 'buildscripts/jGrouseDoc/skins/noframes/vm') diff --git a/buildscripts/jGrouseDoc/skins/noframes/vm/antgen.vm b/buildscripts/jGrouseDoc/skins/noframes/vm/antgen.vm deleted file mode 100644 index 7ed8671f..00000000 --- a/buildscripts/jGrouseDoc/skins/noframes/vm/antgen.vm +++ /dev/null @@ -1,77 +0,0 @@ -#if ($jg.project.comment.name) - #set($projectName=$jg.project.comment.name.trim()) -#end -#if ($jg.project.comment.version.size() > 0) - #set ($version = $jg.project.comment.version.get(0).content.originalString.trim()) -#end -#if ($jg.project.comment.description.size() > 0) - #set ($projectDesc = $jg.project.comment.description.get(0).content.originalString.trim()) -#end -#macro (genSummary $coll $pathPart $section) - #foreach($le in $coll) - - - - - - #if($aux_css != "not_specified") - - #end - - - - - - #end -#end - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/buildscripts/jGrouseDoc/skins/noframes/vm/detail.vm b/buildscripts/jGrouseDoc/skins/noframes/vm/detail.vm deleted file mode 100644 index 8cb95d88..00000000 --- a/buildscripts/jGrouseDoc/skins/noframes/vm/detail.vm +++ /dev/null @@ -1,94 +0,0 @@ -#if ($jg.get($objectName)) #set ($obj = $jg.get($objectName)) #end - - - - $projectName - - - - - - #if ($aux_css) - - #end - - - - -
- -
-
-
- -
-
-
-
-
- #if ($obj) - #writeContainer($obj) - #else -
- #if($jg.project) -
-
- #if($projectDesc && $projectDesc.length() > 0) -

$projectDesc

- #end - #writeContent($jg.project.comment.content) -

- #genCommonAttrs($jg.project.comment) -

- #end - #end -
-
-
-
-
- #navigationPane($navSection) -
- - - - diff --git a/buildscripts/jGrouseDoc/skins/noframes/vm/jsindex.vm b/buildscripts/jGrouseDoc/skins/noframes/vm/jsindex.vm deleted file mode 100644 index 9f1496a0..00000000 --- a/buildscripts/jGrouseDoc/skins/noframes/vm/jsindex.vm +++ /dev/null @@ -1,57 +0,0 @@ -#macro (writeFunctionJSParams $paramSet) -#foreach($param in $paramSet.params)#if($velocityCount > 1), #end#if($param.hasModifier('optional'))[#end#if($param.typeLink)$param.typeLink.originalString.trim() #end$param.name#if($param.hasModifier('optional'))]#end#end -#end - -#macro(writeFuncJSSummary $func) -#set ($funcModifiers = $func.comment.modifiers) -#if ($func.comment.inheritdesc.size() == 0) -#set ($funcItself = $func) -#else -#set ($funcItself = $jg.get($func.comment.inheritdesc.get(0).name)) -#end -#if($funcModifiers.length() > 0)$funcModifiers #end$func.commentType #if ($funcItself.comment.paramSets.size() != 0)#foreach($paramSet in $funcItself.comment.paramSets)#if ($velocityCount > 1)\n#end#if($funcItself.comment.typeLink)$funcItself.comment.typeLink.originalString #end${func.localName}(#writeFunctionJSParams($paramSet))#end -#else -#if($funcItself.comment.typeLink)$funcItself.comment.typeLink.originalString #end${funcItself.localName}()#end -#end - - -#macro(writeVarJSSummary $var) -#set ($varModifiers = $var.comment.modifiers) -#if ($var.comment.inheritdesc.size() == 0) -#set ($varItself = $var) -#else -#set ($varItself = $jg.get($var.comment.inheritdesc.get(0).name)) -#end -#if($varModifiers.length() > 0)$varModifiers #end$var.commentType #if($varItself.comment.typeLink)$varItself.comment.typeLink.originalString #end${varItself.localName}#end - -#macro(writeContainerJSSummary $cont) -#if($cont.comment.modifiers.length() > 0)$cont.comment.modifiers #end$cont.commentType $cont.localName#end -#macro(writeJSSummary $obj) -#if ($obj.commentType == "variable" || $obj.commentType == "property")#writeVarJSSummary($obj) -#elseif($obj.commentType == "class" || $obj.commentType == "namespace" || $obj.commentType == "struct" || $obj.commentType == "interface" || $obj.commentType == "object")#writeContainerJSSummary($obj) -#elseif($obj.commentType == "function" || $obj.commentType == "constructor" || $obj.commentType == "ifunction" || $obj.commentType == "event")#writeFuncJSSummary($obj)#end -#end - -#macro(writeJS $item) - - { - localName : "$item.localName", - fullName : "$item.fullName", - summary : "#writeJSSummary($item)", - ref : "#writeLink($item.fullName)", - parent : "#if($item.parentName)$item.parentName#end", - type : "$item.commentType", - elementType : "$item.elementType" - }#end - - - -/*Generated by jGrouseDoc*/ -(function() -{ - var data = [#foreach($item in $jg.all())#if($item.commentType != 'file' && $item.commentType != 'module')#if($velocityCount > 1), #end #writeJS($item) #end#end - ]; - jgdoc.setData(data); - -})() - diff --git a/buildscripts/jGrouseDoc/skins/noframes/vm/test.vm b/buildscripts/jGrouseDoc/skins/noframes/vm/test.vm deleted file mode 100644 index bde0e031..00000000 --- a/buildscripts/jGrouseDoc/skins/noframes/vm/test.vm +++ /dev/null @@ -1 +0,0 @@ -$jg.get("_bla").comment.returnsTag \ No newline at end of file -- cgit v1.2.3