Changeset 1637
- Timestamp:
- 06/19/08 14:13:29 (2 months ago)
- Files:
-
- trunk/build/stubbles/build.xml (modified) (3 diffs)
- trunk/projects/common (added)
- trunk/projects/common/docroot (added)
- trunk/projects/common/docroot/stageassistant (moved) (moved from trunk/projects/dist/docroot/stageassistant)
- trunk/projects/common/docroot/stageassistant/css/stageassistant.css (modified) (3 diffs)
- trunk/src/main/resources/xsl/stub.xsl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/build/stubbles/build.xml
r1636 r1637 45 45 46 46 <mkdir dir="${build.src.dir}/projects" /> 47 <mkdir dir="${build.src.dir}/projects/dist/cache" /> 48 47 <copy todir="${build.src.dir}/projects/common"> 48 <fileset dir="${stubbles.base.dir}/projects/common"> 49 <include name="**/*"/> 50 <exclude name="**/Thumbs.db"/> 51 </fileset> 52 </copy> 49 53 <copy todir="${build.src.dir}/projects/dist"> 50 54 <fileset dir="${stubbles.base.dir}/projects/dist"> … … 60 64 </copy> 61 65 62 <mkdir dir="${build.src.dir}/projects/ dist/docroot/javascript"/>63 <copy todir="${build.src.dir}/projects/ dist/docroot/javascript">66 <mkdir dir="${build.src.dir}/projects/common/docroot/javascript"/> 67 <copy todir="${build.src.dir}/projects/common/docroot/javascript"> 64 68 <fileset dir="${stubbles.base.dir}/src/main/javascript"> 65 69 <include name="**/*.js"/> … … 137 141 <echo>| Minify javascript to release |</echo> 138 142 <echo>--------------------------------</echo> 139 <minifyJs targetDir="${build.src.dir}/projects/ dist/docroot/javascript"143 <minifyJs targetDir="${build.src.dir}/projects/common/docroot/javascript" 140 144 jsMinPath="${stubbles.base.dir}/lib/jsmin-1.1.0.php"> 141 145 <fileset dir="${stubbles.base.dir}/src/main/javascript"> trunk/projects/common/docroot/stageassistant/css/stageassistant.css
r1561 r1637 7 7 height: 113px; 8 8 z-index: 1001; 9 background: url(/ stageassistant/img/bg.gif) no-repeat;9 background: url(/common/stageassistant/img/bg.gif) no-repeat; 10 10 } 11 11 … … 28 28 height: 26px; 29 29 z-index: 1001; 30 background: url(/ stageassistant/img/min.gif) no-repeat;30 background: url(/common/stageassistant/img/min.gif) no-repeat; 31 31 } 32 32 … … 77 77 #stageassistant .bottom { 78 78 font-size: 1px; 79 background: url(/ stageassistant/img/bottom.gif) no-repeat;79 background: url(/common/stageassistant/img/bottom.gif) no-repeat; 80 80 width: 213px; 81 81 height: 6px; trunk/src/main/resources/xsl/stub.xsl
r1626 r1637 542 542 <ixsl:if test="/document/mode/name = 'DEV' or /document/mode/name = 'STAGE'"> 543 543 <div id="stageassistant"> 544 <a href="#" id="sa_close" onclick="stageAssistant.close(); return false;"><img src="/ stageassistant/img/close.gif" width="15" height="15" alt="Close"/></a>545 <a href="#" id="sa_minimize" onclick="stageAssistant.minimize(); return false;"><img src="/ stageassistant/img/minimize.gif" width="15" height="15" alt="Minimize"/></a>544 <a href="#" id="sa_close" onclick="stageAssistant.close(); return false;"><img src="/common/stageassistant/img/close.gif" width="15" height="15" alt="Close"/></a> 545 <a href="#" id="sa_minimize" onclick="stageAssistant.minimize(); return false;"><img src="/common/stageassistant/img/minimize.gif" width="15" height="15" alt="Minimize"/></a> 546 546 <div class="content"> 547 547 <div id="sa_ec"> 548 548 <div class="buttons"> 549 <a href="?showLastRequestXML=1" target="xmlSource"><img src="/ stageassistant/img/b_domtree.gif" width="52" height="44" alt="View DOM tree"/></a>549 <a href="?showLastRequestXML=1" target="xmlSource"><img src="/common/stageassistant/img/b_domtree.gif" width="52" height="44" alt="View DOM tree"/></a> 550 550 </div> 551 551 </div> … … 558 558 </div> 559 559 <div id="stageassistant_min"> 560 <a href="#" id="sa_close_min" onclick="stageAssistant.close(); return false;"><img src="/ stageassistant/img/close.gif" width="15" height="15" alt="Close"/></a>561 <a href="#" id="sa_open" onclick="stageAssistant.open(); return false;"><img src="/ stageassistant/img/open.gif" width="15" height="15" alt="Open"/></a>560 <a href="#" id="sa_close_min" onclick="stageAssistant.close(); return false;"><img src="/common/stageassistant/img/close.gif" width="15" height="15" alt="Close"/></a> 561 <a href="#" id="sa_open" onclick="stageAssistant.open(); return false;"><img src="/common/stageassistant/img/open.gif" width="15" height="15" alt="Open"/></a> 562 562 </div> 563 563 <script type="text/javascript">
