mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-03 17:22:20 +09:00
#18427049 : add autoinstall module
git-svn-id: http://xe-core.googlecode.com/svn/sandbox@6915 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
82d01adc2d
commit
d5c98490ad
44 changed files with 1317 additions and 0 deletions
35
modules/autoinstall/tpl/install.html
Normal file
35
modules/autoinstall/tpl/install.html
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
<!--#include("header.html")-->
|
||||
<!--%import("css/autoinstall.css")-->
|
||||
<!--%import("js/autoinstall.js")-->
|
||||
<div class="resourceContent">
|
||||
<table class="packageList">
|
||||
<colgroup>
|
||||
<col width="150" /><col width="*" />
|
||||
</colgroup>
|
||||
<tr>
|
||||
<td class="title" colspan="2">
|
||||
<h3>
|
||||
{$package->title} ver. {$package->version} ( <!--@if($package->installed)-->현재버전: {$package->cur_version} <!--@if($package->need_update)--> (업데이트가 필요합니다.)<!--@end--> <!--@else-->인스톨이 필요합니다. <!--@end--> )
|
||||
</h3>
|
||||
</td>
|
||||
</tr>
|
||||
<!--@if($package->depends)-->
|
||||
<tr>
|
||||
<td>의존하고 있는 프로그램</td>
|
||||
<td>
|
||||
<!--@foreach($package->depends as $dep)-->
|
||||
{$dep->title} ver. {$dep->version} -
|
||||
<!--@if($dep->installed)-->현재버전: {$dep->cur_version} <!--@if($dep->need_update)--> (업데이트가 필요합니다.)<!--@end--> <!--@else-->인스톨이 필요합니다. <!--@end-->
|
||||
<br />
|
||||
<!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
<!--@end-->
|
||||
<tr>
|
||||
<td colspan="2">
|
||||
설치를 진행하면 의존성이 있는 모든 프로그램을 함께 설치합니다. <!--@if(!$package->installed || $package->need_update)--><a href="#" onclick="doInstallPackage('{$package->package_srl}')">설치하기</a><!--@end-->
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
</div>
|
||||
Loading…
Add table
Add a link
Reference in a new issue