Files
EasySoft-ZenTaoPMS/module/git/view/diff.html.php
2020-03-05 15:46:32 +08:00

20 lines
781 B
PHP

<?php
/**
* The diff view file of git module of ZenTaoPMS.
*
* @copyright Copyright 2009-2015 青岛易软天创网络科技有限公司(QingDao Nature Easy Soft Network Technology Co,LTD, www.cnezsoft.com)
* @license ZPL (http://zpl.pub/page/zplv12.html)
* @author Congzhi Chen <congzhi@cnezsoft.com>
* @package file
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php include '../../common/view/header.lite.html.php';?>
<?php $catLink = $this->loadModel('repo')->buildURL('cat', $path, $revision);?>
<div class='detail'>
<div class='detail-title'><?php echo html::a($catLink, "$path@$revision");?></div>
<div class='detail-content'><xmp><?php echo $diff;?></xmp></div>
</div>
<?php include '../../common/view/footer.lite.html.php';?>