Skip to content

Commit

Permalink
Classes are not rendered properly when rendering package bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitaeverywhere committed Nov 16, 2016
1 parent ed98334 commit 49ec5eb
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 43 deletions.
12 changes: 7 additions & 5 deletions cache/projectTemplate.xml
Original file line number Diff line number Diff line change
Expand Up @@ -248,16 +248,18 @@ Return method data.</Description>
<Description><![CDATA[
Returns if <var>packageName</var> is in <var>basePackageName</var>.]]></Description>
<ClassMethod>1</ClassMethod>
<FormalSpec>basePackageNames:%String,packageName:%String</FormalSpec>
<FormalSpec>basePackageName:%String,packageName:%String</FormalSpec>
<Private>1</Private>
<ReturnType>%Boolean</ReturnType>
<Implementation><![CDATA[
set pack = $PIECE(packageName, ".", 1)
set list = $LISTFROMSTRING(basePackageNames, ",")
set OK = 0
set pack = $LISTFROMSTRING(packageName, ".")
set list = $LISTFROMSTRING(basePackageName, ".")
set OK = 1
for i=1:1:$LISTLENGTH(list) {
if ($LISTGET(list, i) = pack) {
if ($LISTGET(list, i) = $LISTGET(pack, i)) {
set OK = 1
} else {
set OK = 0
quit
}
}
Expand Down
50 changes: 12 additions & 38 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,46 +1,20 @@
{
"name": "CacheClassExplorer",
"version": "1.16.3",
"version": "1.17.0",
"description": "Class Explorer for InterSystems Caché",
"directories": {
"test": "test"
},
"directories": { "test": "test" },
"dependencies": {},
"devDependencies": {
"autoprefixer-core": "^5.1.11",
"express": "^5.0.0-alpha.1",
"gulp": "^3.9.0",
"gulp-add-src": "^0.2.0",
"gulp-clean": "^0.3.1",
"gulp-concat": "^2.4.1",
"gulp-header": "^1.2.2",
"gulp-html-replace": "^1.4.1",
"gulp-minify-css": "^0.3.11",
"gulp-postcss": "^5.1.3",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.5.3",
"gulp-strip-comments": "^1.0.1",
"gulp-uglify": "^1.2.0",
"gulp-wrap": "^0.5.0",
"gulp-zip": "^2.0.2"
},
"scripts": {
"gulp": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/ZitRos/CacheUMLExplorer"
},
"keywords": [
"UMLExplorer",
"Caché",
"UML",
"diagram"
],
"devDependencies": { "autoprefixer-core": "^5.1.11", "express": "^5.0.0-alpha.1",
"gulp": "^3.9.0", "gulp-add-src": "^0.2.0", "gulp-clean": "^0.3.1", "gulp-concat": "^2.4.1",
"gulp-header": "^1.2.2", "gulp-html-replace": "^1.4.1", "gulp-minify-css": "^0.3.11",
"gulp-postcss": "^5.1.3", "gulp-rename": "^1.2.0", "gulp-replace": "^0.5.3",
"gulp-strip-comments": "^1.0.1", "gulp-uglify": "^1.2.0", "gulp-wrap": "^0.5.0",
"gulp-zip": "^2.0.2" },
"scripts": { "gulp": "gulp" },
"repository": { "type": "git", "url": "https://github.com/ZitRos/CacheUMLExplorer" },
"keywords": [ "UMLExplorer", "Caché", "UML", "diagram" ],
"author": "ZitRo",
"license": "MIT",
"bugs": {
"url": "https://github.com/ZitRos/CacheUMLExplorer/issues"
},
"bugs": { "url": "https://github.com/ZitRos/CacheUMLExplorer/issues" },
"homepage": "https://github.com/ZitRos/CacheUMLExplorer"
}

0 comments on commit 49ec5eb

Please sign in to comment.