Skip to content

Commit 1876169

Browse files
Evgeny ShvarovEvgeny Shvarov
authored andcommitted
IRIS 2019.2 CE, fix for ComCopy, settings fix
1 parent 9f3c83d commit 1876169

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.vscode/settings.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,7 @@
66
"password": "SYS",
77
"ns": "DCANALYTICS"
88
},
9-
"objectscript.conn.version": 3
9+
"objectscript.conn.version": 3,
10+
"objectscript.conn.active": true,
11+
"objectscript.export.addCategory": true
1012
}

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
FROM store/intersystems/iris:2019.1.0.511.0-community
1+
ARG IMAGE=store/intersystems/iris:2019.1.0.511.0-community
2+
ARG IMAGE=store/intersystems/iris:2019.2.0.107.0-community
3+
FROM $IMAGE
24

35
WORKDIR /opt/app
46

src/cls/BI/CommentCopy.cls

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Class BI.CommentCopy Extends %DeepSee.CubeDefinition [ DependsOn = (Community.Co
77
/// Cube definition from Architect.
88
XData Cube [ XMLNamespace = "http://www.intersystems.com/deepsee" ]
99
{
10-
<cube xmlns="http://www.intersystems.com/deepsee" name="CommentCopy" displayName="CommentCopy" disabled="false" abstract="false" sourceClass="Community.Comment" buildRestriction="Post-&gt;Deleted = 0" countMeasureName="COMCOUNT" bucketSize="8" bitmapChunkInMemory="false" precompute="0" disableListingGroups="false">
10+
<cube xmlns="http://www.intersystems.com/deepsee" name="CommentCopy" displayName="CommentCopy" disabled="false" abstract="false" sourceClass="Community.Comment" buildRestriction="Post-&gt;Deleted = 0 and Post-&gt;Published = 1 " countMeasureName="COMCOUNT" bucketSize="8" bitmapChunkInMemory="false" precompute="0" disableListingGroups="false" enableSqlRestrict="false">
1111
<dimension name="AuthorName" disabled="false" sharesFrom="Post" hasAll="false" allCaption="All AuthorName" allDisplayName="AuthorName" type="data" hidden="false" showHierarchies="default">
1212
</dimension>
1313
<dimension name="Language" disabled="false" sharesFrom="Post" hasAll="false" allCaption="All Language" allDisplayName="Language" type="data" hidden="false" showHierarchies="default">
@@ -78,4 +78,3 @@ ClassMethod %OnGetFilterSpec(pFilterSpec As %String) As %String
7878
Parameter DOMAIN;
7979

8080
}
81-

src/cls/BI/PC.cls

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ XData SubjectArea [ XMLNamespace = "http://www.intersystems.com/deepsee/subjecta
99
</subjectArea>
1010
}
1111

12-
/*
1312
ClassMethod %OnGetFilterSpec(pFilterSpec As %String) As %String
1413
{
1514
if ($username = "esdevcom") {
@@ -19,8 +18,7 @@ ClassMethod %OnGetFilterSpec(pFilterSpec As %String) As %String
1918
quit "[Language].[H1].[Language].[en]"
2019
}
2120
}
22-
*/
21+
2322
Parameter DOMAIN;
2423

2524
}
26-

0 commit comments

Comments
 (0)