diff --git a/ChangeLog b/ChangeLog index 24f0d41f..132d6ef7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,9 +3,17 @@ by doing $ cg log -in a checked out GIT tree, or using the gitweb interface currently -available at +in a checked out GIT tree, or using the gitweb interface available at: - http://pasky.or.cz/gitweb.cgi + http://repo.or.cz/w/elinks.git -(to be moved to a nicer location later). +The data in the main repository reaches back to 2005-09-16, when +ELinks switched from CVS to GIT. To see changes made in CVS before +that, download the history with the contrib/grafthistory.sh script. +Unfortunately, because files in the CVS repository have been moved or +copied around, checking out a historical version often places files in +the wrong directories. The history is usable for git-blame, however. +It is currently also viewable at these sites: + + http://pasky.or.cz/gitweb.cgi?p=elinks-history.git + http://cvsweb.elinks.cz/cvsweb.cgi/elinks/ diff --git a/NEWS b/NEWS index e608b744..d5355701 100644 --- a/NEWS +++ b/NEWS @@ -2,7 +2,7 @@ Release info ============ You can see the complete list of recent changes, bugfixes and new features -in the http://pasky.or.cz/gitweb.cgi[gitweb interface]. See the ChangeLog +in the http://repo.or.cz/w/elinks.git[gitweb interface]. See the ChangeLog file for details. ELinks 0.13.GIT now: diff --git a/contrib/smjs/smartprefixes_classic.js b/contrib/smjs/smartprefixes_classic.js index da1234d7..848bcd86 100644 --- a/contrib/smjs/smartprefixes_classic.js +++ b/contrib/smjs/smartprefixes_classic.js @@ -15,7 +15,7 @@ var smartprefixes = { // If you want to add a smartprefix for another project's CVSweb, // just create a lambda like this. Aren't high-level languages fun? cvs: function (x) { return cvsweb ("http://cvsweb.elinks.cz/cvsweb.cgi/", "elinks", x) }, - gitweb: function (x) { return gitweb("http://pasky.or.cz/gitweb.cgi", "elinks.git", x) }, + gitweb: function (x) { return gitweb("http://repo.or.cz/gitweb.cgi", "elinks.git", x) }, d: "http://www.dict.org/bin/Dict?Query=%s&Form=Dict1&Strategy=*&Database=*&submit=Submit+query", debcontents: debian_contents, debfile: debian_file, diff --git a/contrib/smjs/smartprefixes_common.js b/contrib/smjs/smartprefixes_common.js index e894794c..aaebfa4f 100644 --- a/contrib/smjs/smartprefixes_common.js +++ b/contrib/smjs/smartprefixes_common.js @@ -55,7 +55,7 @@ function cvsweb (base, project, url) return base + project + "/" + file } -/* javascript:gitweb("http://pasky.or.cz/gitweb.cgi", "elinks.git", "%s"); */ +/* javascript:gitweb("http://repo.or.cz/gitweb.cgi", "elinks.git", "%s"); */ function gitweb(base, project, url) { var parts = url.match(/^(search|summary|shortlog|log|blob|commit|commitdiff|history|tree|tag)(\s(.*))?/); diff --git a/src/setup.h b/src/setup.h index e80f2ab2..accbeca1 100644 --- a/src/setup.h +++ b/src/setup.h @@ -13,7 +13,7 @@ #define ELINKS_HOMEPAGE "http://elinks.cz/" #define ELINKS_DOC_URL "http://elinks.cz/documentation/" #define ELINKS_BUGS_URL "http://bugzilla.elinks.cz/" -#define ELINKS_GITWEB_URL "http://pasky.or.cz/gitweb.cgi" +#define ELINKS_GITWEB_URL "http://repo.or.cz/w/elinks.git" #define ELINKS_SOCK_NAME "socket" #define ELINKS_PORT 23456