File tree Expand file tree Collapse file tree 2 files changed +5
-26
lines changed Expand file tree Collapse file tree 2 files changed +5
-26
lines changed Original file line number Diff line number Diff line change @@ -329,32 +329,7 @@ Method returns user application.</Description>
329
329
<ReturnType >%Status</ReturnType >
330
330
<Implementation ><![CDATA[
331
331
&html<
332
- <!DOCTYPE html>
333
- <html>
334
- <head lang="en">
335
- <meta charset="UTF-8">
336
- <title>Cache UML explorer</title>
337
- <link rel="stylesheet" href="css/CacheUMLExplorer.css">
338
- <script src="js/CacheUMLExplorer.js"></script>
339
- </head>
340
- <body onload="var cue = new CacheUMLExplorer(document.getElementById('treeView'), document.getElementById('classView'))">
341
- <div class="ui-body">
342
- <div class="ui-sideBlock">
343
- <div id="treeView">
344
-
345
- </div>
346
- </div>
347
- <div class="ui-mainBlock">
348
- <div class="ui-ClassInfo">
349
- <span id="className"></span>
350
- </div>
351
- <div id="classView">
352
-
353
- </div>
354
- </div>
355
- </div>
356
- </body>
357
- </html>
332
+ {{replace:html}}
358
333
>
359
334
return $$$OK
360
335
]]> </Implementation >
Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ gulp.task("exportCacheXML", [
116
116
/ \{ \{ r e p l a c e : j s } } / ,
117
117
function ( ) { return fs . readFileSync ( "build/web/js/CacheUMLExplorer.js" , "utf-8" ) ; }
118
118
) )
119
+ . pipe ( replace (
120
+ / \{ \{ r e p l a c e : h t m l } } / ,
121
+ function ( ) { return fs . readFileSync ( "build/web/index.html" , "utf-8" ) ; }
122
+ ) )
119
123
. pipe ( rename ( function ( path ) { path . basename = "CacheUMLExplorer-v" + pkg [ "version" ] ; } ) )
120
124
. pipe ( gulp . dest ( "build/Cache" ) ) ;
121
125
} ) ;
You can’t perform that action at this time.
0 commit comments