changed to show the project id in the some code view title band

This commit is contained in:
hyung-hwan 2022-08-08 03:37:17 +00:00
parent 01655b1dd9
commit d01e5a2fc2
8 changed files with 8 additions and 8 deletions

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);

View File

@ -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);