ICU-4872 Fix broken URLs

X-SVN-Rev: 18677
This commit is contained in:
George Rhoten 2005-10-14 01:09:29 +00:00
parent 7528c2e465
commit 25b0e41aac
8 changed files with 14 additions and 14 deletions

View file

@ -1,7 +1,7 @@
/*
******************************************************************************
*
* Copyright (C) 2000-2004, International Business Machines
* Copyright (C) 2000-2005, International Business Machines
* Corporation and others. All Rights Reserved.
*
******************************************************************************
@ -589,7 +589,7 @@ ucnv_MBCSGetUnicodeSet(const UConverter *cnv,
* Definition of LINEAR macros and gb18030Ranges see near the beginning of the file.
*
* In the future, conversion extensions may handle m:n mappings and delta tables,
* see http://oss.software.ibm.com/cvs/icu/~checkout~/icuhtml/design/conversion/conversion_extensions.html
* see http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icuhtml/design/conversion/conversion_extensions.html
*
* If an input character cannot be mapped, then these functions set an error
* code. The framework will then call the callback function.

View file

@ -1,4 +1,4 @@
# Copyright (C) 2000, International Business Machines Corporation and others.
# Copyright (C) 2000-2005, International Business Machines Corporation and others.
# All Rights Reserved.
# ICU codepage data for GB 18030
@ -36,7 +36,7 @@
# GB 18030 BMP mappings that are not handled algorithmically are
# generated using gbmake4 and gbtoucm tools. Please see charset/source/gb18030/gb18030.html
# or http://oss.software.ibm.com/cvs/icu/~checkout~/charset/source/gb18030/gb18030.html
# or http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/charset/source/gb18030/gb18030.html
# for more information.
CHARMAP

View file

@ -13,7 +13,7 @@
# letters are not yet encoded.
#
# To test, open:
# http://oss.software.ibm.com/cgi-bin/icu/tr
# http://www.ibm.com/software/globalization/icu/demo/transform
# Click Edit, paste in this file, Save As hebrew-latin/XXX
# (where XXX is a username)
# Now go back to the main window, and try it out.

View file

@ -1,4 +1,4 @@
## Copyright (c) 2002-2003, International Business Machines Corporation
## Copyright (c) 2002-2005, International Business Machines Corporation
## and others. All Rights Reserved.
This directory contains sample code
@ -52,7 +52,7 @@ ustring - demonstrates ICU string manipulation functions
- The "icuapps" CVS module contains other applications and libraries not
included with ICU. You can check it out from the CVS command line
by using for example, "cvs co icuapps" instead of "cvs co icu",
or through WebCVS at http://oss.software.ibm.com/cvs/icu/icuapps/
or through WebCVS at http://dev.icu-project.org/cgi-bin/viewcvs.cgi/icuapps/
==
* How do I build the samples?

View file

@ -1,7 +1,7 @@
/*
******************************************************************************
*
* Copyright (C) 2002-2003, International Business Machines
* Copyright (C) 2002-2005, International Business Machines
* Corporation and others. All Rights Reserved.
*
******************************************************************************
@ -15,7 +15,7 @@
*
* This is the reference implementation of BOCU-1,
* the MIME-friendly form of the Binary Ordered Compression for Unicode,
* taken directly from ### http://oss.software.ibm.com/cvs/icu/icuhtml/design/conversion/bocu1/
* taken directly from ### http://dev.icu-project.org/cgi-bin/viewcvs.cgi/icuhtml/design/conversion/bocu1/
* The files bocu1.h and bocu1.c from the design folder are taken
* verbatim (minus copyright and #include) and copied together into this file.
* The reference code and some of the reference bocu1tst.c

View file

@ -1287,7 +1287,7 @@ void MultithreadTest::TestCollators()
"INFO: Working with the stub file.\n"
"If you need the full conformance test, please\n"
"download the appropriate data files from:\n"
"http://oss.software.ibm.com/cvs/icu4j/unicodetools/com/ibm/text/data/");
"http://dev.icu-project.org/cgi-bin/viewcvs.cgi/unicodetools/com/ibm/text/data/");
}
}
}

View file

@ -146,7 +146,7 @@ void UCAConformanceTest::openTestFile(const char *type)
"INFO: Working with the stub file.\n"
"If you need the full conformance test, please\n"
"download the appropriate data files from:\n"
"http://oss.software.ibm.com/cvs/icu4j/unicodetools/com/ibm/text/data/");
"http://dev.icu-project.org/cgi-bin/viewcvs.cgi/unicodetools/com/ibm/text/data/");
}
}
}

View file

@ -1,6 +1,6 @@
/********************************************************************
* COPYRIGHT:
* Copyright (C) 2001-2003 IBM, Inc. All Rights Reserved.
* Copyright (C) 2001-2005 IBM, Inc. All Rights Reserved.
*
********************************************************************/
/********************************************************************************
@ -1362,7 +1362,7 @@ void outputHTMLHeader(const char *locale, UScriptCode script[],
}
fprintf(OUTPUT_, "</td></tr>\n");
fprintf(OUTPUT_, "<tr><th>Rules</th><td class='noborder'><a href=http://oss.software.ibm.com/cvs/icu/~checkout~/icu/source/data/locales/%s.txt>%s.txt</a></td></tr>\n", locale, locale);
fprintf(OUTPUT_, "<tr><th>Rules</th><td class='noborder'><a href=\"http://dev.icu-project.org/cgi-bin/viewcvs.cgi/*checkout*/icu/source/data/coll/%s.txt\">%s.txt</a></td></tr>\n", locale, locale);
UVersionInfo version;
ucol_getVersion(COLLATOR_, version);
@ -1441,7 +1441,7 @@ void outputListHTMLHeader(FILE *file)
void outputListHTMLFooter(FILE *file)
{
fprintf(file, "</p>\n");
fprintf(file, "<center><image src=http://oss.software.ibm.com/icu/images/w24.gif></center>\n");
//fprintf(file, "<center><image src=http://oss.software.ibm.com/icu/images/w24.gif></center>\n");
fprintf(file, "</body>\n");
fprintf(file, "</html>\n");
}