Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed May 25, 2015
2 parents 0f2e334 + b89f8e2 commit c3498a9
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions cache/projectTemplate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ Returns structured package data</Description>
<Description>
REST interface for UMLExplorer</Description>
<Super>%CSP.REST</Super>
<TimeChanged>63697,59148.775813</TimeChanged>
<TimeChanged>63697,73073.878177</TimeChanged>
<TimeCreated>63648,30450.187229</TimeCreated>

<XData name="UrlMap">
Expand All @@ -376,7 +376,7 @@ Method returns whole class tree visible in the current namespace.</Description>
<ClassMethod>1</ClassMethod>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do ##class(UMLExplorer.ClassView).getClassTree(%request.Get("namespace")).%ToJSON(, "ou")
do ##class(UMLExplorer.ClassView).getClassTree(%request.Get("namespace")).%ToJSON(, "o")
return $$$OK
]]></Implementation>
</Method>
Expand All @@ -389,7 +389,7 @@ Returns classTree by given class name</Description>
<Implementation><![CDATA[
set className = %request.Get("name")
set classData = ##class(ClassView).getClassView(className, %request.Get("namespace"))
do classData.%ToJSON(, "ou")
do classData.%ToJSON(, "o")
return $$$OK
]]></Implementation>
</Method>
Expand All @@ -402,7 +402,7 @@ Returns all package class trees by given package name</Description>
<Implementation><![CDATA[
set packageName = %request.Get("name")
set classData = ##class(ClassView).getPackageView(packageName, %request.Get("namespace"))
do classData.%ToJSON(, "ou")
do classData.%ToJSON(, "o")
return $$$OK
]]></Implementation>
</Method>
Expand All @@ -413,7 +413,7 @@ Return the list of all namespaces</Description>
<ClassMethod>1</ClassMethod>
<ReturnType>%Status</ReturnType>
<Implementation><![CDATA[
do ##class(UMLExplorer.ClassView).getAllNamespacesList().%ToJSON(, "ou")
do ##class(UMLExplorer.ClassView).getAllNamespacesList().%ToJSON(, "o")
return $$$OK
]]></Implementation>
</Method>
Expand All @@ -427,7 +427,7 @@ Returns method description and code</Description>
set className = %request.Get("className")
set methodName = %request.Get("methodName")
set methodData = ##class(ClassView).getMethod(className, methodName, %request.Get("namespace"))
do methodData.%ToJSON(, "ou")
do methodData.%ToJSON(, "o")
return $$$OK
]]></Implementation>
</Method>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CacheUMLExplorer",
"version": "0.10.0",
"version": "0.10.1",
"description": "An UML Class explorer for InterSystems Caché",
"directories": {
"test": "test"
Expand Down

0 comments on commit c3498a9

Please sign in to comment.