From 3032b456bfe841851bbe644af1c2b79d661027e1 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?=
 <grubba@grubba.org>
Date: Sun, 6 Mar 2011 17:02:01 +0100
Subject: [PATCH] Deprecating pike.ida.liu.se for pike.lysator.liu.se.

---
 .gitattributes                                   | 2 --
 lib/master.pike.in                               | 2 +-
 lib/modules/Protocols.pmod/DNS.pmod              | 6 +++---
 lib/modules/Protocols.pmod/HTTP.pmod/Query.pike  | 2 +-
 lib/modules/Protocols.pmod/HTTP.pmod/module.pmod | 4 ++--
 lib/modules/Search.pmod/Filter.pmod/Output.pike  | 2 +-
 lib/modules/Web.pmod/Crawler.pmod                | 4 ++--
 lib/modules/Web.pmod/testsuite.in                | 6 +++---
 refdoc/structure/modref.html                     | 6 +++---
 refdoc/structure/module_modref.html              | 4 ++--
 refdoc/structure/pelix_modref.html               | 6 +++---
 11 files changed, 21 insertions(+), 23 deletions(-)

diff --git a/.gitattributes b/.gitattributes
index 1d16233879..13d152988c 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -235,12 +235,10 @@ testfont binary
 /lib/modules/Tools.pmod/Standalone.pmod/process_files.pike foreign_ident
 /lib/modules/Tools.pmod/Standalone.pmod/rsif.pike foreign_ident
 /lib/modules/Tools.pmod/Standalone.pmod/rsqld.pike foreign_ident
-/lib/modules/Web.pmod/Crawler.pmod foreign_ident
 /lib/modules/Web.pmod/OWL.pike foreign_ident
 /lib/modules/Web.pmod/RDF.pike foreign_ident
 /lib/modules/Web.pmod/RDFS.pike foreign_ident
 /lib/modules/Web.pmod/RSS.pmod foreign_ident
-/lib/modules/Web.pmod/testsuite.in foreign_ident
 /lib/modules/Yabu.pmod/module.pmod foreign_ident
 /lib/modules/Yabu.pmod/testsuite.in foreign_ident
 /lib/modules/_Image.pmod/Dims.pmod foreign_ident
