diff --git a/README.md b/README.md index 515bd88b98a..af7cb633f8a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # International Components for Unicode -This is the repository for the [International Components for Unicode](http://site.icu-project.org). +This is the repository for the [International Components for Unicode](https://icu.unicode.org/). The ICU project is under the stewardship of [The Unicode Consortium](https://www.unicode.org). - Source: https://github.com/unicode-org/icu diff --git a/docs/index.md b/docs/index.md index e66c895055e..a63052e3c55 100644 --- a/docs/index.md +++ b/docs/index.md @@ -12,7 +12,7 @@ License & terms of use: http://www.unicode.org/copyright.html # ICU Documentation -[![ICU logo](https://github.com/unicode-org/icu-docs/raw/main/img/iculogo_64.png)](http://site.icu-project.org/) +[![ICU logo](https://github.com/unicode-org/icu-docs/raw/main/img/iculogo_64.png)](https://icu.unicode.org/) ## ICU User Guide diff --git a/docs/processes/release/tasks/docs.md b/docs/processes/release/tasks/docs.md index ad18bba834a..697a17b8c86 100644 --- a/docs/processes/release/tasks/docs.md +++ b/docs/processes/release/tasks/docs.md @@ -67,7 +67,7 @@ License & terms of use: http://www.unicode.org/copyright.html Update the API documentation to have correct @draft/@stable/@deprecated labels. See the [User Guide, ICU Architectural Design, ICU API -compatibility](http://userguide.icu-project.org/design#TOC-ICU-API-compatibility). +compatibility](https://unicode-org.github.io/icu/userguide/icu/design#icu-api-compatibility). On ICU4J, run [com.ibm.icu.dev.tool.docs.CheckTags](https://github.com/unicode-org/icu/blob/main/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/CheckTags.java) @@ -247,7 +247,7 @@ Same for `@obsolete` & #ifndef U_HIDE_OBSOLETE_API .. For more details (and cautions) see the Coding Guidelines section [C/C++ Hiding Un-@stable -APIs](http://userguide.icu-project.org/dev/codingguidelines#TOC-C-C-Hiding-Un--stable-APIs). +APIs](https://unicode-org.github.io/icu/userguide/dev/codingguidelines#cc-hiding-un-stable-apis). ### Task @@ -363,7 +363,7 @@ Note: This is also referenced below '[Upload API documentations](docs.md)' for h ### ICU4J **Note:** JCite must be installed for building ICU4J documentation: - + Build the API documentation pages for the new release: @@ -374,7 +374,7 @@ ant releaseDocs #### Alternative method: **Note:** JCite must be installed for building ICU4J documentation: - + Use the release target diff --git a/docs/processes/release/tasks/healthy-code.md b/docs/processes/release/tasks/healthy-code.md index 104b697bd54..68fcfd446b8 100644 --- a/docs/processes/release/tasks/healthy-code.md +++ b/docs/processes/release/tasks/healthy-code.md @@ -185,19 +185,14 @@ about adding those. For example, we must not call printf() from library code, nor the global operator new. The test might complain that some .o file "imports -icu_48::UnicodeString::UnicodeString(const char \*) but does not depend on -unistr_cnv.o". This probably means that someone passes a simple "string literal" -or a char\* into a function that takes a UnicodeString, which invokes the +`icu_48::UnicodeString::UnicodeString(const char *)` but does not depend on +unistr_cnv.o". This probably means that someone passes a simple `"string literal"` +or a `char *` into a function that takes a UnicodeString, which invokes the default-conversion constructor. We do not want that! In most cases, such code -should be fixed, like in [changeset -30186](http://bugs.icu-project.org/trac/changeset/30186). Only implementations +should be fixed. Only implementations of API that require conversion should depend on it; for example, group formattable_cnv depends on group unistr_cnv, but then nothing inside ICU depends on that. - --- @@ -410,9 +405,8 @@ build fine; layout should build too but toolutil will fail, that's expected. Fix any stubdata/common/i18n issues, revert the UCONFIG_NO_CONVERSION value, and verify that it still works with the normal setting. -If this breaks, someone probably inadvertently uses the UnicodeString(const char -\*) constructor. See the "Check library dependencies" section and example fixes -in [changeset 30186](http://bugs.icu-project.org/trac/changeset/30186). +If this breaks, someone probably inadvertently uses the `UnicodeString(const char *)` constructor. +See the "Check library dependencies" section. --- diff --git a/docs/processes/release/tasks/miscellaneous.md b/docs/processes/release/tasks/miscellaneous.md index 167834ccc8f..0b0073171ed 100644 --- a/docs/processes/release/tasks/miscellaneous.md +++ b/docs/processes/release/tasks/miscellaneous.md @@ -46,10 +46,9 @@ and use it for future testing. ## Release ticket After every milestone (GA / RC / Milestone-N) is completed, create a new release -ticket in ICU Jira, then add the ticket link to the next -[milestone](http://bugs.icu-project.org/trac/roadmap). The release ticket is -used for BRS tasks, such as version update, tagging new version, merging post RC -fixes from trunk and others. +ticket in ICU Jira. +The release ticket is used for BRS tasks, such as version update, tagging new version, +merging post RC fixes from trunk and others. --- diff --git a/docs/processes/release/tasks/publish/index.md b/docs/processes/release/tasks/publish/index.md index 82395bd7979..0c7aa50d43a 100644 --- a/docs/processes/release/tasks/publish/index.md +++ b/docs/processes/release/tasks/publish/index.md @@ -442,7 +442,7 @@ the new ICU version. Update online demos/tools to the latest version: -* ICU demos (eg ) +* ICU demos (eg ) * CLDR Survey tool (eg ) * Unicode Utilities (eg ) diff --git a/docs/processes/release/tasks/versions.md b/docs/processes/release/tasks/versions.md index 7d9d01272f9..9e8c21f8b4c 100644 --- a/docs/processes/release/tasks/versions.md +++ b/docs/processes/release/tasks/versions.md @@ -26,7 +26,7 @@ License & terms of use: http://www.unicode.org/copyright.html For reference, see the section in the User Guide about Version numbers here: - + ### ICU Version Number for Front load, RC and GA tasks @@ -306,7 +306,7 @@ file here: ## Data File *Format* Versions Make sure data file **format** versions are updated. See - + For Unicode data files, it is also useful to look at recent tools-tree changes: [icu/commits/main/tools/unicode](https://github.com/unicode-org/icu/commits/main/tools/unicode) diff --git a/docs/processes/unicode-update.md b/docs/processes/unicode-update.md index 402da2e3a46..5b3896bd472 100644 --- a/docs/processes/unicode-update.md +++ b/docs/processes/unicode-update.md @@ -57,7 +57,7 @@ various Unicode Tools, as noted in the change log. Note: We have looked at using the [UCD XML](https://www.unicode.org/ucd/#UCDinXML) files, but decided against it and instead developed a simpler format for a combined Unicode data file. -See http://site.icu-project.org/design/props/ppucd#TOC-Why-not-UCD-XML-files- +See https://icu.unicode.org/design/props/ppucd#TOC-Why-not-UCD-XML-files- (There was an outdated, experimental, partial UCD XML parser here: ) diff --git a/docs/userguide/collation/api.md b/docs/userguide/collation/api.md index 4ad67e6b597..c92dcf447bd 100644 --- a/docs/userguide/collation/api.md +++ b/docs/userguide/collation/api.md @@ -51,7 +51,7 @@ For some languages, multiple collation types are available; for example, "de-u-co-phonebk" / "de@collation=phonebook". They can be enumerated via `Collator::getKeywordValuesForLocale()`. See also the list of available collation tailorings in the online [ICU Collation -Demo](http://demo.icu-project.org/icu-bin/collation.html). +Demo](https://icu4c-demos.unicode.org/icu-bin/collation.html). Starting with ICU 54, collation attributes can be specified via locale keywords as well, in the old locale extension syntax ("el@colCaseFirst=upper") or in @@ -345,7 +345,7 @@ for short strings. The byte values used in several ICU versions for sort keys and collation elements are documented in the [“Special Byte Values” design -doc](http://site.icu-project.org/design/collation/bytes) on the ICU site. +doc](https://icu.unicode.org/design/collation/bytes) on the ICU site. ### Sort Key Output Buffer @@ -695,7 +695,7 @@ API is provided. Each attribute has its own setter API of the form 1. Ken Whistler, Markus Scherer: "Unicode Technical Standard #10, Unicode Collation Algorithm" () -2. ICU Design doc: "Collation v2" () +2. ICU Design doc: "Collation v2" () 3. Mark Davis: "ICU Collation Design Document" () diff --git a/docs/userguide/collation/concepts.md b/docs/userguide/collation/concepts.md index ac1574ec041..d491dd715be 100644 --- a/docs/userguide/collation/concepts.md +++ b/docs/userguide/collation/concepts.md @@ -611,7 +611,7 @@ otherwise stated, the examples use the UCA alone with default settings. ### Main References 1. For a full list of supported locales in ICU, see [Locale - Explorer](http://demo.icu-project.org/icu-bin/locexp) , which also contains + Explorer](https://icu4c-demos.unicode.org/icu-bin/locexp) , which also contains an on-line demo showing sorting for each locale. The demo allows you to try different attribute values, to see how they affect sorting. diff --git a/docs/userguide/collation/customization/index.md b/docs/userguide/collation/customization/index.md index d31c4c1e716..afc3ef05b08 100644 --- a/docs/userguide/collation/customization/index.md +++ b/docs/userguide/collation/customization/index.md @@ -1005,7 +1005,7 @@ the `--omitCollationRules` option to the relevant `genrb` invocations (for ICU 53..63, in icu4c/source/data/Makefile.in) or, since ICU 64, with a [data filter config file](../../icu_data/buildtool.md). (See for example the relevant -[ICU integration test instructions](http://site.icu-project.org/processes/release/tasks/integration#TOC-Verify-that-ICU4C-tests-pass-without-collation-rule-strings).) +[ICU integration test instructions](https://icu.unicode.org/processes/release/tasks/integration#TOC-Verify-that-ICU4C-tests-pass-without-collation-rule-strings).) If the tailoring rules are needed but the 150kB or so of "UCA rules" are not, then the line diff --git a/docs/userguide/conversion/data.md b/docs/userguide/conversion/data.md index 61eb1181f82..2666a6be956 100644 --- a/docs/userguide/conversion/data.md +++ b/docs/userguide/conversion/data.md @@ -116,7 +116,7 @@ stateful encodings: The following sections in this chapter discuss the mapping data tables that are used in ICU. For related material, please see: -1. [ICU character set collection](http://icu-project.org/charts/charset/) +1. [ICU character set collection](https://icu.unicode.org/charts/charset) 2. [Unicode Technical Report 22](http://www.unicode.org/reports/tr22/) diff --git a/docs/userguide/conversion/index.md b/docs/userguide/conversion/index.md index ceb60207896..cadd6dd41f4 100644 --- a/docs/userguide/conversion/index.md +++ b/docs/userguide/conversion/index.md @@ -122,7 +122,7 @@ Unicode. 3. ICU's conversion table repository contains hundreds of Unicode conversion tables from a number of common vendors and platforms as well as comparisons between these conversion tables: - . + . 4. Do not trust codepage documentation that is not machine-readable, for example nice-looking charts: They are usually incomplete and out of diff --git a/docs/userguide/datetime/timezone/index.md b/docs/userguide/datetime/timezone/index.md index c48ee69479f..4662457db4f 100644 --- a/docs/userguide/datetime/timezone/index.md +++ b/docs/userguide/datetime/timezone/index.md @@ -246,7 +246,7 @@ sources for general information on building ICU. ### Update the time zone data for ICU4J The [ICU4J Time Zone Update Update -Utility](http://site.icu-project.org/download/icutzu) automates the process of +Utility](https://icu.unicode.org/download/icutzu) automates the process of updating ICU4J jar files with the latest time zone data. Instructions for use are [here](https://htmlpreview.github.io/?https://github.com/unicode-org/icu-data/blob/main/tzdata/tzu/readme.html). diff --git a/docs/userguide/dev/contributions.md b/docs/userguide/dev/contributions.md index 27c43cbed2d..d433948377c 100644 --- a/docs/userguide/dev/contributions.md +++ b/docs/userguide/dev/contributions.md @@ -32,7 +32,7 @@ upgrade to a new ICU release. ## Current Process -See . +See . ## Historical diff --git a/docs/userguide/icu/design.md b/docs/userguide/icu/design.md index b38c8f0bccf..092ee9a16c3 100644 --- a/docs/userguide/icu/design.md +++ b/docs/userguide/icu/design.md @@ -607,7 +607,7 @@ Starting with ICU 49, the dependencies of code files (.o files compiled from .c/.cpp) are documented in [source/test/depstest/dependencies.txt](https://github.com/unicode-org/icu/blob/main/icu4c/source/test/depstest/dependencies.txt). Adjacent Python code is used to parse this file and to -[verify](http://site.icu-project.org/processes/release/tasks/healthy-code#TOC-Check-library-dependencies) +[verify](https://icu.unicode.org/processes/release/tasks/healthy-code#TOC-Check-library-dependencies) that it matches the actual dependencies of the code files. The dependency list can be used to build subset libraries. In addition, by @@ -677,7 +677,7 @@ list members a chance to review upcoming changes, and to discuss them. A proposal often changes significantly as a result of discussion. Most proposals will eventually find consensus among list members; otherwise, the ICU-TC decides what to do. If the addition or change of APIs would affect you, please subscribe -to the main [icu-design mailing list](http://icu-project.org/contacts.html). +to the main [icu-design mailing list](https://icu.unicode.org/contacts). When a **new API** is added to ICU, it **is marked as draft with a `@draft ICU x.y` label in the API documentation, **where x.y is the ICU version when the diff --git a/docs/userguide/icu/howtouseicu.md b/docs/userguide/icu/howtouseicu.md index 271e75cbde1..3d4111d1619 100644 --- a/docs/userguide/icu/howtouseicu.md +++ b/docs/userguide/icu/howtouseicu.md @@ -135,7 +135,7 @@ own system. Here are a couple of starting points: set of such macros. If you build one single DLL (shared library) for all of ICU, also use -DU_COMBINED_IMPLEMENTATION. If you build ICU as statically-linked libraries, use -DU_STATIC_IMPLEMENTATION. -* Use the [icu-support mailing list](http://site.icu-project.org/contacts). +* Use the [icu-support mailing list](https://icu.unicode.org/contacts). Ask for help and guidance on your strategy. * Up until ICU 4.8, there are one or two header files (platform.h, icucfg.h) that are generated by autoconf/configure and thus differ by platform, @@ -220,5 +220,5 @@ Any additional arguments will be passed to the program. * `icurun test1.cpp *args...*` -*Please give feedback to the [icu-support mailing list](http://site.icu-project.org/contacts), +*Please give feedback to the [icu-support mailing list](https://icu.unicode.org/contacts), and refer to [Ticket #8481](https://unicode-org.atlassian.net/browse/ICU-8481).* diff --git a/docs/userguide/icu/index.md b/docs/userguide/icu/index.md index 876c9de18ae..6b08d99bf90 100644 --- a/docs/userguide/icu/index.md +++ b/docs/userguide/icu/index.md @@ -93,7 +93,7 @@ open components, and look forward to your questions, comments and suggestions. Download ICU in one of the following ways: -1. From the download page, , for +1. From the download page, , for packaged stable releases of ICU. 2. From the source code repository, , diff --git a/docs/userguide/icu/release.md b/docs/userguide/icu/release.md index 6d15fca35c7..49693754722 100644 --- a/docs/userguide/icu/release.md +++ b/docs/userguide/icu/release.md @@ -22,12 +22,12 @@ License & terms of use: http://www.unicode.org/copyright.html ## What Is New In The Current Release? -See the [ICU download page](http://site.icu-project.org/download/) to find the subpage for the current release. +See the [ICU download page](https://icu.unicode.org/download/) to find the subpage for the current release. The subpage for the current release will contain information on changes since the last release, bug fixes, known issues, changes to supported platforms and build environments, and migration issues for existing applications migrating from previous ICU releases. The page will also include an API Change Report, both for ICU4C and ICU4J, for a complete list of APIs added, removed, or changed in this release. -Changes in previous releases can also be found the main [ICU download page](http://site.icu-project.org/download) in its version-specific subpages. +Changes in previous releases can also be found the main [ICU download page](https://icu.unicode.org/download) in its version-specific subpages. ## License Information -The ICU projects (ICU4C and ICU4J) are hosted by the [Unicode Consortium](http://www.unicode.org/). The ICU binary and source files are distributed under the [UNICODE DATA FILES AND SOFTWARE LICENSE](http://www.unicode.org/copyright.html). The full copy of the license and third party software licenses are available in [LICENSE](https://github.com/unicode-org/icu/blob/main/icu4j/main/shared/licenses/LICENSE) file included in this package. \ No newline at end of file +The ICU projects (ICU4C and ICU4J) are hosted by the [Unicode Consortium](http://www.unicode.org/). The ICU binary and source files are distributed under the [UNICODE DATA FILES AND SOFTWARE LICENSE](http://www.unicode.org/copyright.html). The full copy of the license and third party software licenses are available in [LICENSE](https://github.com/unicode-org/icu/blob/main/icu4j/main/shared/licenses/LICENSE) file included in this package. diff --git a/docs/userguide/icu/unicode.md b/docs/userguide/icu/unicode.md index c3d87a3239e..29e136d62ea 100644 --- a/docs/userguide/icu/unicode.md +++ b/docs/userguide/icu/unicode.md @@ -38,7 +38,7 @@ in particular. For further information, see: 3. [IBM® Globalization](http://www.ibm.com/software/globalization/) -Go to the [online ICU demos](http://demo.icu-project.org/icu-bin/icudemos) to +Go to the [online ICU demos](https://icu4c-demos.unicode.org/icu-bin/icudemos) to see how a Unicode-based server application can handle text in many languages and many encodings. diff --git a/docs/userguide/icu4c/build.md b/docs/userguide/icu4c/build.md index 8e4c76b856a..ddf4b2b41e7 100644 --- a/docs/userguide/icu4c/build.md +++ b/docs/userguide/icu4c/build.md @@ -64,7 +64,7 @@ Depending on the platform and the type of installation, we recommend a small num ``` ICU call sites then either qualify ICU types explicitly, for example `icu::UnicodeString`, or do `using icu::UnicodeString;` where appropriate. -* **Hardcode the default charset to UTF-8:** On platforms where the default charset is always UTF-8, like MacOS X and some Linux distributions, we recommend hardcoding ICU's default charset to UTF-8. This means that some implementation code becomes simpler and faster, and statically linked ICU libraries become smaller. (See the [U_CHARSET_IS_UTF8](http://icu-project.org/apiref/icu4c/platform_8h.html#a0a33e1edf3cd23d9e9c972b63c9f7943) API documentation for more details.) +* **Hardcode the default charset to UTF-8:** On platforms where the default charset is always UTF-8, like MacOS X and some Linux distributions, we recommend hardcoding ICU's default charset to UTF-8. This means that some implementation code becomes simpler and faster, and statically linked ICU libraries become smaller. (See the [U_CHARSET_IS_UTF8](https://unicode-org.github.io/icu-docs/apidoc/dev/icu4c/platform_8h.html#a0a33e1edf3cd23d9e9c972b63c9f7943) API documentation for more details.) You can `-DU_CHARSET_IS_UTF8=1` or modify `unicode/utypes.h` (in ICU 4.8 and below) or modify unicode/platform.h (in ICU 49 and higher): ``` diff --git a/docs/userguide/icu4c/faq.md b/docs/userguide/icu4c/faq.md index bca230034de..b6b7a7eb3a3 100644 --- a/docs/userguide/icu4c/faq.md +++ b/docs/userguide/icu4c/faq.md @@ -30,7 +30,7 @@ formatting, text boundary detection, character set conversion and so on. #### Where can I get ICU? -You can get ICU4C and ICU4J from +You can get ICU4C and ICU4J from **Why don't you build binaries for my platform?** @@ -71,18 +71,18 @@ MSVC compiler. See the [Building ICU4C](./icu4c/build) page. We can try ... make sure you read the [Building ICU4C](./icu4c/build) section and also the [ICU Data](../icudata.md) section. You might also [searching the icu-support -archives](http://site.icu-project.org/contacts), and then posting a question +archives](https://icu.unicode.org/contacts), and then posting a question there. Additionally, sites such as [StackOverflow](http://stackoverflow.com/search?q=icu) may have helpful tips for your topic. * **Android NDK** * Please try [searching the icu-support - archives](http://site.icu-project.org/contacts) and also see + archives](https://icu.unicode.org/contacts) and also see [StackOverflow](http://stackoverflow.com/search?q=icu+android). * **iPhone** * Please try [searching the icu-support - archives](http://site.icu-project.org/contacts) and also see + archives](https://icu.unicode.org/contacts) and also see [StackOverflow](http://stackoverflow.com/search?q=icu+iphone). #### What is the ICU binary compatibility policy? @@ -110,7 +110,7 @@ longer exists, but can still be retrieved through internet archive services.) #### Can I use ICU from other languages besides C/C++ and Java? There are a number of wrappers available, please see the -[Related Projects](http://site.icu-project.org/related) page. +[Related Projects](https://icu.unicode.org/related) page. #### How do I upgrade to a new version of ICU? Should I be concerned about API changes, a new Unicode version or a new CLDR version)? @@ -179,7 +179,7 @@ is recommended that you report the optimization bug to the compiler manufacturer. If neither of these fix your problem, please send an e-mail to the [ICU4C -Support List](http://icu-project.org/contacts.html) . +Support List](https://icu.unicode.org/contacts) . #### How can I reduce the size of the ICU data library? @@ -205,7 +205,7 @@ Studio. Yes. Please see [Customizing ICU's Data Library](../icudata#customizing-icus-data-library) in the [ICU Data Management](../icudata.md) of this User's Guide. You can also -get extra converters from or use +get extra converters from or use the [ICU Data Customizer](https://unicode-org.atlassian.net/browse/ICU-12835) tool. @@ -215,7 +215,7 @@ You need GNU's make program version 3.8 or later, and you need to run the runConfigureICU script, which is located in the `icu/source directory`. You may be using a platform that ICU does not support. If the first two answers do not apply to you, then you should send an e-mail to the -[ICU4C Support List](http://www.icu-project.org/contacts.html). +[ICU4C Support List](https://icu.unicode.org/contacts). Here are some places you can find gmake: @@ -276,7 +276,7 @@ section in the [ICU Design](../design.md) chapter. ICU versions 65 supports Unicode version 12. The Unicode versions for older versions of ICU are listed on the ICU download -page, +page, #### Does ICU support UTF-16 surrogates and Unicode supplementary characters? @@ -467,4 +467,4 @@ refer to the [COBOL section](../usefrom/cobol.md) of this User's Guide. #### Where can I get more information about using ICU? Please send an e-mail to the [ICU4C Support -List](http://www.icu-project.org/contacts.html) . +List](https://icu.unicode.org/contacts) . diff --git a/docs/userguide/icu4c/index.md b/docs/userguide/icu4c/index.md index d89a02cc489..15f73a93c63 100644 --- a/docs/userguide/icu4c/index.md +++ b/docs/userguide/icu4c/index.md @@ -46,39 +46,39 @@ The ICU homepage also links to related information about writing internationaliz **Here are some useful links regarding ICU and internationalization in general.** -| ICU, ICU4C & ICU4J Homepage | | +| ICU, ICU4C & ICU4J Homepage | | | ICU FAQ - Frequently Asked Questions about ICU | | | ICU4J FAQ - Frequently Asked Questions about ICU4J | | | ICU User's Guide | | | How To Use ICU | | -| Download ICU Releases | | -| ICU4C API Documentation Online | | -| Online ICU Demos | | -| Contacts and Bug Reports/Feature Requests | | +| Download ICU Releases | | +| ICU4C API Documentation Online | | +| Online ICU Demos | | +| Contacts and Bug Reports/Feature Requests | | **Important:** Please make sure you understand the [Copyright and License Information](https://github.com/unicode-org/icu/blob/main/icu4c/LICENSE). ## What Is New In The Current Release? -See the [ICU download page](http://site.icu-project.org/download/) to find the subpage for the current release, including any other changes, bug fixes, known issues, changes to supported platforms and build environments, and migration issues for existing applications migrating from previous ICU releases. +See the [ICU download page](https://icu.unicode.org/download/) to find the subpage for the current release, including any other changes, bug fixes, known issues, changes to supported platforms and build environments, and migration issues for existing applications migrating from previous ICU releases. The subpage for the current release will also include an API Change Report, both for ICU4C and ICU4J, for a complete list of APIs added, removed, or changed in this release. The list of API changes since the previous ICU4C release is available [here](https://htmlpreview.github.io/?https://raw.githubusercontent.com/unicode-org/icu/main/icu4c/APIChangeReport.html). -Changes in previous releases can also be found on the main [ICU download page](http://site.icu-project.org/download) in its version-specific subpages. +Changes in previous releases can also be found on the main [ICU download page](https://icu.unicode.org/download) in its version-specific subpages. ## How To Download the Source Code There are two ways to download ICU releases: * **Official Release Snapshot:** - If you want to use ICU (as opposed to developing it), you should download an official packaged version of the ICU source code. These versions are tested more thoroughly than day-to-day development builds of the system, and they are packaged in zip and tar files for convenient download. These packaged files can be found at [http://site.icu-project.org/download](http://site.icu-project.org/download). + If you want to use ICU (as opposed to developing it), you should download an official packaged version of the ICU source code. These versions are tested more thoroughly than day-to-day development builds of the system, and they are packaged in zip and tar files for convenient download. These packaged files can be found at [https://icu.unicode.org/download](https://icu.unicode.org/download). The packaged snapshots are named `icu-nnnn.zip` or `icu-nnnn.tgz`, where `nnnn` is the version number. The .zip file is used for Windows platforms, while the .tgz file is preferred on most other platforms. Please unzip this file. > :point_right: **Note**: There may be additional commits on the `maint-*` branch for a particular version that are not included in the prepackaged download files. * **GitHub Source Repository:** - If you are interested in developing features, patches, or bug fixes for ICU, you should probably be working with the latest version of the ICU source code. You will need to clone and checkout the code from our GitHub repository to ensure that you have the most recent version of all of the files. See our [source repository](http://site.icu-project.org/repository) for details. + If you are interested in developing features, patches, or bug fixes for ICU, you should probably be working with the latest version of the ICU source code. You will need to clone and checkout the code from our GitHub repository to ensure that you have the most recent version of all of the files. See our [source repository](https://icu.unicode.org/repository) for details. ## ICU Source Code Organization @@ -142,7 +142,7 @@ In the descriptions below, `` is the full path name of the ICU4C directory

