Skip to content

Commit

Permalink
增加一堆说明,以及一些小改动
Browse files Browse the repository at this point in the history
  • Loading branch information
xsir317 committed Dec 2, 2014
1 parent 0ce0dec commit 851fafd
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 3 deletions.
30 changes: 29 additions & 1 deletion publisher/app/views/hello.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,33 @@
@stop

@section('content')
<p>This is my body content.</p>
<article>
<h3>欢迎使用代码发布系统</h3>
<p>本系统暂时只支持SVN,以后将逐步支持GIT。您可在“项目”菜单中找到自己要发布的项目,通过页面浏览项目的SVN历史纪录,选择要发布的版本和要发布的服务器,系统将把您选择的代码版本发布到指定服务器。</p>
<p>权限由超级管理员管理,请向超级管理员联系获取您所在项目的权限。请注意,获得权限之后,您将对您的项目负责。</p>
<h3>一般配置、使用说明</h3>
<p>
<h4>项目配置选项说明</h4>
<section>
<ul class="uk-list">
<li>项目id: 每个项目有唯一的ID。</li>
<li>项目名:项目通常的名称。请填写汉字或英文,确保准确,不要有歧义、误解或与其他项目混淆。</li>
<li>项目管理员:项目负责人,如线上出现bug可能会首先联系此人。</li>
<li>版本管理工具:目前请统一选择SVN,未来会支持GIT。</li>
<li>源码地址:要发布的项目的SVN地址,请确认这是要发布的项目的跟目录。</li>
<li>账号密码:请提供SVN读权限的账户,以及相应密码,确保系统可以成功获取项目代码。</li>
<li>当前版本:当前本系统checkout的代码版本。</li>
<li>同步时忽略:在源码目录中,但是不想发布到线上的文件。比如.svn文件夹、config文件、缓存目录内容等。(请使用相对路径)</li>
<li>备注:关于项目的任何备注信息。</li>
<li><strong>请注意,修改源码地址会导致发布服务器上check的代码完全清除并重新checkout,可能会消耗一些时间。</strong></li>
</ul>
</section>
<h4>服务器配置选项说明</h4>
<section></section>
<h4>rsync服务器端配置说明</h4>
<section></section>
<h4>发布操作</h4>
<section></section>
</p>
</article>
@stop
1 change: 0 additions & 1 deletion publisher/app/views/sidebar.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@
array('项目','/projects/index','projects','uk-icon-gear',false),
array('用户管理','/users/index','users','uk-icon-male',true),
array('修改密码','/users/password','pwd','uk-icon-asterisk',false),
array('权限分配','/admin/index','roles','uk-icon-users',false),
array('登出','/logout','logout','uk-icon-sign-out',false),
);
?>
Expand Down
4 changes: 3 additions & 1 deletion publisher/app/views/users/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@
{{ Form::checkbox('is_superadmin','1',($user && $user->is_superadmin)) }}
</div>
</div>
<?php if(!$user || !$user->is_superadmin):?>
<div class="uk-form-row">
{{ Form::label('','项目',array('class' => 'uk-form-label')) }}
<div class="uk-form-controls">
<ul>
<ul class="uk-list">
<?php foreach($projects as $_row):?>
<li>
{{ Form::checkbox('project[]',$_row->id,($user && in_array($_row->id,$user->pj_ids()))) }} {{ $_row->title }}
Expand All @@ -51,6 +52,7 @@
</ul>
</div>
</div>
<?php endif;?>
<?php if($error):?>
<div class="uk-alert uk-alert-danger">{{ $error }}</div>
<?php endif;?>
Expand Down

0 comments on commit 851fafd

Please sign in to comment.