westdc-zf1/application/default/views/scripts/data/download.phtml

40 lines
1.7 KiB
PHTML
Raw Normal View History

2009-03-06 03:20:46 +00:00
<?php
$this->headTitle($this->config->title->site);
$this->headTitle($this->config->title->data);
$this->headTitle('下载');
$this->headTitle()->setSeparator(' - ');
$this->breadcrumb('<a href="/">首页</a>');
$this->breadcrumb('<a href="/data">'.$this->config->title->data.'</a>');
$this->breadcrumb('下载');
$this->breadcrumb()->setSeparator(' > ');
?>
2013-05-26 12:08:28 +00:00
<div class="row">
<div class="span3">
<div class="well sidebar-nav">
<?= $this->partial('account/left.phtml'); ?>
</div><!--/.well -->
</div><!--/span-->
<div class="span9">
2009-03-06 03:20:46 +00:00
<h1><?php echo $this->md['title']; ?>(<?php echo $this->md['filesize']; ?>MB)</h1>
<fieldset><legend>FTP下载地址</legend>
<ul>
2013-05-26 12:08:28 +00:00
<?php if ($this->ftpurl) : ?>
<li><a href="<?php echo $this->ftpurl; ?>"><?php echo $this->ftpurl; ?></a></li>
<?php endif;?>
2009-03-06 03:20:46 +00:00
</ul>
</fieldset>
2013-05-26 12:08:28 +00:00
2009-12-25 11:57:59 +00:00
<fieldset><legend>FTP使用说明</legend>
帐号信息如下:<ul><li>FTP的用户名<?php echo $this->username; ?></li>
<li>FTP的密码<?php echo $this->userpass; ?></li>
<li>密码有效期限:<?php echo $this->ftptime; ?></li>
</ul>
2013-05-26 12:08:28 +00:00
<?php if ($this->md['host']=='ftp.westgis.ac.cn') : ?>
<p class="text-error">请注意此FTP需要在登陆后手工输入目录地址</p>
<?php endif; ?>
2014-05-28 23:56:42 +00:00
<p>FTP是一种常用的文件传输协议推荐您使用使用开源的<a href="http://filezilla-project.org">FileZilla</a>软件来进行数据下载您也可以使用您自己喜欢的FTP客户端来进行数据下载。</p>
2013-05-26 12:08:28 +00:00
<p>在使用FTP中遇到问题可以参考<a href="/archives/news/localnews/archive-7.html">数据的FTP下载问题</a></p>
2009-12-25 12:35:25 +00:00
<img src="/images/filezilla-westdc.png" alt="以FileZilla演示如何下载数据" />
2009-12-25 11:57:59 +00:00
</fieldset>
2013-05-26 12:08:28 +00:00
</div>
2009-03-06 03:20:46 +00:00
</div>