changed to show the project id in the some code view title band
This commit is contained in:
parent
01655b1dd9
commit
d01e5a2fc2
@ -148,7 +148,7 @@ $this->load->view (
|
||||
<?php
|
||||
print anchor (
|
||||
"code/file/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
$exps = explode ('/', $headpath);
|
||||
$expsize = count($exps);
|
||||
|
@ -201,7 +201,7 @@ $this->load->view (
|
||||
|
||||
print anchor (
|
||||
"code/file/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
$exps = explode ('/', $headpath);
|
||||
$expsize = count($exps);
|
||||
|
@ -274,7 +274,7 @@ $this->load->view (
|
||||
<?php
|
||||
print anchor (
|
||||
"code/${caller}/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
$exps = explode ('/', $headpath);
|
||||
$expsize = count($exps);
|
||||
|
@ -860,7 +860,7 @@ $this->load->view (
|
||||
<?php
|
||||
print anchor (
|
||||
"code/file/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
$exps = explode ('/', $headpath);
|
||||
$expsize = count($exps);
|
||||
|
@ -1160,7 +1160,7 @@ $this->load->view (
|
||||
// let the anchor text be the project name.
|
||||
print anchor (
|
||||
"code/file/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
// explode non-root folder parts to anchors
|
||||
$exps = explode ('/', $headpath);
|
||||
|
@ -70,7 +70,7 @@ $this->load->view (
|
||||
// print the anchor for the root nolder with a project name
|
||||
print anchor (
|
||||
"code/history/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
// explodes part of the full path name into an array
|
||||
$exps = explode ('/', $fullpath);
|
||||
|
@ -586,7 +586,7 @@ $history = $file['history'];
|
||||
<?php
|
||||
print anchor (
|
||||
"code/revision/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
$exps = explode ('/', $headpath);
|
||||
$expsize = count($exps);
|
||||
|
@ -136,7 +136,7 @@ $this->load->view (
|
||||
// let the anchor text be the project name.
|
||||
print anchor (
|
||||
"code/file/{$project->id}{$revreqroot}",
|
||||
htmlspecialchars($project->name));
|
||||
htmlspecialchars($project->id));
|
||||
|
||||
// explode non-root folder parts to anchors
|
||||
$exps = explode ('/', $headpath);
|
||||
|
Loading…
Reference in New Issue
Block a user