File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -329,32 +329,7 @@ Method returns user application.</Description>
329329<ReturnType >%Status</ReturnType >
330330<Implementation ><![CDATA[
331331 &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}}
358333 >
359334 return $$$OK
360335]]> </Implementation >
Original file line number Diff line number Diff line change @@ -116,6 +116,10 @@ gulp.task("exportCacheXML", [
116116 / \{ \{ r e p l a c e : j s } } / ,
117117 function ( ) { return fs . readFileSync ( "build/web/js/CacheUMLExplorer.js" , "utf-8" ) ; }
118118 ) )
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+ ) )
119123 . pipe ( rename ( function ( path ) { path . basename = "CacheUMLExplorer-v" + pkg [ "version" ] ; } ) )
120124 . pipe ( gulp . dest ( "build/Cache" ) ) ;
121125} ) ;
You can’t perform that action at this time.
0 commit comments