This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "FusionForge".
The branch, 6.1 has been updated
via 8111748a392a3f6523e3e9ba4c4c6918e83e2766 (commit)
from 4bf1b8196b2c28b9af9ad94f2e24753a41cd0820 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
https://scm.fusionforge.org/anonscm/gitweb/?p=fusionforge/fusionforge.git;a=commitdiff;h=8111748a392a3f6523e3e9ba4c4c6918e83e2766
commit 8111748a392a3f6523e3e9ba4c4c6918e83e2766
Author: Franck Villaume <[email protected]>
Date: Tue May 22 08:49:52 2018 +0000
fix HTML5: tt -> kbd in all SCM plugins
diff --git a/src/plugins/scmbzr/common/BzrPlugin.class.php
b/src/plugins/scmbzr/common/BzrPlugin.class.php
index 732571d..2ab4e17 100644
--- a/src/plugins/scmbzr/common/BzrPlugin.class.php
+++ b/src/plugins/scmbzr/common/BzrPlugin.class.php
@@ -128,7 +128,7 @@ over it to the project's administrator.");
$b .= ' ';
$b .= _('Enter your site password when prompted.');
$b .= '</p>';
- $b .= '<p><tt>bzr checkout
bzr+ssh://<i>'._('developername').'</i>@' . $this->getBoxForProject($project) .
forge_get_config('repos_path', 'scmbzr') .'/'.
$project->getUnixName().'/'._('branchname').'</tt></p>' ;
+ $b .= '<p><kbd>bzr checkout
bzr+ssh://<i>'._('developername').'</i>@' . $this->getBoxForProject($project) .
forge_get_config('repos_path', 'scmbzr') .'/'.
$project->getUnixName().'/'._('branchname').'</kbd></p>' ;
}
return $b ;
}
diff --git a/src/plugins/scmccase/common/CCasePlugin.class.php
b/src/plugins/scmccase/common/CCasePlugin.class.php
index 710dec5..d3c0a1b 100644
--- a/src/plugins/scmccase/common/CCasePlugin.class.php
+++ b/src/plugins/scmccase/common/CCasePlugin.class.php
@@ -92,7 +92,7 @@ class CCasePlugin extends SCMPlugin {
echo "<b>"._('ClearCase Access')."</b>" ;
print "<p>" ;
- printf (_('Either mount the VOB with <tt>cleartool
mount %1$s</tt> or select the <tt>%1$s</tt> VOB in your ClearCase Explorer.'),
+ printf (_('Either mount the VOB with <kbd>cleartool
mount %1$s</kbd> or select the <kbd>%1$s</kbd> VOB in your ClearCase
Explorer.'),
$vob_tag) ;
print "</p>" ;
diff --git a/src/plugins/scmcpold/common/CpoldPlugin.class.php
b/src/plugins/scmcpold/common/CpoldPlugin.class.php
index 1a3278a..a2f7acd 100644
--- a/src/plugins/scmcpold/common/CpoldPlugin.class.php
+++ b/src/plugins/scmcpold/common/CpoldPlugin.class.php
@@ -81,7 +81,7 @@ class CpoldPlugin extends SCMPlugin {
$b .= ' ';
$b .= _('Enter your site password when prompted.');
$b .= '</p>';
- $b .= '<p><tt>scp -r '.$d.'@' .
$this->getBoxForProject($project) . ':'. forge_get_config('repos_path',
'scmcpold') .'/'. $project->getUnixName().'/ .</tt></p>' ;
+ $b .= '<p><kbd>scp -r '.$d.'@' .
$this->getBoxForProject($project) . ':'. forge_get_config('repos_path',
'scmcpold') .'/'. $project->getUnixName().'/ .</kbd></p>' ;
} else {
$b .= '<h2>';
$b .= sprintf(_('Developer %s Access via SSH'),
'CPOLD');
@@ -95,7 +95,7 @@ class CpoldPlugin extends SCMPlugin {
$b .= ' ';
$b .= _('Enter your site password when prompted.');
$b .= '</p>';
- $b .= '<p><tt>scp -r <i>'._('developername').'</i>@' .
$this->getBoxForProject($project) . ':'. forge_get_config('repos_path',
'scmcpold') .'/'. $project->getUnixName().'/ .</tt></p>' ;
+ $b .= '<p><kbd>scp -r <i>'._('developername').'</i>@' .
$this->getBoxForProject($project) . ':'. forge_get_config('repos_path',
'scmcpold') .'/'. $project->getUnixName().'/ .</kbd></p>' ;
}
return $b ;
}
diff --git a/src/plugins/scmcvs/common/CVSPlugin.class.php
b/src/plugins/scmcvs/common/CVSPlugin.class.php
index 66c6b85..ef3d5eb 100644
--- a/src/plugins/scmcvs/common/CVSPlugin.class.php
+++ b/src/plugins/scmcvs/common/CVSPlugin.class.php
@@ -87,8 +87,8 @@ over it to the project's administrator.");
$b .= _('This project\'s CVS repository can be checked out
through anonymous (pserver) CVS with the following instruction set. The module
you wish to check out must be specified as the <em>modulename</em>. When
prompted for a password for <em>anonymous</em>, simply press the Enter key.');
$b .= '</p>';
$b .= '<p>
- <tt>cvs -d :pserver:anonymous@' . $cvsrootend.'
login</tt><br/>
- <tt>cvs -d :pserver:anonymous@' . $cvsrootend.'
checkout <em>'._('modulename').'</em></tt>
+ <kbd>cvs -d :pserver:anonymous@' . $cvsrootend.'
login</kbd><br/>
+ <kbd>cvs -d :pserver:anonymous@' . $cvsrootend.'
checkout <em>'._('modulename').'</em></kbd>
</p>';
return $b ;
@@ -112,8 +112,8 @@ over it to the project's administrator.");
$b .= _('Enter your site password when prompted.');
$b .= '</p>';
$b .= '<p>
- <tt>export CVS_RSH=ssh</tt><br/>
- <tt>cvs -d :ext:'.$d.'@'.$cvsrootend.' checkout
<em>'._('modulename').'</em></tt>
+ <kbd>export CVS_RSH=ssh</kbd><br/>
+ <kbd>cvs -d :ext:'.$d.'@'.$cvsrootend.'
checkout <em>'._('modulename').'</em></kbd>
</p>';
} else {
$b = '<h2>';
@@ -129,8 +129,8 @@ over it to the project's administrator.");
$b .= _('Enter your site password when prompted.');
$b .= '</p>';
$b .= '<p>
- <tt>export CVS_RSH=ssh</tt><br/>
- <tt>cvs -d
:ext:<em>'._('developername').'</em>@'.$cvsrootend.' checkout
<em>'._('modulename').'</em></tt>
+ <kbd>export CVS_RSH=ssh</kbd><br/>
+ <kbd>cvs -d
:ext:<em>'._('developername').'</em>@'.$cvsrootend.' checkout
<em>'._('modulename').'</em></kbd>
</p>';
}
return $b ;
diff --git a/src/plugins/scmdarcs/common/DarcsPlugin.class.php
b/src/plugins/scmdarcs/common/DarcsPlugin.class.php
index 70840d6..7a5415c 100644
--- a/src/plugins/scmdarcs/common/DarcsPlugin.class.php
+++ b/src/plugins/scmdarcs/common/DarcsPlugin.class.php
@@ -109,7 +109,7 @@ over it to the project's administrator.");
$protocol = forge_get_config('use_ssl')?
'https' : 'http';
$url =
$protocol.'://'.$this->getBoxForProject($project).'/anonscm/darcs/'.$project->getUnixName().'/'.$default_repo;
}
- $b = '<p><tt>darcs get '.$url.'</tt></p>';
+ $b = '<p><kbd>darcs get '.$url.'</kbd></p>';
if (count($repo_names) > 1) {
$b .= '<p>'._('where REPO can be:
').implode(_(', '), $repo_names).'</p>';
}
diff --git a/src/plugins/scmgit/common/GitPlugin.class.php
b/src/plugins/scmgit/common/GitPlugin.class.php
index f255c72..e5f22d1 100644
--- a/src/plugins/scmgit/common/GitPlugin.class.php
+++ b/src/plugins/scmgit/common/GitPlugin.class.php
@@ -230,7 +230,7 @@ control over it to the project's administrator.");
' '. _('Enter your site password when
prompted.'));
$htmlRepo = '';
foreach ($repo_list as $repo_name) {
- $htmlRepo .= '<tt>git clone
'.$protocol.'://<i>'._('developername').'</i>@'.$this->getBoxForProject($project).'/authscm/<i>'._('developername').'</i>/git/'.$project->getUnixName()
.'/'. $repo_name .'.git</tt><br />';
+ $htmlRepo .= '<kbd>git clone
'.$protocol.'://<i>'._('developername').'</i>@'.$this->getBoxForProject($project).'/authscm/<i>'._('developername').'</i>/git/'.$project->getUnixName()
.'/'. $repo_name .'.git</kbd><br />';
}
$b .= html_e('p', array(), $htmlRepo);
$b .= '</div>';
diff --git a/src/plugins/scmgit/common/scmgit_Widget_MyRepositories.class.php
b/src/plugins/scmgit/common/scmgit_Widget_MyRepositories.class.php
index 7a8331c..a6134b3 100644
--- a/src/plugins/scmgit/common/scmgit_Widget_MyRepositories.class.php
+++ b/src/plugins/scmgit/common/scmgit_Widget_MyRepositories.class.php
@@ -50,7 +50,7 @@ class scmgit_Widget_MyRepositories extends Widget {
foreach ($GitRepositories as $GitRepository) {
$project = group_get_object($GitRepository);
$cells = array();
- $cells[][] = '<tt>git clone
git+ssh://'.$user->getUnixName().'@' . forge_get_config('scm_host') .'/'.
forge_get_config('scm_root', 'scmgit') .'/'. $project->getUnixName()
.'/users/'. $user->getUnixName() .'.git</tt>';
+ $cells[][] = '<kbd>git clone
git+ssh://'.$user->getUnixName().'@' . forge_get_config('scm_host') .'/'.
forge_get_config('scm_root', 'scmgit') .'/'. $project->getUnixName()
.'/users/'. $user->getUnixName() .'.git</kbd>';
$cells[][] =
util_make_link('/scm/browser.php?group_id='.$project->getID().'&user_id='.$user->getID(),
_('Browse Git Repository'));
$returnhtml .= $HTML->multiTableRow(array(),
$cells);
}
-----------------------------------------------------------------------
Summary of changes:
src/plugins/scmbzr/common/BzrPlugin.class.php | 2 +-
src/plugins/scmccase/common/CCasePlugin.class.php | 2 +-
src/plugins/scmcpold/common/CpoldPlugin.class.php | 4 ++--
src/plugins/scmcvs/common/CVSPlugin.class.php | 12 ++++++------
src/plugins/scmdarcs/common/DarcsPlugin.class.php | 2 +-
src/plugins/scmgit/common/GitPlugin.class.php | 2 +-
.../scmgit/common/scmgit_Widget_MyRepositories.class.php | 2 +-
7 files changed, 13 insertions(+), 13 deletions(-)
hooks/post-receive
--
FusionForge
_______________________________________________
Fusionforge-commits mailing list
[email protected]
http://lists.fusionforge.org/cgi-bin/mailman/listinfo/fusionforge-commits