diff --git a/lib/master.pike.in b/lib/master.pike.in
index cecc48505f..1f08aa5e50 100644
--- a/lib/master.pike.in
+++ b/lib/master.pike.in
@@ -3838,7 +3838,7 @@ void _main(array(string) orig_argv)
      case "info":
        write("Software......Pike\n"
 	     "Version......."+version()+"\n"
-	     "WWW...........http://pike.ida.liu.se/\n"
+	     "WWW...........http://pike.lysator.liu.se/\n"
 	     "\n"
 	     "pike binary..."+_pike_file_name+"\n"+
 	      format_paths() + "\n"
diff --git a/lib/modules/Protocols.pmod/DNS.pmod b/lib/modules/Protocols.pmod/DNS.pmod
index f8249657b7..b2f79ce87d 100644
--- a/lib/modules/Protocols.pmod/DNS.pmod
+++ b/lib/modules/Protocols.pmod/DNS.pmod
@@ -269,8 +269,8 @@ class protocol
 //!  @[Protocols.DNS.client.do_sync_query]
 //!
 //! @example
-//! // generate a query PDU for a address lookup on the hostname pike.ida.liu.se
-//! string q=Protocols.DNS.protocol()->mkquery("pike.ida.liu.se", Protocols.DNS.C_IN, Protocols.DNS.T_A);
+//! // generate a query PDU for a address lookup on the hostname pike.lysator.liu.se
+//! string q=Protocols.DNS.protocol()->mkquery("pike.lysator.liu.se", Protocols.DNS.C_IN, Protocols.DNS.T_A);
   string mkquery(string|mapping dnameorquery, int|void cl, int|void type)
   {
     if(mappingp(dnameorquery))
@@ -1054,7 +1054,7 @@ class client
 //!   @code
 //!     // Perform a hostname lookup, results stored in r->an
 //!     object d=Protocols.DNS.client();
-//!     mapping r=d->do_sync_query(d->mkquery("pike.ida.liu.se", C_IN, T_A));
+//!     mapping r=d->do_sync_query(d->mkquery("pike.lysator.liu.se", C_IN, T_A));
 //!   @endcode
   mapping do_sync_query(string s)
   {
diff --git a/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike b/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
index 5249d0491d..7bce992ebc 100644
--- a/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
+++ b/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
@@ -23,7 +23,7 @@
 //! int main()
 //! {
 //!    o->set_callbacks(ok, fail);
-//!    o->async_request("pike.ida.liu.se", 80, "HEAD / HTTP/1.0");
+//!    o->async_request("pike.lysator.liu.se", 80, "HEAD / HTTP/1.0");
 //!    return -1;
 //! }
 
diff --git a/lib/modules/Protocols.pmod/HTTP.pmod/module.pmod b/lib/modules/Protocols.pmod/HTTP.pmod/module.pmod
index a83147aef3..9a38607009 100644
--- a/lib/modules/Protocols.pmod/HTTP.pmod/module.pmod
+++ b/lib/modules/Protocols.pmod/HTTP.pmod/module.pmod
@@ -105,7 +105,7 @@ constant DAV_STORAGE_FULL	= 507; // RFC 2518 10.6: Insufficient Storage
 //!   The HTTP method to use, e.g. @expr{"GET"@}.
 //! @param url
 //!   The URL to perform @[method] on. Should be a complete URL,
-//!   including protocol, e.g. @expr{"https://pike.ida.liu.se/"@}.
+//!   including protocol, e.g. @expr{"https://pike.lysator.liu.se/"@}.
 //! @param query_variables
 //!   Calls @[http_encode_query] and appends the result to the URL.
 //! @param request_headers
@@ -239,7 +239,7 @@ protected .Query do_udp_method(string method, Standards.URI url,
 //!   The HTTP method to use, e.g. @expr{"GET"@}.
 //! @param url
 //!   The URL to perform @[method] on. Should be a complete URL,
-//!   including protocol, e.g. @expr{"https://pike.ida.liu.se/"@}.
+//!   including protocol, e.g. @expr{"https://pike.lysator.liu.se/"@}.
 //! @param query_variables
 //!   Calls @[http_encode_query] and appends the result to the URL.
 //! @param request_headers
diff --git a/lib/modules/Search.pmod/Filter.pmod/Output.pike b/lib/modules/Search.pmod/Filter.pmod/Output.pike
index 64a46e97c6..a8522cfe33 100644
--- a/lib/modules/Search.pmod/Filter.pmod/Output.pike
+++ b/lib/modules/Search.pmod/Filter.pmod/Output.pike
@@ -17,7 +17,7 @@ mapping(string:string) fields=([]);
 int document_size;
 
 //! Maps un-normalized URLs to raw text, e.g.
-//! @expr{ ([ "http://pike.ida.liu.se": "Pike language" ]) @}.
+//! @expr{ ([ "http://pike.lysator.liu.se": "Pike language" ]) @}.
 mapping(string:string) uri_anchors=([]);
 
 //! All links collected from the document.
diff --git a/lib/modules/Web.pmod/Crawler.pmod b/lib/modules/Web.pmod/Crawler.pmod
index d047fa67ee..44ae311118 100644
--- a/lib/modules/Web.pmod/Crawler.pmod
+++ b/lib/modules/Web.pmod/Crawler.pmod
@@ -33,7 +33,7 @@
 //! @enddl
 
 // Author:  Johan Sch�n.
-// $Id: Crawler.pmod,v 1.28 2009/09/14 08:06:39 mast Exp $
+// $Id$
 
 #define CRAWLER_DEBUG
 #ifdef CRAWLER_DEBUG
@@ -228,7 +228,7 @@ class Rule
 //! @param pattern
 //!  a glob pattern that the rule will match against.
 //! @example
-//! GlobRule("http://pike.ida.liu.se/*.xml");
+//! GlobRule("http://pike.lysator.liu.se/*.xml");
 class GlobRule(string pattern)
 {
   inherit Rule;  
diff --git a/lib/modules/Web.pmod/testsuite.in b/lib/modules/Web.pmod/testsuite.in
index fe23267973..ecfc80912d 100644
--- a/lib/modules/Web.pmod/testsuite.in
+++ b/lib/modules/Web.pmod/testsuite.in
@@ -1,5 +1,5 @@
 START_MARKER
-test_true([["$Id: testsuite.in,v 1.10 2004/05/02 18:24:04 nilsson Exp $"]]);
+test_true([["$Id$"]]);
 
 
 // - Web.RDF
@@ -14,7 +14,7 @@ test_any_equal([[
 		    r->URIResource("http://www.example.org/terms/creation-date"),
 		    y );
   r->add_statement( y,
-		    r->URIResource("http://pike.ida.liu.se/terms/ruppar"),
+		    r->URIResource("http://pike.lysator.liu.se/terms/ruppar"),
 		    r->LiteralResource("August 16, 1999") );
   r->add_statement( x,
 		    r->URIResource("http://www.example.org/terms/language"),
@@ -28,7 +28,7 @@ test_any_equal([[
     "RESOURCE <http://www.example.org/terms/language> \"English\" .",
     "RESOURCE <http://www.example.org/terms/creation-date> RESOURCE .",
     "<http://www.example.org/index.html> <http://purl.org/dc/elements/1.1/creator> RESOURCE .",
-    "RESOURCE <http://pike.ida.liu.se/terms/ruppar> \"August 16, 1999\" ."
+    "RESOURCE <http://pike.lysator.liu.se/terms/ruppar> \"August 16, 1999\" ."
 >))
 
 test_do([[ add_constant("my_rdf", Web.RDF()); ]])
diff --git a/refdoc/structure/modref.html b/refdoc/structure/modref.html
index d49667bf23..4ae86a738d 100644
--- a/refdoc/structure/modref.html
+++ b/refdoc/structure/modref.html
@@ -12,8 +12,8 @@
   <tr>
     <td width="0%"><img src="$dotdot$/images/unit.gif" alt="" width="10" height="1"></td>
     <td width="1%">
-      <a href="http://pike.ida.liu.se/"><img src="$dotdot$/images/pike_logo.gif"
-      border="0" alt="pike.ida.liu.se" width="181" height="41" hspace="5"></a></td>
+      <a href="http://pike.lysator.liu.se/"><img src="$dotdot$/images/pike_logo.gif"
+      border="0" alt="pike.lysator.liu.se" width="181" height="41" hspace="5"></a></td>
     <td width="0%"><img src="$dotdot$/images/unit.gif" alt="" width="10" height="1"></td>
     <td width="99%">
       <table align="center" border="0" width="100%" cellspacing="0" cellpadding="0" valign="middle">
@@ -60,4 +60,4 @@
   </tr>
 </table>
 </body>
-</html>
\ No newline at end of file
+</html>
diff --git a/refdoc/structure/module_modref.html b/refdoc/structure/module_modref.html
index 02b0fb535e..0038cabb4d 100644
--- a/refdoc/structure/module_modref.html
+++ b/refdoc/structure/module_modref.html
@@ -12,8 +12,8 @@
   <tr>
     <td width="0%"><img src="$dotdot$/images/unit.gif" alt="" width="10" height="1"></td>
     <td width="1%">
-      <a href="http://pike.ida.liu.se/"><img src="$dotdot$/images/pike_logo.gif"
-      border="0" alt="pike.ida.liu.se" width="181" height="41" hspace="5"></a></td>
+      <a href="http://pike.lysator.liu.se/"><img src="$dotdot$/images/pike_logo.gif"
+      border="0" alt="pike.lysator.liu.se" width="181" height="41" hspace="5"></a></td>
     <td width="0%"><img src="$dotdot$/images/unit.gif" alt="" width="10" height="1"></td>
     <td width="99%">
       <table align="center" border="0" width="100%" cellspacing="0" cellpadding="0" valign="middle">
diff --git a/refdoc/structure/pelix_modref.html b/refdoc/structure/pelix_modref.html
index 844491cdb7..f0a70779de 100644
--- a/refdoc/structure/pelix_modref.html
+++ b/refdoc/structure/pelix_modref.html
@@ -1,7 +1,7 @@
 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
 <html><head>
-  <title>pike.ida.liu.se: $title$</title>
-  <base href="http://pike.ida.liu.se/generated/manual/modref/$filename$" />
+  <title>pike.lysator.liu.se: $title$</title>
+  <base href="http://pike.lysator.liu.se/generated/manual/modref/$filename$" />
 
 <style type="text/css">
 body { font-family: arial, helvetica, sans-serif; font-size: 13px; }
@@ -19,7 +19,7 @@ td         { font-family: arial, helvetica, sans-serif; font-size: 13px; }
 
 <noindex><table border="0" cellpadding="0" cellspacing="0" width="100%">
 <tr><td width="0%"><img width="10" src="/R" height="1" alt=""></td>
-<td width="1%"><a href="/"><img hspace="5" border="0" width="181" src="/templates/img/pike_logo.gif" height="41" alt="pike.ida.liu.se"></a></td>
+<td width="1%"><a href="/"><img hspace="5" border="0" width="181" src="/templates/img/pike_logo.gif" height="41" alt="pike.lysator.liu.se"></a></td>
 <td width="0%"><img width="10" src="/R" height="1" alt=""></td>
 
 <td width="99%">
-- 
GitLab