Merge branch 'js/update-urls-in-doc-and-comment' into maint-2.43
Stale URLs have been updated to their current counterparts (or archive.org) and HTTP links are replaced with working HTTPS links. * js/update-urls-in-doc-and-comment: doc: refer to internet archive doc: update links for andre-simon.de doc: switch links to https doc: update links to current pages
This commit is contained in:
@ -203,7 +203,7 @@ You can specify the following configuration variables when building GIT:
|
||||
created. [Default: /etc/gitweb.conf]
|
||||
* HIGHLIGHT_BIN
|
||||
Path to the highlight executable to use (must be the one from
|
||||
http://www.andre-simon.de due to assumptions about parameters and output).
|
||||
http://andre-simon.de/zip/download.php due to assumptions about parameters and output).
|
||||
Useful if highlight is not installed on your webserver's PATH.
|
||||
[Default: highlight]
|
||||
|
||||
|
@ -122,9 +122,9 @@ our $favicon = "++GITWEB_FAVICON++";
|
||||
our $javascript = "++GITWEB_JS++";
|
||||
|
||||
# URI and label (title) of GIT logo link
|
||||
#our $logo_url = "http://www.kernel.org/pub/software/scm/git/docs/";
|
||||
#our $logo_url = "https://www.kernel.org/pub/software/scm/git/docs/";
|
||||
#our $logo_label = "git documentation";
|
||||
our $logo_url = "http://git-scm.com/";
|
||||
our $logo_url = "https://git-scm.com/";
|
||||
our $logo_label = "git homepage";
|
||||
|
||||
# source of projects list
|
||||
@ -197,7 +197,7 @@ our @diff_opts = ('-M'); # taken from git_commit
|
||||
our $prevent_xss = 0;
|
||||
|
||||
# Path to the highlight executable to use (must be the one from
|
||||
# http://www.andre-simon.de due to assumptions about parameters and output).
|
||||
# http://andre-simon.de/zip/download.php due to assumptions about parameters and output).
|
||||
# Useful if highlight is not installed on your webserver's PATH.
|
||||
# [Default: highlight]
|
||||
our $highlight_bin = "++HIGHLIGHT_BIN++";
|
||||
@ -269,7 +269,7 @@ our %avatar_size = (
|
||||
# Leave it undefined (or set to 'undef') to turn off load checking.
|
||||
our $maxload = 300;
|
||||
|
||||
# configuration for 'highlight' (http://www.andre-simon.de/)
|
||||
# configuration for 'highlight' (http://andre-simon.de/doku/highlight/en/highlight.php)
|
||||
# match by basename
|
||||
our %highlight_basename = (
|
||||
#'Program' => 'py',
|
||||
@ -8193,7 +8193,7 @@ sub git_feed {
|
||||
my $have_blame = gitweb_check_feature('blame');
|
||||
|
||||
# Atom: http://www.atomenabled.org/developers/syndication/
|
||||
# RSS: http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
|
||||
# RSS: https://web.archive.org/web/20030729001534/http://www.notestips.com/80256B3A007F2692/1/NAMO5P9UPQ
|
||||
if ($format ne 'rss' && $format ne 'atom') {
|
||||
die_error(400, "Unknown web feed format");
|
||||
}
|
||||
|
@ -667,7 +667,7 @@ div.remote {
|
||||
}
|
||||
|
||||
|
||||
/* Style definition generated by highlight 2.4.5, http://www.andre-simon.de/ */
|
||||
/* Style definition generated by highlight 2.4.5, http://andre-simon.de/doku/highlight/en/highlight.php */
|
||||
|
||||
/* Highlighting theme definition: */
|
||||
|
||||
|
@ -123,8 +123,8 @@ function addCssRule(selector, style) {
|
||||
* NOTE that there are limits and differences compared to native
|
||||
* getElementsByClassName as defined by e.g.:
|
||||
* https://developer.mozilla.org/en/DOM/document.getElementsByClassName
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-getelementsbyclassname
|
||||
* http://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-document-getelementsbyclassname
|
||||
* https://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-getelementsbyclassname
|
||||
* https://www.whatwg.org/specs/web-apps/current-work/multipage/dom.html#dom-document-getelementsbyclassname
|
||||
*
|
||||
* Namely, this implementation supports only single class name as
|
||||
* argument and not set of space-separated tokens representing classes,
|
||||
@ -133,11 +133,11 @@ function addCssRule(selector, style) {
|
||||
* (via getElementsByTagName).
|
||||
*
|
||||
* Based on
|
||||
* http://code.google.com/p/getelementsbyclassname/
|
||||
* https://code.google.com/p/getelementsbyclassname/
|
||||
* http://www.dustindiaz.com/getelementsbyclass/
|
||||
* http://stackoverflow.com/questions/1818865/do-we-have-getelementsbyclassname-in-javascript
|
||||
* https://stackoverflow.com/questions/1818865/do-we-have-getelementsbyclassname-in-javascript
|
||||
*
|
||||
* See also http://ejohn.org/blog/getelementsbyclassname-speed-comparison/
|
||||
* See also https://johnresig.com/blog/getelementsbyclassname-speed-comparison/
|
||||
*
|
||||
* @param {String} class: name of _single_ class to find
|
||||
* @param {String} [taghint] limit search to given tags
|
||||
|
Reference in New Issue
Block a user