Cosmetic changes.
This commit is contained in:
parent
2c7b3e1e1a
commit
fad12e17c7
@ -43,6 +43,7 @@ class IDF_ScmFactory
|
||||
case 'git':
|
||||
default:
|
||||
return new IDF_Git($request->project->getGitRepository());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -101,29 +101,27 @@ class IDF_Svn
|
||||
escapeshellarg($rev));
|
||||
$xmlLs = shell_exec($cmd);
|
||||
$xml = simplexml_load_string($xmlLs);
|
||||
|
||||
$res = array();
|
||||
foreach ($xml->list->entry as $entry) {
|
||||
$file = array();
|
||||
$file['type'] = $this->assoc[(String) $entry['kind']];
|
||||
$file['file'] = (String) $entry->name;
|
||||
$file['fullpath'] = $folder.'/'.((String) $entry->name);
|
||||
$file['type'] = $this->assoc[(string) $entry['kind']];
|
||||
$file['file'] = (string) $entry->name;
|
||||
$file['fullpath'] = $folder.'/'.((string) $entry->name);
|
||||
$file['date'] = gmdate('Y-m-d H:i:s',
|
||||
strtotime((String) $entry->commit->date));
|
||||
$file['rev'] = (String) $entry->commit['revision'];
|
||||
|
||||
strtotime((string) $entry->commit->date));
|
||||
$file['rev'] = (string) $entry->commit['revision'];
|
||||
// Get commit message
|
||||
$currentReposFile = $this->repo.'/'.$folder.'/'.$file['file'];
|
||||
$file['log'] = $this->getCommitMessage($currentReposFile, $rev);
|
||||
|
||||
// Get the size if the type is blob
|
||||
if ($file['type'] == 'blob') {
|
||||
$file['size'] = (String) $entry->size;
|
||||
$file['size'] = (string) $entry->size;
|
||||
}
|
||||
|
||||
$file['perm'] = '';
|
||||
|
||||
$res[] = (Object) $file;
|
||||
$res[] = (object) $file;
|
||||
}
|
||||
|
||||
return $res;
|
||||
@ -147,7 +145,7 @@ class IDF_Svn
|
||||
escapeshellarg($rev));
|
||||
$xmlLog = shell_exec($cmd);
|
||||
$xml = simplexml_load_string($xmlLog);
|
||||
return (String) $xml->logentry->msg;
|
||||
return (string) $xml->logentry->msg;
|
||||
}
|
||||
|
||||
|
||||
@ -171,16 +169,16 @@ class IDF_Svn
|
||||
|
||||
$file = array();
|
||||
$file['fullpath'] = $totest;
|
||||
$file['hash'] = (String) $entry->repository->uuid;
|
||||
$file['type'] = $this->assoc[(String) $entry['kind']];
|
||||
$file['hash'] = (string) $entry->repository->uuid;
|
||||
$file['type'] = $this->assoc[(string) $entry['kind']];
|
||||
$file['file'] = $totest;
|
||||
$file['rev'] = (String) $entry->commit['revision'];
|
||||
$file['author'] = (String) $entry->author;
|
||||
$file['date'] = gmdate('Y-m-d H:i:s', strtotime((String) $entry->commit->date));
|
||||
$file['size'] = (String) $entry->size;
|
||||
$file['rev'] = (string) $entry->commit['revision'];
|
||||
$file['author'] = (string) $entry->author;
|
||||
$file['date'] = gmdate('Y-m-d H:i:s', strtotime((string) $entry->commit->date));
|
||||
$file['size'] = (string) $entry->size;
|
||||
$file['log'] = '';
|
||||
|
||||
return (Object) $file;
|
||||
return (object) $file;
|
||||
}
|
||||
|
||||
|
||||
@ -230,15 +228,15 @@ class IDF_Svn
|
||||
$xmlRes = shell_exec($cmd);
|
||||
$xml = simplexml_load_string($xmlRes);
|
||||
|
||||
$res['author'] = (String) $xml->logentry->author;
|
||||
$res['date'] = gmdate('Y-m-d H:i:s', strtotime((String) $xml->logentry->date));
|
||||
$res['title'] = (String) $xml->logentry->msg;
|
||||
$res['commit'] = (String) $xml->logentry['revision'];
|
||||
$res['author'] = (string) $xml->logentry->author;
|
||||
$res['date'] = gmdate('Y-m-d H:i:s', strtotime((string) $xml->logentry->date));
|
||||
$res['title'] = (string) $xml->logentry->msg;
|
||||
$res['commit'] = (string) $xml->logentry['revision'];
|
||||
$res['changes'] = $this->getDiff($rev);
|
||||
$res['tree'] = '';
|
||||
|
||||
|
||||
return (Object) $res;
|
||||
return (object) $res;
|
||||
}
|
||||
|
||||
private function getDiff($rev='HEAD')
|
||||
@ -276,13 +274,13 @@ class IDF_Svn
|
||||
$res = array();
|
||||
foreach ($xml->logentry as $entry) {
|
||||
$log = array();
|
||||
$log['author'] = (String) $entry->author;
|
||||
$log['date'] = gmdate('Y-m-d H:i:s', strtotime((String) $entry->date));
|
||||
$log['title'] = (String) $entry->msg;
|
||||
$log['commit'] = (String) $entry['revision'];
|
||||
$log['author'] = (string) $entry->author;
|
||||
$log['date'] = gmdate('Y-m-d H:i:s', strtotime((string) $entry->date));
|
||||
$log['title'] = (string) $entry->msg;
|
||||
$log['commit'] = (string) $entry['revision'];
|
||||
$log['full_message'] = '';
|
||||
|
||||
$res[] = (Object) $log;
|
||||
$res[] = (object) $log;
|
||||
}
|
||||
|
||||
return $res;
|
||||
@ -328,7 +326,7 @@ class IDF_Svn
|
||||
|
||||
// Get the value of each property
|
||||
foreach ($props->target->property as $prop) {
|
||||
$key = (String) $prop['name'];
|
||||
$key = (string) $prop['name'];
|
||||
$res[$key] = $this->getProperty($key, $rev, $path);
|
||||
}
|
||||
|
||||
@ -356,7 +354,7 @@ class IDF_Svn
|
||||
$xmlProp = shell_exec($cmd);
|
||||
$prop = simplexml_load_string($xmlProp);
|
||||
|
||||
return (String) $prop->target->property;
|
||||
return (string) $prop->target->property;
|
||||
}
|
||||
|
||||
|
||||
@ -378,7 +376,7 @@ class IDF_Svn
|
||||
$xmlInfo = shell_exec($cmd);
|
||||
|
||||
$xml = simplexml_load_string($xmlInfo);
|
||||
return (String) $xml->entry->commit['revision'];
|
||||
return (string) $xml->entry->commit['revision'];
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -68,6 +68,7 @@ class IDF_Views_Source
|
||||
$branches[0]));
|
||||
return new Pluf_HTTP_Response_Redirect($url);
|
||||
}
|
||||
|
||||
$res = $scm->filesAtCommit($commit);
|
||||
$cobject = $scm->getCommit($commit);
|
||||
$tree_in = in_array($commit, $branches);
|
||||
|
@ -6,7 +6,6 @@
|
||||
<tr>
|
||||
<th>{trans 'Age'}</th>
|
||||
<th>{trans 'Message'}</th>
|
||||
{* <th>{trans 'Details'}</th> *}
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@ -38,12 +37,14 @@
|
||||
</p>
|
||||
{/if}
|
||||
{if $scm == 'svn'}
|
||||
<p><strong>{trans 'Revison:'} {$commit}</strong><br />
|
||||
<form class="star" action="{url 'IDF_Views_Source::changelogRev', array($project.shortname)}" method="get">
|
||||
<input accesskey="4" type="text" value="{$commit}" name="rev" size="20" />
|
||||
<form class="star" action="{url 'IDF_Views_Source::changelogRev', array($project.shortname)}" method="get">
|
||||
<p><strong>{trans 'Revison:'}</strong> {$commit}</p>
|
||||
<p>
|
||||
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
||||
<input type="submit" name="s" value="{trans 'Go to revision'}" />
|
||||
</form>
|
||||
</p>
|
||||
</form>
|
||||
|
||||
{/if}
|
||||
{/block}
|
||||
|
||||
|
@ -56,16 +56,17 @@
|
||||
{/foreach}
|
||||
</tbody>
|
||||
</table>
|
||||
<p class="right soft"><img style="vertical-align: text-bottom;" src="{media '/idf/img/package-grey.png'}" alt="{trans 'Archive'}" align="bottom" /></a> <kbd>svn checkout {$project.getSvnDaemonUrl()}@{$commit}</kbd></p>
|
||||
<p class="right soft"><img style="vertical-align: text-bottom;" src="{media '/idf/img/package-grey.png'}" alt="{trans 'Archive'}" align="bottom" /> <kbd>svn checkout {$project.getSvnDaemonUrl()}@{$commit}</kbd></p>
|
||||
|
||||
|
||||
{/block}
|
||||
{block context}
|
||||
<p><strong>{trans 'Revison:'} {$commit}</strong><br />
|
||||
<form class="star" action="{url 'IDF_Views_Source::treeRev', array($project.shortname)}" method="get">
|
||||
<input accesskey="4" type="text" value="{$commit}" name="rev" size="20" />
|
||||
<form class="star" action="{url 'IDF_Views_Source::treeRev', array($project.shortname)}" method="get">
|
||||
<p><strong>{trans 'Revison:'}</strong> {$commit}</p>
|
||||
<p>
|
||||
<input accesskey="4" type="text" value="{$commit}" name="rev" size="5" />
|
||||
<input type="hidden" name="sourcefile" value="{$base}"/>
|
||||
<input type="submit" name="s" value="{trans 'Go to revision'}" />
|
||||
<input type="submit" name="s" value="{trans 'Go to revision'}" /></p>
|
||||
</form>
|
||||
</p>
|
||||
|
||||
{/block}
|
||||
|
Loading…
Reference in New Issue
Block a user