From 8d02ae75c84a77ab6d59db1144991d7fb020f507 Mon Sep 17 00:00:00 2001 From: Kalle Olavi Niemitalo Date: Thu, 21 Jun 2007 10:29:06 +0300 Subject: [PATCH] Link to gitweb at repo.or.cz, rather than pasky.or.cz. The history converted from CVS is not in repo.or.cz though, so keep referring to pasky.or.cz for that. (We don't seem to use "gitweb.elinks.cz", which is a DNS alias for pasky.or.cz.) Do you think we should maybe point people to gitweb at repo.or.cz rather than pasky.or.cz? absolutely actually I thought we already are pointing people at repo.or.cz at least there was some movement to do that already, I believe :) [ From commit 9f75e1f094109ab10c473672484aa36bd4a01092 in ELinks 0.12.GIT. --KON ] --- ChangeLog | 30 +++++++++++++++++++----------- NEWS | 2 +- contrib/smjs/smartprefixes_classic.js | 2 +- contrib/smjs/smartprefixes_common.js | 2 +- src/setup.h | 2 +- 5 files changed, 23 insertions(+), 15 deletions(-) rewrite ChangeLog (60%) diff --git a/ChangeLog b/ChangeLog dissimilarity index 60% index 24f0d41f..132d6ef7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,11 +1,19 @@ -The ChangeLog file has been removed. You can get the equivalent information -by doing - - $ cg log - -in a checked out GIT tree, or using the gitweb interface currently -available at - - http://pasky.or.cz/gitweb.cgi - -(to be moved to a nicer location later). +The ChangeLog file has been removed. You can get the equivalent information +by doing + + $ cg log + +in a checked out GIT tree, or using the gitweb interface available at: + + http://repo.or.cz/w/elinks.git + +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 b07d7558..b25b9263 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.11.3.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 65f5fb05..e3e2d810 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 8b6e0c03..7ac026b0 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 -- 2.11.4.GIT