@@ -3,17 +3,17 @@ export class UriTemplate {
3
3
private _templateString : string = '' ;
4
4
constructor ( fileExtensions : string , fileName : string , pythonScriptPath : string ) {
5
5
this . _templateString = `<usireginfo><storetype name="${ fileName } ">` +
6
- ` <type>python</type>` +
6
+ ' <type>python</type>' +
7
7
`<alias>${ fileName } </alias>` +
8
8
`<description>${ fileName } </description>` +
9
- ` <filepath>uspTdmMarshaller.dll</filepath>` +
10
- ` <exportsupported>NO</exportsupported>` +
11
- ` <caching>YES</caching>` +
9
+ ' <filepath>uspTdmMarshaller.dll</filepath>' +
10
+ ' <exportsupported>NO</exportsupported>' +
11
+ ' <caching>YES</caching>' +
12
12
`<easypluginparam><![CDATA[<dllpath>@USIBINDIR@\\PythonMarshaller\\uspPythonMarshaller.dll</dllpath><script>${ pythonScriptPath } </script>]]></easypluginparam>` +
13
- ` <querysupported>0</querysupported>` +
14
- ` <fastloadsupported>0</fastloadsupported>` +
13
+ ' <querysupported>0</querysupported>' +
14
+ ' <fastloadsupported>0</fastloadsupported>' +
15
15
`<filefilters extension="${ fileExtensions } "><description>${ fileName } Dateien (' + fileExtensions + ')</description></filefilters>` +
16
- ` <platform>x64</platform></storetype></usireginfo>`
16
+ ' <platform>x64</platform></storetype></usireginfo>' ;
17
17
}
18
18
19
19
get templateString ( ) : string {
0 commit comments