If some of the following directories are missing, it's probably because you got an official download. If you need the data source files for customization, then please download the complete ICU source code from the ICU repository.

+ href="https://icu.unicode.org/repository">the ICU repository.

  • in/ A directory that contains a pre-built data library for @@ -399,7 +399,7 @@ If you are building on a UNIX platform, and if you are installing ICU in a non-s ### Porting To A New Platform -If you are using ICU's Makefiles to build ICU on a new platform, there are a few places where you will need to add or modify some files. If you need more help, you can always ask the [icu-support mailing list](http://site.icu-project.org/contacts). Once you have finished porting ICU to a new platform, it is recommended that you contribute your changes back to ICU via the icu-support mailing list. This will make it easier for everyone to benefit from your work. +If you are using ICU's Makefiles to build ICU on a new platform, there are a few places where you will need to add or modify some files. If you need more help, you can always ask the [icu-support mailing list](https://icu.unicode.org/contacts). Once you have finished porting ICU to a new platform, it is recommended that you contribute your changes back to ICU via the icu-support mailing list. This will make it easier for everyone to benefit from your work. #### Data For a New Platform diff --git a/docs/userguide/icu4j/faq.md b/docs/userguide/icu4j/faq.md index 88811a68b8b..6743b8630ce 100644 --- a/docs/userguide/icu4j/faq.md +++ b/docs/userguide/icu4j/faq.md @@ -36,8 +36,8 @@ framework, therefore, it requires JRE 6 or later. #### Comparison between ICU and JDK: What's the difference? -This is one of our most popular question. Please refer to [our comparison -chart](http://icu-project.org/charts/comparison/). +This is one of our most popular questions. Please refer to [our comparison +chart](https://icu.unicode.org/charts/comparison). #### How can I get the version information of ICU4J library on my system? @@ -92,7 +92,7 @@ using ICU4J 60 and considering to upgrade to ICU4J 64. In this case, you can generate a change report page by following steps. 1. Download [ICU4J 64 source package - archive](http://site.icu-project.org/download/64#TOC-ICU4J-Download) + archive](https://icu.unicode.org/download/64#TOC-ICU4J-Download) from the ICU 64 download page and extract files to your local system. 2. Set up ICU4J build environment as explained in the [ICU4C Readme](./index). @@ -130,7 +130,7 @@ during various periods in history, but according to our sources they are not in common use today. If you see a real need for a Japanese lunar calendar, and especially if you know of any good references on how it differs from the Chinese calendar, please let us know by posting a note on the [mailing -list](http://icu-project.org/contacts.html). +list](https://icu.unicode.org/contacts). #### Do you *really* support the true lunar Islamic calendar? @@ -171,7 +171,7 @@ documentation](https://unicode-org.github.io/icu-docs/apidoc/released/icu4j/com/ #### How can I get the latest time zone rule data patch? You can use [ICU4J Time Zone Update -Utility](http://site.icu-project.org/download/icutzu) to update the time zone +Utility](https://icu.unicode.org/download/icutzu) to update the time zone rule data to the latest. #### I do not want to maintain yet another time zone rule data. Are there any way to configure ICU4J to use the JRE's time zone data? diff --git a/docs/userguide/icu4j/index.md b/docs/userguide/icu4j/index.md index 530a3169e5a..d38309c17e7 100644 --- a/docs/userguide/icu4j/index.md +++ b/docs/userguide/icu4j/index.md @@ -65,7 +65,7 @@ There are a few different ways to download the ICU4J releases. * **Official Release:** If you want to use ICU4J (as opposed to developing it), your best bet is to download an official, packaged version of the ICU4J library files. These versions are tested more thoroughly than day-to-day development builds, and they are packaged in jar files for convenient download. - * [ICU Download page](http://www.icu-project.org/download/) + * [ICU Download page](https://icu.unicode.org/download) * Maven repository: ~~~ @@ -89,9 +89,9 @@ There are a few different ways to download the ICU4J releases. ~~~ * **GitHub Source Repository:** - If you are interested in developing features, patches, or bug fixes for ICU4J, you should probably be working with the latest version of the ICU4J source code. You will need to clone and checkout the code from our GitHub repository to ensure that you have the most recent version of all of the files. There are several ways to do this. Please follow the directions that are contained on the [Source Repository page](http://www.icu-project.org/repository/) for details. + If you are interested in developing features, patches, or bug fixes for ICU4J, you should probably be working with the latest version of the ICU4J source code. You will need to clone and checkout the code from our GitHub repository to ensure that you have the most recent version of all of the files. There are several ways to do this. Please follow the directions that are contained on the [Source Repository page](https://icu.unicode.org/repository) for details. -For more details on how to download ICU4J directly from the web site, please see the ICU download page at [http://www.icu-project.org/download/](http://www.icu-project.org/download/) +For more details on how to download ICU4J directly from the web site, please see the ICU download page at [https://icu.unicode.org/download](https://icu.unicode.org/download) ## The Structure and Contents of ICU4J @@ -322,7 +322,7 @@ For more information, read the Ant documentation and the **build.xml** file. > :point_right: **Note**: If you get an OutOfMemoryError when you are running "ant check", you can set the heap size of the jvm by setting the environment variable JVM_OPTIONS to the appropriate java options. -> :point_right: **Note**: **Eclipse users:** See the ICU4J site for information on [how to configure Eclipse](http://site.icu-project.org/setup/eclipse) to build and develop ICU4J on Eclipse IDE. +> :point_right: **Note**: **Eclipse users:** See the ICU4J site for information on [how to configure Eclipse](https://icu.unicode.org/setup/eclipse) to build and develop ICU4J on Eclipse IDE. > :point_right: **Note**: To install and configure ICU4J Locale Service Provider, please refer the user guide page [ICU4J Locale Service Provider](./locale-service-provider). @@ -423,15 +423,15 @@ You can optionally configure ICU4J date and time service classes to use underlyi ## Where to Find More Information -[http://www.icu-project.org/](http://www.icu-project.org/) is the home page of International Components for Unicode development project +[https://icu.unicode.org/](https://icu.unicode.org/) is the home page of International Components for Unicode development project ## Submitting Comments, Requesting Features and Reporting Bugs Your comments are important to making ICU4J successful. We are committed to investigate any bug reports or suggestions, and will use your feedback to help plan future releases. -To submit comments, request features and report bugs, please see [ICU bug database information](http://site.icu-project.org/bugs) or contact us through the [ICU Support mailing list](http://site.icu-project.org/contacts). While we are not able to respond individually to each comment, we do review all comments. +To submit comments, request features and report bugs, please see [ICU bug database information](https://icu.unicode.org/bugs) or contact us through the [ICU Support mailing list](https://icu.unicode.org/contacts). While we are not able to respond individually to each comment, we do review all comments. * * * © 2016 and later: Unicode, Inc. and others. -License & terms of use: [http://www.unicode.org/copyright.html](http://www.unicode.org/copyright.html) \ No newline at end of file +License & terms of use: [http://www.unicode.org/copyright.html](http://www.unicode.org/copyright.html) diff --git a/docs/userguide/icu_data/index.md b/docs/userguide/icu_data/index.md index bb00b2002e8..933bf7b64d7 100644 --- a/docs/userguide/icu_data/index.md +++ b/docs/userguide/icu_data/index.md @@ -43,7 +43,7 @@ to give you more control over what goes into your ICU locale data file. > :point_right: **Note**: ICU for C by default comes with pre-built data. > The source data files are included as an "icu\*data.zip" file starting in ICU4C 49. -> Previously, they were not included unless ICU is downloaded from the [source repository](http://site.icu-project.org/repository). +> Previously, they were not included unless ICU is downloaded from the [source repository](https://icu.unicode.org/repository). ## ICU and CLDR Data @@ -803,7 +803,7 @@ loadable data objects.) #### Unicode Character Data (Properties; for Java only: hardcoded in C common library) * Source format: [source/data/unidata/ppucd.txt](https://github.com/unicode-org/icu/blob/main/icu4c/source/data/unidata/ppucd.txt): - [Preparsed UCD](http://site.icu-project.org/design/props/ppucd) + [Preparsed UCD](https://icu.unicode.org/design/props/ppucd) * Binary format: uprops.icu: [tools/unicode/c/genprops/corepropsbuilder.cpp](https://github.com/unicode-org/icu/blob/main/tools/unicode/c/genprops/corepropsbuilder.cpp) * Generator tool: @@ -857,7 +857,7 @@ loadable data objects.) #### Unicode Character Data (Text layout properties since ICU 64) * Source format: [source/data/unidata/ppucd.txt](https://github.com/unicode-org/icu/blob/main/icu4c/source/data/unidata/ppucd.txt): - [Preparsed UCD](http://site.icu-project.org/design/props/ppucd) + [Preparsed UCD](https://icu.unicode.org/design/props/ppucd) * Binary format: ulayout.icu: [tools/unicode/c/genprops/layoutpropsbuilder.cpp](https://github.com/unicode-org/icu/blob/main/tools/unicode/c/genprops/layoutpropsbuilder.cpp) * Generator tool: @@ -997,28 +997,28 @@ Emoji properties of strings added. #### UCPTrie (C)/CodePointTrie (Java) (maps code points to integers) * Source format: (public builder API) * Binary format: - [ICU Code Point Tries design doc](http://site.icu-project.org/design/struct/utrie), + [ICU Code Point Tries design doc](https://icu.unicode.org/design/struct/utrie), [icu4c/source/common/ucptrie_impl.h](https://github.com/unicode-org/icu/blob/main/icu4c/source/common/ucptrie_impl.h) * Generator tool: (builder class) #### UTrie2 (C)/Trie2 (Java) (maps code points to integers) * Source format: (internal builder API) * Binary format: - [ICU Code Point Tries design doc](http://site.icu-project.org/design/struct/utrie), + [ICU Code Point Tries design doc](https://icu.unicode.org/design/struct/utrie), [icu4c/source/common/utrie2_impl.h](https://github.com/unicode-org/icu/blob/main/icu4c/source/common/utrie2_impl.h) * Generator tool: (builder class) #### BytesTrie (maps byte sequences to 32-bit integers) * Source format: (public builder API) * Binary format: - [BytesTrie design doc](http://site.icu-project.org/design/struct/tries/bytestrie), + [BytesTrie design doc](https://icu.unicode.org/design/struct/tries/bytestrie), [icu4c/source/common/unicode/bytestrie.h](https://github.com/unicode-org/icu/blob/main/icu4c/source/common/unicode/bytestrie.h) * Generator tool: (builder class) #### UCharsTrie (C++)/CharsTrie (Java) (maps 16-bit-Unicode strings to 32-bit integers) * Source format: (public builder API) * Binary format: - [UCharsTrie design doc](http://site.icu-project.org/design/struct/tries/ucharstrie), + [UCharsTrie design doc](https://icu.unicode.org/design/struct/tries/ucharstrie), [icu4c/source/common/unicode/ucharstrie.h](https://github.com/unicode-org/icu/blob/main/icu4c/source/common/unicode/ucharstrie.h) * Generator tool: (builder class) @@ -1137,7 +1137,7 @@ corresponding resource files already in that directory. #### Requirements -1. [ICU4C](http://icu-project.org/download/) +1. [ICU4C](https://icu.unicode.org/download) 2. Compilers and tools required for [building ICU4C](../icu4c/build). diff --git a/docs/userguide/index.md b/docs/userguide/index.md index 2d705d60e8a..09671b8c613 100644 --- a/docs/userguide/index.md +++ b/docs/userguide/index.md @@ -12,7 +12,7 @@ License & terms of use: http://www.unicode.org/copyright.html # ICU User Guide -[![ICU logo](https://github.com/unicode-org/icu-docs/raw/main/img/iculogo_64.png)](http://site.icu-project.org/) +[![ICU logo](https://github.com/unicode-org/icu-docs/raw/main/img/iculogo_64.png)](https://icu.unicode.org/) This User Guide provides information on i18n topics for which ICU has services, and includes details that go beyond the C, C++, and Java API docs (and avoids some duplication between them). diff --git a/docs/userguide/layoutengine/index.md b/docs/userguide/layoutengine/index.md index e087da141cd..69da305e3e2 100644 --- a/docs/userguide/layoutengine/index.md +++ b/docs/userguide/layoutengine/index.md @@ -193,7 +193,7 @@ For a more detailed example of how to call the LayoutEngine, look at . This is a simple test used to verify that the LayoutEngine is working properly. It does not do any complex text rendering. -For more information, see [ICU](http://icu-project.org/) , the [OpenType +For more information, see [ICU](https://icu.unicode.org/) , the [OpenType Specification](http://www.microsoft.com/typography/tt/tt.htm) , and the [TrueType Font File Specification](http://developer.apple.com/fonts/TTRefMan/RM06/Chap6.html) . diff --git a/docs/userguide/locale/index.md b/docs/userguide/locale/index.md index aa6f5c8c163..60a5cb96925 100644 --- a/docs/userguide/locale/index.md +++ b/docs/userguide/locale/index.md @@ -138,7 +138,7 @@ Keyword | Possible Values | Description --------|-----------------|------------ calendar | A calendar specifier such as "gregorian", "islamic", "chinese", "islamic-civil", "hebrew", "japanese", or "buddhist". See the Key/Type Definitions table in the [Locale Data Markup Language](http://www.unicode.org/reports/tr35/) for a list of recognized values. | If present, the calendar keyword specifies the calendar type that the `Calendar` factory methods create. See the calendar locale and keyword handling section (§) of the [Calendar Classes](../datetime/calendar/index.md) chapter for details. collation | A collation specifier such as "phonebook", "pinyin", "traditional", "stroke", "direct", or "posix". See the Key/Type Definitions table in the [Locale Data Markup Language](http://www.unicode.org/reports/tr35/) for a list of recognized values. | If present, the collation keyword modifies how the collation service searches through the locale data when instantiating a collator. See the collation locale and keyword handling section (§) of the [Collation Services Architecture](../collation/architecture.md) chapter for details. -currency | Any standard three-letter currency code, such as "USD" or "JPY". See the LocaleExplorer [currency list](http://demo.icu-project.org/icu-bin/locexp?_=en&SHOWCurrencies=1#Currencies) for a list of currently recognized currency codes. | If present, the currency keyword is used by `NumberFormat` to determine the currency to use to format a currency value, and by `ucurr_forLocale()` to specify a currency. +currency | Any standard three-letter currency code, such as "USD" or "JPY". See the LocaleExplorer [currency list](https://icu4c-demos.unicode.org/icu-bin/locexp?_=en&SHOWCurrencies=1#Currencies) for a list of currently recognized currency codes. | If present, the currency keyword is used by `NumberFormat` to determine the currency to use to format a currency value, and by `ucurr_forLocale()` to specify a currency. numbers | A numbering system specifier such as "latn", "arab", "deva", "hansfin" or "thai". See the Key/Type Definitions table in the [Locale Data Markup Language](http://www.unicode.org/reports/tr35/) for a list of recognized values. | If present, the numbers keyword is used by `NumberFormat` to determine the numbering system to be used for formatting and parsing numbers. The numbering system defines the set of digits used for decimal formatting, such as "latn" for western (ASCII) digits, or "thai" for Thai digits. The numbering system may also define complex algorithms for number formatting, such as "hansfin" for simplified Chinese numerals using financial ideographs. If any of these keywords is absent, the service requesting it will typically use @@ -150,12 +150,12 @@ default behavior. Locale ID | Language | Script | Country | Variant | Keywords | Definition ----------|----------|--------|---------|---------|----------|----------- -en_US | en | | US | | | English, United States of America.
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?_=en_US) -en_IE_PREEURO | en | | IE | | | English, Ireland.
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?_=en_IE_PREEURO) -en_IE@currency=IEP | en | | IE | | currency=IEP | English, Ireland with Irish Pound.
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?_=en_IE@currency=IEP) -eo | eo | | | | | Esperanto.
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?_=eo) -fr@collation=phonebook;calendar=islamic-civil | fr | | | | collation=phonebook
    calendar=islamic-civil | French (Calendar=Islamic-Civil Calendar, Collation=Phonebook Order).
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?_=fr@collation=phonebook;calendar=islamic-civil) -sr_Latn_RS_REVISED@currency=USD | sr | Latn | RS | REVISED | currency=USD | Serbian (Latin, Yugoslavia, Revised Orthography, Currency=US Dollar)
    Browse in [LocaleExplorer](http://demo.icu-project.org/icu-bin/locexp?d_=en&_=sr_Latn_RS_REVISED@currency=USD) +en_US | en | | US | | | English, United States of America.
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?_=en_US) +en_IE_PREEURO | en | | IE | | | English, Ireland.
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?_=en_IE_PREEURO) +en_IE@currency=IEP | en | | IE | | currency=IEP | English, Ireland with Irish Pound.
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?_=en_IE@currency=IEP) +eo | eo | | | | | Esperanto.
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?_=eo) +fr@collation=phonebook;calendar=islamic-civil | fr | | | | collation=phonebook
    calendar=islamic-civil | French (Calendar=Islamic-Civil Calendar, Collation=Phonebook Order).
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?_=fr@collation=phonebook;calendar=islamic-civil) +sr_Latn_RS_REVISED@currency=USD | sr | Latn | RS | REVISED | currency=USD | Serbian (Latin, Yugoslavia, Revised Orthography, Currency=US Dollar)
    Browse in [LocaleExplorer](https://icu4c-demos.unicode.org/icu-bin/locexp?d_=en&_=sr_Latn_RS_REVISED@currency=USD) ### Default Locales diff --git a/docs/userguide/strings/index.md b/docs/userguide/strings/index.md index 58ec92dd566..7fcbcf800be 100644 --- a/docs/userguide/strings/index.md +++ b/docs/userguide/strings/index.md @@ -382,7 +382,7 @@ a new naming scheme. The documentation of the old macros has been removed. If you need it, see a User Guide version from ICU 4.2 or earlier (see the [download -page](http://site.icu-project.org/download)). +page](https://icu.unicode.org/download)). C Unicode String Literals diff --git a/docs/userguide/strings/properties.md b/docs/userguide/strings/properties.md index 408cebc3a0b..86650daa1ed 100644 --- a/docs/userguide/strings/properties.md +++ b/docs/userguide/strings/properties.md @@ -36,7 +36,7 @@ Sample code is available in the ICU source code library at See also the source code for the [Unicode browser](https://github.com/unicode-org/icu-demos/tree/main/ubrowse) demo application, which can be used -[online](http://demo.icu-project.org/icu-bin/ubrowse) to browse Unicode +[online](https://icu4c-demos.unicode.org/icu-bin/ubrowse) to browse Unicode characters with their properties. ## Unicode Character Database properties in ICU APIs @@ -250,7 +250,7 @@ tree at [icu4c/source/data/unidata](https://github.com/unicode-org/icu/tree/main/icu4c/source/data/unidata). Since ICU 49, most of the properties have been combined into one file, unidata/ppucd.txt (see the [Preparsed -UCD](http://site.icu-project.org/design/props/ppucd) design doc). Some of the +UCD](https://icu.unicode.org/design/props/ppucd) design doc). Some of the remaining UCD files are still inputs, others are only used for unit tests. To add a character to such a file, a line must be inserted into the file with diff --git a/docs/userguide/strings/stringprep.md b/docs/userguide/strings/stringprep.md index 7721a8b7f5d..4d7c4aa0ed6 100644 --- a/docs/userguide/strings/stringprep.md +++ b/docs/userguide/strings/stringprep.md @@ -350,7 +350,7 @@ in binary form with data structures optimized for runtime use. ## Demo -A web application at +A web application at illustrates the use of IDNA API. The source code for the application is available at . diff --git a/docs/userguide/transforms/general/index.md b/docs/userguide/transforms/general/index.md index b784c3f7d8f..e927b2cf8fb 100644 --- a/docs/userguide/transforms/general/index.md +++ b/docs/userguide/transforms/general/index.md @@ -63,7 +63,7 @@ example, "~~Αλφaβ~~ητικός" will retain the strikethrough in transliter characteristics such as font type and color.* For an online demonstration of ICU transliteration, see - . + . ## Script Transliteration diff --git a/docs/userguide/transforms/normalization/index.md b/docs/userguide/transforms/normalization/index.md index 86074c20449..a37a5446bce 100644 --- a/docs/userguide/transforms/normalization/index.md +++ b/docs/userguide/transforms/normalization/index.md @@ -42,7 +42,7 @@ ICU 4.4 adds the Normalizer2 API (in [C++](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/classNormalizer2.html) and [C](https://unicode-org.github.io/icu-docs/apidoc/released/icu4c/unorm2_8h.html)), replacing almost all of the old Normalizer API. There is a [design -doc](http://site.icu-project.org/design/normalization/custom) with many details. +doc](https://icu.unicode.org/design/normalization/custom) with many details. All of the replaced old API is now implemented as a thin wrapper around the new API. diff --git a/icu4c/source/common/dictionarydata.h b/icu4c/source/common/dictionarydata.h index 33e4fdc1065..e75716f54b9 100644 --- a/icu4c/source/common/dictionarydata.h +++ b/icu4c/source/common/dictionarydata.h @@ -159,7 +159,7 @@ udict_swap(const UDataSwapper *ds, const void *inData, int32_t length, void *out * Constants are defined in the DictionaryData class. * * For the data structure of BytesTrie & UCharsTrie see - * http://site.icu-project.org/design/struct/tries + * https://icu.unicode.org/design/struct/tries * and the bytestrie.h and ucharstrie.h header files. * * int32_t indexes[indexesLength]; -- indexesLength=indexes[IX_STRING_TRIE_OFFSET]/4; diff --git a/icu4c/source/common/msvcres.h b/icu4c/source/common/msvcres.h index 0cace85e747..d71b5ac922a 100644 --- a/icu4c/source/common/msvcres.h +++ b/icu4c/source/common/msvcres.h @@ -19,7 +19,7 @@ STLPort's broken stddef.h from being used when rc.exe parses this file. #include "unicode/uversion.h" -#define ICU_WEBSITE "http://icu-project.org" +#define ICU_WEBSITE "https://icu.unicode.org/" #define ICU_COMPANY "The ICU Project" #define ICU_PRODUCT_PREFIX "ICU" #define ICU_PRODUCT "International Components for Unicode" diff --git a/icu4c/source/common/normalizer2impl.h b/icu4c/source/common/normalizer2impl.h index bdb6767a925..7c85448b71b 100644 --- a/icu4c/source/common/normalizer2impl.h +++ b/icu4c/source/common/normalizer2impl.h @@ -241,7 +241,7 @@ private: * Low-level implementation of the Unicode Normalization Algorithm. * For the data structure and details see the documentation at the end of * this normalizer2impl.h and in the design doc at - * http://site.icu-project.org/design/normalization/custom + * https://icu.unicode.org/design/normalization/custom */ class U_COMMON_API Normalizer2Impl : public UObject { public: @@ -806,7 +806,7 @@ unorm_getFCD16(UChar32 c); * Constants are defined as enum values of the Normalizer2Impl class. * * Many details of the data structures are described in the design doc - * which is at http://site.icu-project.org/design/normalization/custom + * which is at https://icu.unicode.org/design/normalization/custom * * int32_t indexes[indexesLength]; -- indexesLength=indexes[IX_NORM_TRIE_OFFSET]/4; * diff --git a/icu4c/source/common/ucnvmbcs.cpp b/icu4c/source/common/ucnvmbcs.cpp index c02f336815f..420aa02af5b 100644 --- a/icu4c/source/common/ucnvmbcs.cpp +++ b/icu4c/source/common/ucnvmbcs.cpp @@ -1091,7 +1091,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://source.icu-project.org/repos/icu/icuhtml/trunk/design/conversion/conversion_extensions.html + * see https://htmlpreview.github.io/?https://github.com/unicode-org/icu-docs/blob/main/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. diff --git a/icu4c/source/common/ucptrie_impl.h b/icu4c/source/common/ucptrie_impl.h index 1fe6a18ac53..048353c80df 100644 --- a/icu4c/source/common/ucptrie_impl.h +++ b/icu4c/source/common/ucptrie_impl.h @@ -148,7 +148,7 @@ U_CFUNC void umutablecptrie_setName(UMutableCPTrie *builder, const char *name); /* * Format of the binary, memory-mappable representation of a UCPTrie/CodePointTrie. - * For overview information see http://site.icu-project.org/design/struct/utrie + * For overview information see https://icu.unicode.org/design/struct/utrie * * The binary trie data should be 32-bit-aligned. * The overall layout is: diff --git a/icu4c/source/common/unicode/brkiter.h b/icu4c/source/common/unicode/brkiter.h index 0e6f229320c..3a121cf703b 100644 --- a/icu4c/source/common/unicode/brkiter.h +++ b/icu4c/source/common/unicode/brkiter.h @@ -99,7 +99,7 @@ U_NAMESPACE_BEGIN *

    * Code snippets illustrating the use of the Break Iterator APIs * are available in the ICU User Guide, - * http://icu-project.org/userguide/boundaryAnalysis.html + * https://unicode-org.github.io/icu/userguide/boundaryanalysis/ * and in the sample program icu/source/samples/break/break.cpp * */ diff --git a/icu4c/source/common/unicode/docmain.h b/icu4c/source/common/unicode/docmain.h index e82678c95f5..4e29e283cde 100644 --- a/icu4c/source/common/unicode/docmain.h +++ b/icu4c/source/common/unicode/docmain.h @@ -47,7 +47,7 @@ *

    API References for Previous Releases

    *

    The API References for each release of ICU are also available as * a zip file from the ICU - * download page.

    + * download page.

    * *
    * diff --git a/icu4c/source/common/unicode/localpointer.h b/icu4c/source/common/unicode/localpointer.h index 2a65f2d382d..96c659d10ad 100644 --- a/icu4c/source/common/unicode/localpointer.h +++ b/icu4c/source/common/unicode/localpointer.h @@ -35,7 +35,7 @@ * - Need to be able to orphan/release the pointer and its ownership. * - Need variants for normal C++ object pointers, C++ arrays, and ICU C service objects. * - * For details see http://site.icu-project.org/design/cpp/scoped_ptr + * For details see https://icu.unicode.org/design/cpp/scoped_ptr */ #include "unicode/utypes.h" diff --git a/icu4c/source/common/unicode/resbund.h b/icu4c/source/common/unicode/resbund.h index 74c8b7ba57d..7441592a0f2 100644 --- a/icu4c/source/common/unicode/resbund.h +++ b/icu4c/source/common/unicode/resbund.h @@ -71,9 +71,9 @@ U_NAMESPACE_BEGIN * locale and then ask it for individual resources. *

    * Resource bundles in ICU4C are currently defined using text files which conform to the following - * BNF definition. + * BNF definition. * More on resource bundle concepts and syntax can be found in the - * Users Guide. + * Users Guide. *

    * * The ResourceBundle class is not suitable for subclassing. diff --git a/icu4c/source/common/unicode/ubrk.h b/icu4c/source/common/unicode/ubrk.h index 1249b0b160d..c603f7c13f3 100644 --- a/icu4c/source/common/unicode/ubrk.h +++ b/icu4c/source/common/unicode/ubrk.h @@ -94,7 +94,7 @@ *

    * Code snippets illustrating the use of the Break Iterator APIs * are available in the ICU User Guide, - * http://icu-project.org/userguide/boundaryAnalysis.html + * https://unicode-org.github.io/icu/userguide/boundaryanalysis/ * and in the sample program icu/source/samples/break/break.cpp */ diff --git a/icu4c/source/common/unicode/uchar.h b/icu4c/source/common/unicode/uchar.h index f5becd01755..253e6db173f 100644 --- a/icu4c/source/common/unicode/uchar.h +++ b/icu4c/source/common/unicode/uchar.h @@ -77,7 +77,7 @@ U_CDECL_BEGIN * * For more information see * "About the Unicode Character Database" (http://www.unicode.org/ucd/) - * and the ICU User Guide chapter on Properties (http://icu-project.org/userguide/properties.html). + * and the ICU User Guide chapter on Properties (https://unicode-org.github.io/icu/userguide/strings/properties). * * Many properties are accessible via generic functions that take a UProperty selector. * - u_hasBinaryProperty() returns a binary value (true/false) per property and code point. @@ -3946,7 +3946,7 @@ u_isJavaIDPart(UChar32 c); * Full case mappings are applied by the string case mapping functions, * see ustring.h and the UnicodeString class. * See also the User Guide chapter on C/POSIX migration: - * http://icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param c the code point to be mapped * @return the Simple_Lowercase_Mapping of the code point, if any; @@ -3971,7 +3971,7 @@ u_tolower(UChar32 c); * Full case mappings are applied by the string case mapping functions, * see ustring.h and the UnicodeString class. * See also the User Guide chapter on C/POSIX migration: - * http://icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param c the code point to be mapped * @return the Simple_Uppercase_Mapping of the code point, if any; @@ -3996,7 +3996,7 @@ u_toupper(UChar32 c); * Full case mappings are applied by the string case mapping functions, * see ustring.h and the UnicodeString class. * See also the User Guide chapter on C/POSIX migration: - * http://icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param c the code point to be mapped * @return the Simple_Titlecase_Mapping of the code point, if any; @@ -4020,7 +4020,7 @@ u_totitle(UChar32 c); * Full case mappings are applied by the string case mapping functions, * see ustring.h and the UnicodeString class. * See also the User Guide chapter on C/POSIX migration: - * http://icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param c the code point to be mapped * @param options Either U_FOLD_CASE_DEFAULT or U_FOLD_CASE_EXCLUDE_SPECIAL_I diff --git a/icu4c/source/common/unicode/ucnv.h b/icu4c/source/common/unicode/ucnv.h index ddf2a961fe6..2687c984d43 100644 --- a/icu4c/source/common/unicode/ucnv.h +++ b/icu4c/source/common/unicode/ucnv.h @@ -42,8 +42,7 @@ * many other callback actions that can be used instead of a character substitution.

    * *

    More information about this API can be found in our - * User's - * Guide.

    + * User Guide.

    */ #ifndef UCNV_H @@ -340,7 +339,7 @@ ucnv_compareNames(const char *name1, const char *name2); * *

    The conversion behavior and names can vary between platforms. ICU may * convert some characters differently from other platforms. Details on this topic - * are in the User's + * are in the User * Guide. Aliases starting with a "cp" prefix have no specific meaning * other than its an alias starting with the letters "cp". Please do not * associate any meaning to these aliases.

    @@ -1935,7 +1934,7 @@ ucnv_isAmbiguous(const UConverter *cnv); * reverse fallbacks (to Unicode). * For details see ".ucm File Format" * in the Conversion Data chapter of the ICU User Guide: - * http://www.icu-project.org/userguide/conversion-data.html#ucmformat + * https://unicode-org.github.io/icu/userguide/conversion/data.html#ucm-file-format * * @param cnv The converter to set the fallback mapping usage on. * @param usesFallback true if the user wants the converter to take advantage of the fallback diff --git a/icu4c/source/common/unicode/ucptrie.h b/icu4c/source/common/unicode/ucptrie.h index b95491b183e..e2547ae2eea 100644 --- a/icu4c/source/common/unicode/ucptrie.h +++ b/icu4c/source/common/unicode/ucptrie.h @@ -43,7 +43,7 @@ typedef union UCPTrieData { /** * Immutable Unicode code point trie structure. * Fast, reasonably compact, map from Unicode code points (U+0000..U+10FFFF) to integer values. - * For details see http://site.icu-project.org/design/struct/utrie + * For details see https://icu.unicode.org/design/struct/utrie * * Do not access UCPTrie fields directly; use public functions and macros. * Functions are easy to use: They support all trie types and value widths. diff --git a/icu4c/source/common/unicode/udata.h b/icu4c/source/common/unicode/udata.h index 22f764b169c..c5b1adc359c 100644 --- a/icu4c/source/common/unicode/udata.h +++ b/icu4c/source/common/unicode/udata.h @@ -231,7 +231,7 @@ udata_open(const char *path, const char *type, const char *name, * logically prepended to the ICU data directory string.

    * *

    For details about ICU data loading see the User Guide - * Data Management chapter. (http://icu-project.org/userguide/icudata.html)

    + * Data Management chapter. (https://unicode-org.github.io/icu/userguide/icu_data/)

    * * @param path Specifies an absolute path and/or a basename for the * finding of the data in the file system. diff --git a/icu4c/source/common/unicode/umutablecptrie.h b/icu4c/source/common/unicode/umutablecptrie.h index 5325d58147a..3b950055da7 100644 --- a/icu4c/source/common/unicode/umutablecptrie.h +++ b/icu4c/source/common/unicode/umutablecptrie.h @@ -31,7 +31,7 @@ U_CDECL_BEGIN /** * Mutable Unicode code point trie. * Fast map from Unicode code points (U+0000..U+10FFFF) to 32-bit integer values. - * For details see http://site.icu-project.org/design/struct/utrie + * For details see https://icu.unicode.org/design/struct/utrie * * Setting values (especially ranges) and lookup is fast. * The mutable trie is only somewhat space-efficient. diff --git a/icu4c/source/common/unicode/uniset.h b/icu4c/source/common/unicode/uniset.h index 66bbaec4cca..730337a3535 100644 --- a/icu4c/source/common/unicode/uniset.h +++ b/icu4c/source/common/unicode/uniset.h @@ -124,8 +124,8 @@ class RuleCharacterIterator; * "[:Lu:]" and the Perl-like syntax "\\p{Lu}" are recognized. For a * complete list of supported property patterns, see the User's Guide * for UnicodeSet at - * - * http://icu-project.org/userguide/unicodeSet.html. + * + * https://unicode-org.github.io/icu/userguide/strings/unicodeset. * Actual determination of property data is defined by the underlying * Unicode database as implemented by UCharacter. * @@ -1639,7 +1639,7 @@ private: * * The original design document is out of date, but still useful. * Ignore the property and value names: - * http://source.icu-project.org/repos/icu/icuhtml/trunk/design/unicodeset_properties.html + * https://htmlpreview.github.io/?https://github.com/unicode-org/icu-docs/blob/main/design/unicodeset_properties.html * * Recognized syntax: * diff --git a/icu4c/source/common/unicode/unorm.h b/icu4c/source/common/unicode/unorm.h index c3c57582d44..38fb8951557 100644 --- a/icu4c/source/common/unicode/unorm.h +++ b/icu4c/source/common/unicode/unorm.h @@ -115,7 +115,7 @@ * unorm_normalize(UNORM_FCD) may be implemented with UNORM_NFD. * * For more details on FCD see the collation design document: - * http://source.icu-project.org/repos/icu/icuhtml/trunk/design/collation/ICU_collation_design.htm + * https://htmlpreview.github.io/?https://github.com/unicode-org/icu-docs/blob/main/design/collation/ICU_collation_design.htm * * ICU collation performs either NFD or FCD normalization automatically if normalization * is turned on for the collator object. diff --git a/icu4c/source/common/unicode/ures.h b/icu4c/source/common/unicode/ures.h index fff84043e84..a6c43f9537a 100644 --- a/icu4c/source/common/unicode/ures.h +++ b/icu4c/source/common/unicode/ures.h @@ -44,9 +44,9 @@ * locale and then ask it for individual resources. *

    * Resource bundles in ICU4C are currently defined using text files which conform to the following - * BNF definition. + * BNF definition. * More on resource bundle concepts and syntax can be found in the - * Users Guide. + * Users Guide. *

    */ diff --git a/icu4c/source/common/unicode/ustring.h b/icu4c/source/common/unicode/ustring.h index 10ea45ead1d..5452fbe09a8 100644 --- a/icu4c/source/common/unicode/ustring.h +++ b/icu4c/source/common/unicode/ustring.h @@ -72,7 +72,7 @@ * their occurrence is rare. Almost all characters in modern use require only * a single UChar code unit (i.e., their code point values are <=0xffff). * - * For more details see the User Guide Strings chapter (http://icu-project.org/userguide/strings.html). + * For more details see the User Guide Strings chapter (https://unicode-org.github.io/icu/userguide/strings/). * For a discussion of the handling of unpaired surrogates see also * Jitterbug 2145 and its icu mailing list proposal on 2002-sep-18. */ diff --git a/icu4c/source/common/unicode/utypes.h b/icu4c/source/common/unicode/utypes.h index a33a7c99219..f890d5d1dbb 100644 --- a/icu4c/source/common/unicode/utypes.h +++ b/icu4c/source/common/unicode/utypes.h @@ -400,7 +400,7 @@ typedef double UDate; * suitable subclass. * * For more information, see: - * http://icu-project.org/userguide/conventions + * https://unicode-org.github.io/icu/userguide/dev/codingguidelines#details-about-icu-error-codes * * Note: By convention, ICU functions that take a reference (C++) or a pointer * (C) to a UErrorCode first test: diff --git a/icu4c/source/common/ustrcase.cpp b/icu4c/source/common/ustrcase.cpp index 618e847c65d..36b19e75f2d 100644 --- a/icu4c/source/common/ustrcase.cpp +++ b/icu4c/source/common/ustrcase.cpp @@ -544,7 +544,7 @@ U_NAMESPACE_BEGIN namespace GreekUpper { // Data generated by prototype code, see -// http://site.icu-project.org/design/case/greek-upper +// https://icu.unicode.org/design/case/greek-upper // TODO: Move this data into ucase.icu. static const uint16_t data0370[] = { // U+0370..03FF diff --git a/icu4c/source/data/mappings/convrtrs.txt b/icu4c/source/data/mappings/convrtrs.txt index 4aaa592a532..7b1ec89cead 100644 --- a/icu4c/source/data/mappings/convrtrs.txt +++ b/icu4c/source/data/mappings/convrtrs.txt @@ -9,7 +9,7 @@ # If this converter alias table looks very confusing, a much easier to # understand view can be found at this demo: -# http://demo.icu-project.org/icu-bin/convexp +# https://icu4c-demos.unicode.org/icu-bin/convexp # IMPORTANT NOTE # diff --git a/icu4c/source/data/translit/am_am_Latn_BGN.txt b/icu4c/source/data/translit/am_am_Latn_BGN.txt index 1561c6318e7..be553a11ce6 100644 --- a/icu4c/source/data/translit/am_am_Latn_BGN.txt +++ b/icu4c/source/data/translit/am_am_Latn_BGN.txt @@ -27,7 +27,7 @@ $ejective = ’; $glottal = ’; $pharyngeal = ‘; # Use this $wordBoundary until bug 2034 is fixed in ICU: -# http://bugs.icu-project.org/trac/ticket/2034 +# https://unicode-org.atlassian.net/browse/ICU-2034 $wordBoundary = [^[:L:][:M:][:N:]] ; ######################################################################## # Start of Syllabic Transformations diff --git a/icu4c/source/data/unidata/changes.txt b/icu4c/source/data/unidata/changes.txt index d9af0ac707d..1a24657e819 100644 --- a/icu4c/source/data/unidata/changes.txt +++ b/icu4c/source/data/unidata/changes.txt @@ -2613,7 +2613,7 @@ or ---------------------------------------------------------------------------- *** -New script codes early in ICU 58: http://bugs.icu-project.org/trac/ticket/11764 +New script codes early in ICU 58: https://unicode-org.atlassian.net/browse/ICU-11764 Adding - new scripts in Unicode 9: Adlm, Bhks, Marc, Newa, Osge @@ -2641,7 +2641,7 @@ SRC_DATA_IN=$ICU_SRC_DIR/source/data/in UNIDATA=$ICU_SRC_DIR/source/data/unidata Adjust unicode/c/genprops/*builder.cpp for #ifndef/#ifdef changes in _data.h files, -see http://bugs.icu-project.org/trac/ticket/12141 +see https://unicode-org.atlassian.net/browse/ICU-12141 make install, then icutools cmake & make, then ~/svn.icutools/trunk/dbg/unicode/c$ make && genprops/genprops $ICU_SRC_DIR @@ -2672,7 +2672,7 @@ Generate Java data as usual, only update pnames.icu & uprops.icu. ---------------------------------------------------------------------------- *** -Emoji properties added in ICU 57: http://bugs.icu-project.org/trac/ticket/11802 +Emoji properties added in ICU 57: https://unicode-org.atlassian.net/browse/ICU-11802 Edit preparseucd.py to add & parse new properties. They share the UCD property namespace but are not listed in PropertyAliases.txt. @@ -3753,7 +3753,7 @@ or Future Unicode update Tools simplified since the Unicode 6.1 update. See -- http://site.icu-project.org/design/props/ppucd +- https://icu.unicode.org/design/props/ppucd - http://bugs.icu-project.org/trac/wiki/Markus/ReviewTicket8972 * Unicode version numbers diff --git a/icu4c/source/data/xml/brkitr/de.xml b/icu4c/source/data/xml/brkitr/de.xml index 704c091a7eb..e9ef95b84f2 100644 --- a/icu4c/source/data/xml/brkitr/de.xml +++ b/icu4c/source/data/xml/brkitr/de.xml @@ -4,7 +4,7 @@ License & terms of use: http://www.unicode.org/copyright.html Copyright (c) 2010-2015 International Business Machines Corporation and others. All rights reserved. - See http://bugs.icu-project.org/trac/ticket/10750#comment:5 - this file is needed to emit break iterator rules properly. + See comments on https://unicode-org.atlassian.net/browse/ICU-10750 - this file is needed to emit break iterator rules properly. --> -2.1 && offset < 2.1) { // Allow a 1% epsilon, so offsets in -1.01..-0.99 map to LAST diff --git a/icu4c/source/i18n/unicode/dcfmtsym.h b/icu4c/source/i18n/unicode/dcfmtsym.h index 20a6aae13b2..c5f7404416f 100644 --- a/icu4c/source/i18n/unicode/dcfmtsym.h +++ b/icu4c/source/i18n/unicode/dcfmtsym.h @@ -425,7 +425,7 @@ public: * * This is not currently stable API, but if you think it should be stable, * post a comment on the following ticket and the ICU team will take a look: - * http://bugs.icu-project.org/trac/ticket/13580 + * https://unicode-org.atlassian.net/browse/ICU-13580 * * @param symbol Constant to indicate a number format symbol. * @return the format symbol by the param 'symbol' @@ -442,7 +442,7 @@ public: * * This is not currently stable API, but if you think it should be stable, * post a comment on the following ticket and the ICU team will take a look: - * http://bugs.icu-project.org/trac/ticket/13580 + * https://unicode-org.atlassian.net/browse/ICU-13580 * * @param digit The digit, an integer between 0 and 9 inclusive. * If outside the range 0 to 9, the zero digit is returned. diff --git a/icu4c/source/i18n/unicode/stsearch.h b/icu4c/source/i18n/unicode/stsearch.h index af1b2d4eabc..c23e651d897 100644 --- a/icu4c/source/i18n/unicode/stsearch.h +++ b/icu4c/source/i18n/unicode/stsearch.h @@ -37,7 +37,7 @@ U_NAMESPACE_BEGIN * StringSearch ensures that language eccentricity can be * handled, e.g. for the German collator, characters ß and SS will be matched * if case is chosen to be ignored. - * See the + * See the * "ICU Collation Design Document" for more information. *

    * There are 2 match options for selection:
    diff --git a/icu4c/source/i18n/unicode/usearch.h b/icu4c/source/i18n/unicode/usearch.h index 7fe8df76015..fd0b84f6723 100644 --- a/icu4c/source/i18n/unicode/usearch.h +++ b/icu4c/source/i18n/unicode/usearch.h @@ -32,7 +32,7 @@ * see ucol.h. This ensures that language eccentricity can be * handled, e.g. for the German collator, characters ß and SS will be matched * if case is chosen to be ignored. - * See the + * See the * "ICU Collation Design Document" for more information. *

    * As of ICU4C 4.0 / ICU4J 53, the implementation uses a linear search. In previous versions, diff --git a/icu4c/source/samples/msgfmt/README.TXT b/icu4c/source/samples/msgfmt/README.TXT index 5fc50b43a0a..d16d0136ee3 100644 --- a/icu4c/source/samples/msgfmt/README.TXT +++ b/icu4c/source/samples/msgfmt/README.TXT @@ -18,8 +18,7 @@ The code currently provided in the solution file is the answer to the exercises, Pre-requisites: 1. All the hardware and software requirements from Day 1. 2. Attended or fully understand Day 1 material. - 3. Read through the ICU user's guide at - http://www.icu-project.org/userguide/. + 3. Read through the ICU user's guide at https://unicode-org.github.io/icu/userguide/. #Date/Time/Number Formatting Support 9:30am - 10:30am diff --git a/icu4c/source/samples/translit/README.TXT b/icu4c/source/samples/translit/README.TXT index 3e8c2742b91..a0302876c10 100644 --- a/icu4c/source/samples/translit/README.TXT +++ b/icu4c/source/samples/translit/README.TXT @@ -17,8 +17,7 @@ The code currently provided in the solution file is the answer to the exercises, Pre-requisite: 1. All the hardware and software requirements from Day 1. 2. Attended or fully understand Day 1 material. - 3. Read through the ICU user's guide at - http://www.icu-project.org/userguide/. + 3. Read through the ICU user's guide at https://unicode-org.github.io/icu/userguide/. #Transformation Support 10:45am - 12:00pm diff --git a/icu4c/source/test/intltest/dtfmttst.cpp b/icu4c/source/test/intltest/dtfmttst.cpp index 18dc02af3c4..16f3002a95e 100644 --- a/icu4c/source/test/intltest/dtfmttst.cpp +++ b/icu4c/source/test/intltest/dtfmttst.cpp @@ -4504,7 +4504,7 @@ static const UDate TEST_DATE = 1326585600000.; // 2012-jan-15 void DateFormatTest::TestDotAndAtLeniency() { // Test for date/time parsing regression with CLDR 22.1/ICU 50 pattern strings. - // For details see http://bugs.icu-project.org/trac/ticket/9789 + // For details see https://unicode-org.atlassian.net/browse/ICU-9789 static const char *locales[] = { "en", "fr" }; for (int32_t i = 0; i < UPRV_LENGTHOF(locales); ++i) { Locale locale(locales[i]); @@ -4576,7 +4576,7 @@ typedef struct { } TestDateFormatLeniencyItem; void DateFormatTest::TestDateFormatLeniency() { - // For details see http://bugs.icu-project.org/trac/ticket/10261 + // For details see https://unicode-org.atlassian.net/browse/ICU-10261 const UDate july022008 = 1215000001979.0; const TestDateFormatLeniencyItem items[] = { @@ -4655,7 +4655,7 @@ typedef struct { } TestMultiPatternMatchItem; void DateFormatTest::TestParseMultiPatternMatch() { - // For details see http://bugs.icu-project.org/trac/ticket/10336 + // For details see https://unicode-org.atlassian.net/browse/ICU-10336 const TestMultiPatternMatchItem items[] = { // leniency parse String pattern expected result {true, UnicodeString("2013-Sep 13"), UnicodeString("yyyy-MMM dd"), UnicodeString("2013-Sep 13")}, diff --git a/icu4c/source/test/intltest/regextst.cpp b/icu4c/source/test/intltest/regextst.cpp index 79700d33215..d55d9917d31 100644 --- a/icu4c/source/test/intltest/regextst.cpp +++ b/icu4c/source/test/intltest/regextst.cpp @@ -5534,7 +5534,7 @@ void RegexTest::TestCaseInsensitiveStarters() { // Test that the data used by RegexCompile::findCaseInsensitiveStarters() hasn't // become stale because of new Unicode characters. // If it is stale, rerun the generation tool - // svn+ssh://source.icu-project.org/repos/icu/tools/trunk/unicode/c/genregexcasing + // https://github.com/unicode-org/icu/tree/main/tools/unicode/c/genregexcasing // and replace the embedded data in i18n/regexcmp.cpp for (UChar32 cp=0; cp<=0x10ffff; cp++) { diff --git a/icu4c/source/test/intltest/strcase.cpp b/icu4c/source/test/intltest/strcase.cpp index 7dba75fe567..006bcd64ed3 100644 --- a/icu4c/source/test/intltest/strcase.cpp +++ b/icu4c/source/test/intltest/strcase.cpp @@ -788,7 +788,7 @@ StringCaseTest::assertGreekUpper(const char16_t *s, const char16_t *expected) { void StringCaseTest::TestGreekUpper() { - // http://bugs.icu-project.org/trac/ticket/5456 + // https://unicode-org.atlassian.net/browse/ICU-5456 assertGreekUpper(u"άδικος, κείμενο, ίριδα", u"ΑΔΙΚΟΣ, ΚΕΙΜΕΝΟ, ΙΡΙΔΑ"); // https://bugzilla.mozilla.org/show_bug.cgi?id=307039 // https://bug307039.bmoattachments.org/attachment.cgi?id=194893 @@ -1030,7 +1030,7 @@ void StringCaseTest::TestCopyMoveEdits() { TestUtility::checkEqualEdits(*this, u"c = b", b, c, errorCode); // std::move trouble on these platforms. - // See https://ssl.icu-project.org/trac/ticket/13393 + // See https://unicode-org.atlassian.net/browse/ICU-13393 #if !(U_PLATFORM == U_PF_AIX || U_PLATFORM == U_PF_OS390) // move constructor empties object with heap array Edits d(std::move(a)); diff --git a/icu4c/source/test/intltest/tsmthred.cpp b/icu4c/source/test/intltest/tsmthred.cpp index 85f471f35bc..dd8b725965f 100644 --- a/icu4c/source/test/intltest/tsmthred.cpp +++ b/icu4c/source/test/intltest/tsmthred.cpp @@ -844,7 +844,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://source.icu-project.org/repos/icu/tools/trunk/unicodetools/com/ibm/text/data/"); + "https://github.com/unicode-org/cldr/tree/main/common/uca"); } } } diff --git a/icu4c/source/test/perf/howExpensiveIs/readme.txt b/icu4c/source/test/perf/howExpensiveIs/readme.txt index cd056573f1d..51e548ad94a 100644 --- a/icu4c/source/test/perf/howExpensiveIs/readme.txt +++ b/icu4c/source/test/perf/howExpensiveIs/readme.txt @@ -68,7 +68,7 @@ How Expensive Is It? ** Appendix II: Analysis.csv -http://bugs.icu-project.org/trac/ticket/8653,"""Control"", linux i7 +https://unicode-org.atlassian.net/browse/ICU-8653,"""Control"", linux i7 Intel(R) Core(TM) i7-2720QM CPU @ 2.20GHz",MacBook 2.4ghz (Core2D),MacBook 2GhzCore2,AIX Power,MB 2.4 Variance,MB 2 variance,AIX Variance SieveTest (=1.0),1,1,1,1,0.00%,0.00%,0.00% NullTest (=0.0),0,0,0,0.08,#DIV/0!,#DIV/0!,#DIV/0! diff --git a/icu4c/source/test/testdata/rbbitst.txt b/icu4c/source/test/testdata/rbbitst.txt index 7c42b5e3988..7fb30c9e8e3 100644 --- a/icu4c/source/test/testdata/rbbitst.txt +++ b/icu4c/source/test/testdata/rbbitst.txt @@ -1326,7 +1326,8 @@ part •of •the •Luang •Prabang •Range •(ทิว•เขา•ห \u0E14\u0E49\u0E27\u0E22<200>\u0e2b\u0e25\u0e32\u0e22<200>\ \u0e1e\u0e22\u0e32\u0e07\u0e04\u0e4c<200> -# Test data originally from http://bugs.icu-project.org/trac/search?q=r30327 +# Test data originally from +# ICU-8576 svn r30327 = git commit 62d26cc5fe8cc66696143c44a43d664c2d7be100 •กู<200> •กิน<200>กุ้ง<200> •ปิ้่<200>งอ<200>ยู่<200>ใน<200>ถ้ำ<200> •\u0E01\u0E39<200>\u0020•\u0E01\u0E34\u0E19<200>\u0E01\u0E38\u0E49\u0E07<200>\ @@ -1464,7 +1465,8 @@ Bangkok)• # ########################################################################################## -# Test data originally from http://bugs.icu-project.org/trac/search?q=r30327 +# Test data originally from +# ICU-8576 svn r30327 = git commit 62d26cc5fe8cc66696143c44a43d664c2d7be100 # from the file testdata/wordsegments.txt diff --git a/icu4c/source/test/testmap/readme.txt b/icu4c/source/test/testmap/readme.txt index b1ade382a24..12df94d71e0 100644 --- a/icu4c/source/test/testmap/readme.txt +++ b/icu4c/source/test/testmap/readme.txt @@ -8,5 +8,5 @@ This test may be tested on a linux machine like so: Where /path/to/icu-build is the path to an ICU build dir -And where icurun is from : http://source.icu-project.org/repos/icu/tools/trunk/scripts/icurun +And where icurun is from : https://github.com/unicode-org/icu/blob/main/tools/scripts/icurun diff --git a/icu4c/source/tools/gennorm2/norms.h b/icu4c/source/tools/gennorm2/norms.h index 5684e65e672..34efd4ba013 100644 --- a/icu4c/source/tools/gennorm2/norms.h +++ b/icu4c/source/tools/gennorm2/norms.h @@ -97,7 +97,7 @@ struct Norm { * Set after most processing is done. * * Corresponds to the rows in the chart on - * http://site.icu-project.org/design/normalization/custom + * https://icu.unicode.org/design/normalization/custom * in numerical (but reverse visual) order. * * YES_NO means composition quick check=yes, decomposition QC=no -- etc. diff --git a/icu4c/source/tools/tzcode/readme.txt b/icu4c/source/tools/tzcode/readme.txt index 5ec8bb3d170..9a3cf97703e 100644 --- a/icu4c/source/tools/tzcode/readme.txt +++ b/icu4c/source/tools/tzcode/readme.txt @@ -25,7 +25,7 @@ behavior, as well as the full set of Olson compatibility IDs. References: -ICU4C: http://www.icu-project.org/ +ICU4C: https://icu.unicode.org/ Olson: ftp://ftp.iana.org/tz/releases/ ---------------------------------------------------------------------- diff --git a/icu4j/demos/src/com/ibm/icu/dev/demo/Launcher.java b/icu4j/demos/src/com/ibm/icu/dev/demo/Launcher.java index 51e23424193..c760f9c3d88 100644 --- a/icu4j/demos/src/com/ibm/icu/dev/demo/Launcher.java +++ b/icu4j/demos/src/com/ibm/icu/dev/demo/Launcher.java @@ -100,7 +100,7 @@ public class Launcher extends DemoApplet { } add(BorderLayout.NORTH, new Label( "ICU Demos * ICU version "+VersionInfo.ICU_VERSION + - " * http://icu-project.org "+javaVersion)); + " * https://icu.unicode.org/ "+javaVersion)); add(BorderLayout.SOUTH,statusLabel); // set up an initial status. showStatus(buttonList.length+" demos ready. "); diff --git a/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/CollationLoader.java b/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/CollationLoader.java index c5259e36b9f..d940c1e5dd5 100644 --- a/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/CollationLoader.java +++ b/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/CollationLoader.java @@ -117,7 +117,7 @@ public final class CollationLoader { ULocale validLocale = bundle.getULocale(); // Normalize the root locale. See - // http://bugs.icu-project.org/trac/ticket/10715 + // https://unicode-org.atlassian.net/browse/ICU-10715 String validLocaleName = validLocale.getName(); if (validLocaleName.length() == 0 || validLocaleName.equals("root")) { validLocale = ULocale.ROOT; @@ -185,7 +185,7 @@ public final class CollationLoader { // Is this the same as the root collator? If so, then use that instead. ULocale actualLocale = data.getULocale(); - // http://bugs.icu-project.org/trac/ticket/10715 ICUResourceBundle(root).getULocale() != ULocale.ROOT + // https://unicode-org.atlassian.net/browse/ICU-10715 ICUResourceBundle(root).getULocale() != ULocale.ROOT // Therefore not just if (actualLocale.equals(ULocale.ROOT) && type.equals("standard")) { String actualLocaleName = actualLocale.getName(); if (actualLocaleName.length() == 0 || actualLocaleName.equals("root")) { diff --git a/icu4j/main/classes/collate/src/com/ibm/icu/text/CollationKey.java b/icu4j/main/classes/collate/src/com/ibm/icu/text/CollationKey.java index 203706a77ec..0e848753810 100644 --- a/icu4j/main/classes/collate/src/com/ibm/icu/text/CollationKey.java +++ b/icu4j/main/classes/collate/src/com/ibm/icu/text/CollationKey.java @@ -48,7 +48,7 @@ import com.ibm.icu.impl.coll.Collation; * *

    More information about the composition of the bit sequence can * be found in the - * + * * user guide.

    * *

    The following example shows how CollationKeys can be used @@ -383,7 +383,7 @@ public final class CollationKey implements Comparable * also match "Smithsonian" and similar. *

    * For more on usage, see example in test procedure - * + * * src/com/ibm/icu/dev/test/collator/CollationAPITest/TestBounds. * *

    diff --git a/icu4j/main/classes/collate/src/com/ibm/icu/text/StringSearch.java b/icu4j/main/classes/collate/src/com/ibm/icu/text/StringSearch.java index 662c11c6b1f..92306a1cd58 100644 --- a/icu4j/main/classes/collate/src/com/ibm/icu/text/StringSearch.java +++ b/icu4j/main/classes/collate/src/com/ibm/icu/text/StringSearch.java @@ -40,7 +40,7 @@ import com.ibm.icu.util.ULocale; * StringSearch ensures that language eccentricity can be * handled, e.g. for the German collator, characters ß and SS will be matched * if case is chosen to be ignored. - * See the + * See the * "ICU Collation Design Document" for more information. *

    * There are 2 match options for selection:
    diff --git a/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java b/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java index bd963be7d7f..9c48035acc6 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/impl/CaseMapImpl.java @@ -829,7 +829,7 @@ public final class CaseMapImpl { private static final int AFTER_VOWEL_WITH_ACCENT = 2; // Data generated by prototype code, see - // http://site.icu-project.org/design/case/greek-upper + // https://icu.unicode.org/design/case/greek-upper // TODO: Move this data into ucase.icu. private static final char[] data0370 = { // U+0370..03FF diff --git a/icu4j/main/classes/core/src/com/ibm/icu/impl/Normalizer2Impl.java b/icu4j/main/classes/core/src/com/ibm/icu/impl/Normalizer2Impl.java index ea6c2041193..38f24dc04a9 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/impl/Normalizer2Impl.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/impl/Normalizer2Impl.java @@ -25,7 +25,7 @@ import com.ibm.icu.util.VersionInfo; * Low-level implementation of the Unicode Normalization Algorithm. * For the data structure and details see the documentation at the end of * C++ normalizer2impl.h and in the design doc at - * http://site.icu-project.org/design/normalization/custom + * https://icu.unicode.org/design/normalization/custom */ public final class Normalizer2Impl { public static final class Hangul { diff --git a/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/CombinedCurrencyMatcher.java b/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/CombinedCurrencyMatcher.java index 6bba99c4dc9..06cc0790a3a 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/CombinedCurrencyMatcher.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/CombinedCurrencyMatcher.java @@ -74,7 +74,7 @@ public class CombinedCurrencyMatcher implements NumberParseMatcher { // TODO: Figure out how to make this faster and re-enable. // Computing the "lead code points" set for fastpathing is too slow to use in production. - // See http://bugs.icu-project.org/trac/ticket/13584 + // See https://unicode-org.atlassian.net/browse/ICU-13584 // // Compute the full set of characters that could be the first in a currency to allow for // // efficient smoke test. // leadCodePoints = new UnicodeSet(); diff --git a/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/DecimalMatcher.java b/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/DecimalMatcher.java index 095ff55b1eb..98dfe6e581f 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/DecimalMatcher.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/impl/number/parse/DecimalMatcher.java @@ -24,7 +24,7 @@ public class DecimalMatcher implements NumberParseMatcher { private final boolean groupingDisabled; // Fraction grouping parsing is disabled for now but could be enabled later. - // See http://bugs.icu-project.org/trac/ticket/10794 + // See https://unicode-org.atlassian.net/browse/ICU-10794 // private final boolean fractionGrouping; /** If true, do not accept numbers in the fraction */ @@ -101,7 +101,7 @@ public class DecimalMatcher implements NumberParseMatcher { grouping2 = grouper.getSecondary(); // Fraction grouping parsing is disabled for now but could be enabled later. - // See http://bugs.icu-project.org/trac/ticket/10794 + // See https://unicode-org.atlassian.net/browse/ICU-10794 // fractionGrouping = 0 != (parseFlags & ParsingUtils.PARSE_FLAG_FRACTION_GROUPING_ENABLED); } diff --git a/icu4j/main/classes/core/src/com/ibm/icu/lang/UCharacter.java b/icu4j/main/classes/core/src/com/ibm/icu/lang/UCharacter.java index 3243ce73f91..2bdfcf380b3 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/lang/UCharacter.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/lang/UCharacter.java @@ -86,7 +86,7 @@ import com.ibm.icu.util.VersionInfo; *

    * Further detail on differences can be determined using the program * + * "https://github.com/unicode-org/icu/blob/main/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/UCharacterCompare.java"> * com.ibm.icu.dev.test.lang.UCharacterCompare *

    * In addition to Java compatibility functions, which calculate derived properties, @@ -100,9 +100,9 @@ import com.ibm.icu.util.VersionInfo; * For more information see * "About the Unicode Character Database" * (http://www.unicode.org/ucd/) - * and the ICU + * and the ICU * User Guide chapter on Properties - * (http://www.icu-project.org/userguide/properties.html). + * (https://unicode-org.github.io/icu/userguide/strings/properties). *

    * There are also functions that provide easy migration from C/POSIX functions * like isblank(). Their use is generally discouraged because the C/POSIX @@ -4621,7 +4621,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * Full case mappings are applied by the case mapping functions * that take String parameters rather than code points (int). * See also the User Guide chapter on C/POSIX migration: - * http://www.icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param ch code point whose lowercase equivalent is to be retrieved * @return the lowercase equivalent code point @@ -4670,7 +4670,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * Full case mappings are applied by the case mapping functions * that take String parameters rather than code points (int). * See also the User Guide chapter on C/POSIX migration: - * http://www.icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param ch code point whose title case is to be retrieved * @return titlecase code point @@ -4693,7 +4693,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * Full case mappings are applied by the case mapping functions * that take String parameters rather than code points (int). * See also the User Guide chapter on C/POSIX migration: - * http://www.icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param ch code point whose uppercase is to be retrieved * @return uppercase code point @@ -5564,7 +5564,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * Full case mappings are applied by the case mapping functions * that take String parameters rather than code points (int). * See also the User Guide chapter on C/POSIX migration: - * http://www.icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param ch the character to be converted * @param defaultmapping Indicates whether the default mappings defined in @@ -5636,7 +5636,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * Full case mappings are applied by the case mapping functions * that take String parameters rather than code points (int). * See also the User Guide chapter on C/POSIX migration: - * http://www.icu-project.org/userguide/posix.html#case_mappings + * https://unicode-org.github.io/icu/userguide/icu/posix#case-mappings * * @param ch the character to be converted * @param options A bit set for special processing. Currently the recognised options diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java index c076dc1a261..6fd2dc76468 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/DecimalFormat.java @@ -1705,7 +1705,7 @@ public class DecimalFormat extends NumberFormat { * "*x######0" has a format width of 7 and a pad character of 'x'. * *

    Padding is currently counted in UTF-16 code units; see ticket #13034 for more information. + * href="https://unicode-org.atlassian.net/browse/ICU-13034">ticket #13034 for more information. * * @param width The minimum number of characters in the output. * @see #setPadCharacter diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/MeasureFormat.java b/icu4j/main/classes/core/src/com/ibm/icu/text/MeasureFormat.java index 91c27c1f944..96541001676 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/MeasureFormat.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/MeasureFormat.java @@ -366,7 +366,7 @@ public class MeasureFormat extends UFormat { return formatMeasures(new StringBuilder(), DontCareFieldPosition.INSTANCE, measures).toString(); } - // NOTE: For formatMeasureRange(), see http://bugs.icu-project.org/trac/ticket/12454 + // NOTE: For formatMeasureRange(), see https://unicode-org.atlassian.net/browse/ICU-12454 /** * Formats a single measure per unit. diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/RelativeDateTimeFormatter.java b/icu4j/main/classes/core/src/com/ibm/icu/text/RelativeDateTimeFormatter.java index 88ce0a477b9..d8e13eae2d3 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/RelativeDateTimeFormatter.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/RelativeDateTimeFormatter.java @@ -757,7 +757,7 @@ public final class RelativeDateTimeFormatter { // In the meantime do a quick bring-up by calling the old format method. When the // new CLDR data is available, update the data storage accordingly, rewrite this // to use it directly, and rewrite the old format method to call this new one; - // that is covered by http://bugs.icu-project.org/trac/ticket/12171. + // that is covered by https://unicode-org.atlassian.net/browse/ICU-12171. RelativeUnit relunit = RelativeUnit.SECONDS; switch (unit) { case YEAR: relunit = RelativeUnit.YEARS; break; @@ -911,7 +911,7 @@ public final class RelativeDateTimeFormatter { // In the meantime do a quick bring-up by calling the old format method. When the // new CLDR data is available, update the data storage accordingly, rewrite this // to use it directly, and rewrite the old format method to call this new one; - // that is covered by http://bugs.icu-project.org/trac/ticket/12171. + // that is covered by https://unicode-org.atlassian.net/browse/ICU-12171. boolean useNumeric = true; Direction direction = Direction.THIS; if (offset > -2.1 && offset < 2.1) { diff --git a/icu4j/main/classes/core/src/com/ibm/icu/text/UnicodeSet.java b/icu4j/main/classes/core/src/com/ibm/icu/text/UnicodeSet.java index d799b03aaa8..71deefe9716 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/text/UnicodeSet.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/text/UnicodeSet.java @@ -132,8 +132,8 @@ import com.ibm.icu.util.VersionInfo; * "[:Lu:]" and the Perl-like syntax "\p{Lu}" are recognized. For a * complete list of supported property patterns, see the User's Guide * for UnicodeSet at - * - * http://www.icu-project.org/userguide/unicodeSet.html. + * + * https://unicode-org.github.io/icu/userguide/strings/unicodeset. * Actual determination of property data is defined by the underlying * Unicode database as implemented by UCharacter. * diff --git a/icu4j/main/classes/core/src/com/ibm/icu/util/CodePointTrie.java b/icu4j/main/classes/core/src/com/ibm/icu/util/CodePointTrie.java index 3fd2e7011f2..478c5b660ea 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/util/CodePointTrie.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/util/CodePointTrie.java @@ -17,7 +17,7 @@ import com.ibm.icu.impl.Normalizer2Impl.UTF16Plus; /** * Immutable Unicode code point trie. * Fast, reasonably compact, map from Unicode code points (U+0000..U+10FFFF) to integer values. - * For details see http://site.icu-project.org/design/struct/utrie + * For details see https://icu.unicode.org/design/struct/utrie * *

    This class is not intended for public subclassing. * diff --git a/icu4j/main/classes/core/src/com/ibm/icu/util/MutableCodePointTrie.java b/icu4j/main/classes/core/src/com/ibm/icu/util/MutableCodePointTrie.java index 9151124daf9..d394308b149 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/util/MutableCodePointTrie.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/util/MutableCodePointTrie.java @@ -10,7 +10,7 @@ import java.util.Arrays; /** * Mutable Unicode code point trie. * Fast map from Unicode code points (U+0000..U+10FFFF) to 32-bit integer values. - * For details see http://site.icu-project.org/design/struct/utrie + * For details see https://icu.unicode.org/design/struct/utrie * *

    Setting values (especially ranges) and lookup is fast. * The mutable trie is only somewhat space-efficient. diff --git a/icu4j/main/classes/core/src/com/ibm/icu/util/UResourceBundle.java b/icu4j/main/classes/core/src/com/ibm/icu/util/UResourceBundle.java index 2cdb6d7b32f..0c33598a478 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/util/UResourceBundle.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/util/UResourceBundle.java @@ -40,9 +40,9 @@ import com.ibm.icu.impl.ResourceBundleWrapper; * *

    Resource bundles in ICU are currently defined using text files that conform to the * following BNF + * href="https://github.com/unicode-org/icu-docs/blob/main/design/bnf_rb.txt">BNF * definition. More on resource bundle concepts and syntax can be found in the Users Guide. + * href="https://unicode-org.github.io/icu/userguide/locale/resources">Users Guide. * *

    The packaging of ICU *.res files can be of two types * ICU4C: diff --git a/icu4j/main/classes/core/src/com/ibm/icu/util/UniversalTimeScale.java b/icu4j/main/classes/core/src/com/ibm/icu/util/UniversalTimeScale.java index d198de97284..e8f7fe27b29 100644 --- a/icu4j/main/classes/core/src/com/ibm/icu/util/UniversalTimeScale.java +++ b/icu4j/main/classes/core/src/com/ibm/icu/util/UniversalTimeScale.java @@ -46,7 +46,7 @@ import com.ibm.icu.math.BigDecimal; * datetime time scale. * *

    For more details and background, see the - * Universal Time Scale + * Universal Time Scale * chapter in the ICU User Guide. * * @stable ICU 3.2 diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/IndianTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/IndianTest.java index c3dcb7c2498..2ff6db6eba3 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/IndianTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/IndianTest.java @@ -252,7 +252,7 @@ public class IndianTest extends CalendarTestFmwk /** * Problem reported by Bruno Haible - * -- see ticket 8419 -- http://bugs.icu-project.org/trac/ticket/8419 + * -- see ticket 8419 -- https://unicode-org.atlassian.net/browse/ICU-8419 * Problem with months out of range 0-11 */ @Test diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/DateFormatTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/DateFormatTest.java index a11a3ffe9e7..6b9b71142c7 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/DateFormatTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/DateFormatTest.java @@ -4791,7 +4791,7 @@ public class DateFormatTest extends TestFmwk { @Test public void TestDateFormatLeniency() { - // For details see http://bugs.icu-project.org/trac/ticket/10261 + // For details see https://unicode-org.atlassian.net/browse/ICU-10261 class TestDateFormatLeniencyItem { public ULocale locale; @@ -4898,7 +4898,7 @@ public class DateFormatTest extends TestFmwk { @Test public void TestParseMultiPatternMatch() { - // For details see http://bugs.icu-project.org/trac/ticket/10336 + // For details see https://unicode-org.atlassian.net/browse/ICU-10336 class TestMultiPatternMatchItem { public boolean leniency; diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java index a20f6207b8f..1a43c8c7b91 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/MeasureUnitThreadTest.java @@ -64,7 +64,7 @@ public class MeasureUnitThreadTest extends TestFmwk { } // Race in formatMeasures with width NUMERIC: - // http://bugs.icu-project.org/trac/ticket/13606 + // https://unicode-org.atlassian.net/browse/ICU-13606 @Test public void NumericRaceTest() throws InterruptedException { NumericMeasureThread t1 = new NumericMeasureThread(new Measure[] { diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralFormatTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralFormatTest.java index 943cbff778b..5827eba88f8 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralFormatTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/PluralFormatTest.java @@ -324,7 +324,7 @@ public class PluralFormatTest extends TestFmwk { } } - /* Test for http://bugs.icu-project.org/trac/ticket/13151 */ + /* Test for https://unicode-org.atlassian.net/browse/ICU-13151 */ @Test public void TestFractionRounding() { NumberFormat nf = NumberFormat.getInstance(Locale.ENGLISH); diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/RBNFParseTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/RBNFParseTest.java index 2588ad4c080..8faeb56e26d 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/RBNFParseTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/RBNFParseTest.java @@ -129,7 +129,7 @@ public class RBNFParseTest extends TestFmwk { } @Test - @Ignore("http://bugs.icu-project.org/trac/ticket/13793") + @Ignore("https://unicode-org.atlassian.net/browse/ICU-13793") public void TestLenientParse() throws Exception { RuleBasedNumberFormat rbnf_en, rbnf_fr; diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java index 04c935da13d..4562ee9a270 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/UCharacterCaseTest.java @@ -776,7 +776,7 @@ public final class UCharacterCaseTest extends TestFmwk @Test public void TestGreekUpper() { - // http://bugs.icu-project.org/trac/ticket/5456 + // https://unicode-org.atlassian.net/browse/ICU-5456 assertGreekUpper("άδικος, κείμενο, ίριδα", "ΑΔΙΚΟΣ, ΚΕΙΜΕΝΟ, ΙΡΙΔΑ"); // https://bugzilla.mozilla.org/show_bug.cgi?id=307039 // https://bug307039.bmoattachments.org/attachment.cgi?id=194893 diff --git a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/rbbitst.txt b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/rbbitst.txt index 7c42b5e3988..7fb30c9e8e3 100644 --- a/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/rbbitst.txt +++ b/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/rbbitst.txt @@ -1326,7 +1326,8 @@ part •of •the •Luang •Prabang •Range •(ทิว•เขา•ห \u0E14\u0E49\u0E27\u0E22<200>\u0e2b\u0e25\u0e32\u0e22<200>\ \u0e1e\u0e22\u0e32\u0e07\u0e04\u0e4c<200> -# Test data originally from http://bugs.icu-project.org/trac/search?q=r30327 +# Test data originally from +# ICU-8576 svn r30327 = git commit 62d26cc5fe8cc66696143c44a43d664c2d7be100 •กู<200> •กิน<200>กุ้ง<200> •ปิ้่<200>งอ<200>ยู่<200>ใน<200>ถ้ำ<200> •\u0E01\u0E39<200>\u0020•\u0E01\u0E34\u0E19<200>\u0E01\u0E38\u0E49\u0E07<200>\ @@ -1464,7 +1465,8 @@ Bangkok)• # ########################################################################################## -# Test data originally from http://bugs.icu-project.org/trac/search?q=r30327 +# Test data originally from +# ICU-8576 svn r30327 = git commit 62d26cc5fe8cc66696143c44a43d664c2d7be100 # from the file testdata/wordsegments.txt diff --git a/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/TestFmwk.java b/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/TestFmwk.java index 7492ade5e75..349578bfa5d 100644 --- a/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/TestFmwk.java +++ b/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/TestFmwk.java @@ -194,7 +194,7 @@ abstract public class TestFmwk extends AbstractTestLog { return false; } // TODO: This method currently does not do very much. - // See http://bugs.icu-project.org/trac/ticket/12589 + // See https://unicode-org.atlassian.net/browse/ICU-12589 // TODO(junit) : what to do about this? final String path = ""; //getParams().stack.appendPath(descBuf); diff --git a/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/WriteCharts.java b/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/WriteCharts.java index 71023955af7..2cb05f3440b 100644 --- a/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/WriteCharts.java +++ b/icu4j/main/tests/translit/src/com/ibm/icu/dev/test/translit/WriteCharts.java @@ -299,7 +299,7 @@ public class WriteCharts { out.println("The samples are mechanically generated, and only include single characters"); out.println("from the source set. Thus it will not contain examples where the transliteration"); out.println("depends on the context around the character. For a more detailed -- and interactive -- example, see the"); - out.println("Transliteration Demo


    "); + out.println("Transliteration Demo


    "); // set up the headers int columnCount = 3; diff --git a/icu4j/maven/icu4j-charset/pom.xml b/icu4j/maven/icu4j-charset/pom.xml index 056fc067317..fc561809bfd 100644 --- a/icu4j/maven/icu4j-charset/pom.xml +++ b/icu4j/maven/icu4j-charset/pom.xml @@ -15,7 +15,7 @@ icu4j-charset is a supplemental library for icu4j, implementing Java Charset SPI. - http://icu-project.org/ + https://icu.unicode.org/ 2001 diff --git a/icu4j/maven/icu4j-localespi/pom.xml b/icu4j/maven/icu4j-localespi/pom.xml index 4fe3fba3aa1..bfce564654f 100644 --- a/icu4j/maven/icu4j-localespi/pom.xml +++ b/icu4j/maven/icu4j-localespi/pom.xml @@ -15,7 +15,7 @@ icu4j-localespi is a supplemental library for icu4j, implementing Java Locale SPI. - http://icu-project.org/ + https://icu.unicode.org/ 2001 diff --git a/icu4j/maven/icu4j/pom.xml b/icu4j/maven/icu4j/pom.xml index a01e271f69d..e09dfe5c60e 100644 --- a/icu4j/maven/icu4j/pom.xml +++ b/icu4j/maven/icu4j/pom.xml @@ -20,7 +20,7 @@ International Component for Unicode for Java (ICU4J) is a mature, widely used Java library providing Unicode and Globalization support - http://icu-project.org/ + https://icu.unicode.org/ 2001 diff --git a/icu4j/samples/build.xml b/icu4j/samples/build.xml index 7266629df8e..518c7e4da05 100644 --- a/icu4j/samples/build.xml +++ b/icu4j/samples/build.xml @@ -49,7 +49,7 @@ - + diff --git a/tools/release/java/pom.xml b/tools/release/java/pom.xml index 537ba92be5f..c3d8423867d 100644 --- a/tools/release/java/pom.xml +++ b/tools/release/java/pom.xml @@ -17,7 +17,7 @@ 1.0-SNAPSHOT icu4c-apireport - http://icu-project.org + https://icu.unicode.org/ UTF-8 diff --git a/tools/scripts/cpysearch/readme.txt b/tools/scripts/cpysearch/readme.txt index 055640e53c8..19179840303 100644 --- a/tools/scripts/cpysearch/readme.txt +++ b/tools/scripts/cpysearch/readme.txt @@ -15,4 +15,4 @@ cpyscan.pl searches for all files that don't have any copyright https://raw.githubusercontent.com/unicode-org/icu/main/.cpyskip.txt more docs on copyright scan at: - http://site.icu-project.org/processes/copyright-scan + https://icu.unicode.org/processes/copyright-scan diff --git a/tools/unicode/c/genprops/corepropsbuilder.cpp b/tools/unicode/c/genprops/corepropsbuilder.cpp index 76987b8aa5b..6c89b38b112 100644 --- a/tools/unicode/c/genprops/corepropsbuilder.cpp +++ b/tools/unicode/c/genprops/corepropsbuilder.cpp @@ -257,7 +257,7 @@ The encoding of numeric values was extended to handle such values. --- Changes in format version 7.2 --- ICU 57 adds 4 Emoji properties to vector word 2. -http://bugs.icu-project.org/trac/ticket/11802 +https://unicode-org.atlassian.net/browse/ICU-11802 http://www.unicode.org/reports/tr51/#Emoji_Properties --- Changes in format version 7.3 --- @@ -269,7 +269,7 @@ ICU 58 adds fraction-20 numeric values for new Unicode 9 Malayalam fraction char ICU 60 adds the Prepended_Concatenation_Mark property to vector word 1. ICU 60 adds the Emoji_Component property to vector word 2, for emoji 5. -http://bugs.icu-project.org/trac/ticket/13062 +https://unicode-org.atlassian.net/browse/ICU-13062 http://www.unicode.org/reports/tr51/#Emoji_Properties --- Changes in format version 7.5 --- diff --git a/tools/unicode/c/readme.txt b/tools/unicode/c/readme.txt index 95b516c5d7a..4e2276a5975 100644 --- a/tools/unicode/c/readme.txt +++ b/tools/unicode/c/readme.txt @@ -13,7 +13,7 @@ data files (text, source code and binary) for use in ICU. They are used during the Unicode beta period and after a Unicode release. For a log of actions and changes for recent Unicode version upgrades of ICU, see -http://bugs.icu-project.org/trac/browser/icu/trunk/source/data/unidata/changes.txt +https://github.com/unicode-org/icu/blob/main/icu4c/source/data/unidata/changes.txt Since the Unicode 5.2 upgrade, these tools have been moved out of the ICU source tree to here. They have not been fully tested and probably need some more work