@@ -535,20 +535,20 @@ Method OnProcessInput(pInput As %RegisteredObject, pOutput As %RegisteredObject)
535
535
${ typeof desc == "string" ? "/// " + desc . replace ( / \n / g, "\n/// " ) : "" }
536
536
Class ${ cls } Extends Ens.BusinessProcessBPL [ ClassType = persistent, ProcedureBlock ]
537
537
{
538
-
539
- /// BPL Definition
540
- XData BPL [ XMLNamespace = "http://www.intersystems.com/bpl" ]
541
- {${
542
- api
543
- ? `
544
- <!--
538
+ ${
539
+ api
540
+ ? `
541
+ /*
545
542
You can edit this class in the Business Process Editor by pasting the following URL into your web browser.
546
543
You can also edit this XML block directly.
547
544
${ api . config . https ? "https" : "http" } ://${ api . config . host } :${ api . config . port } ${
548
- api . config . pathPrefix
549
- } /csp/${ api . config . ns . toLowerCase ( ) } /EnsPortal.BPLEditor.zen?BP=${ cls } .BPL\n-->`
550
- : ""
551
- }
545
+ api . config . pathPrefix
546
+ } /csp/${ api . config . ns . toLowerCase ( ) } /EnsPortal.BPLEditor.zen?BP=${ cls } .BPL\n*/\n`
547
+ : ""
548
+ }
549
+ /// BPL Definition
550
+ XData BPL [ XMLNamespace = "http://www.intersystems.com/bpl" ]
551
+ {
552
552
<process language='objectscript' request='Ens.Request' response='Ens.Response' height='2000' width='2000' >
553
553
<sequence xend='300' yend='450' >
554
554
</sequence>
@@ -632,25 +632,25 @@ Class ${cls} Extends Ens.DataTransformDTL [ DependsOn = ${
632
632
sourceCls == targetCls ? sourceCls : `(${ sourceCls } , ${ targetCls } )`
633
633
} ]
634
634
{
635
-
635
+ ${
636
+ api
637
+ ? `
638
+ /*
639
+ You can edit this class in the Data Transformation Editor by pasting the following URL into your web browser.
640
+ You can also edit this XML block directly.
641
+ ${ api . config . https ? "https" : "http" } ://${ api . config . host } :${ api . config . port } ${
642
+ api . config . pathPrefix
643
+ } /csp/${ api . config . ns . toLowerCase ( ) } /EnsPortal.DTLEditor.zen?DT=${ cls } .DTL\n*/\n`
644
+ : ""
645
+ }
636
646
Parameter IGNOREMISSINGSOURCE = 1;
637
647
638
648
Parameter REPORTERRORS = 1;
639
649
640
650
Parameter TREATEMPTYREPEATINGFIELDASNULL = 0;
641
651
642
652
XData DTL [ XMLNamespace = "http://www.intersystems.com/dtl" ]
643
- {${
644
- api
645
- ? `
646
- <!--
647
- You can edit this class in the Data Transformation Editor by pasting the following URL into your web browser.
648
- You can also edit this XML block directly.
649
- ${ api . config . https ? "https" : "http" } ://${ api . config . host } :${ api . config . port } ${
650
- api . config . pathPrefix
651
- } /csp/${ api . config . ns . toLowerCase ( ) } /EnsPortal.DTLEditor.zen?DT=${ cls } .DTL\n-->`
652
- : ""
653
- }
653
+ {
654
654
<transform sourceClass='${ sourceCls } ' targetClass='${ targetCls } ' create='new' language='objectscript' >
655
655
</transform>
656
656
}
0 commit comments