/aosp_15_r20/external/cldr/tools/scripts/ansible/ |
H A D | README.md | 16 - Install Ansible <https://ansible.com> 17 - Install some prereqs: 20 ansible-galaxy install -r requirements.yml 23 - Make sure you can `ssh` into all of the needed systems. For example, 24 `ssh cldr-ref.unicode.org` should succeed without needing a password. 26 - You should be able to run `ansible all -m ping` and get something back 30 cldr-ref.unicode.org | SUCCESS => { 41 - Install python3. Make sure `python --version` 42 or `python3 --version` returns "Python 3…" 44 - TODO: these shouldn't be needed, but they are. Here's the entire [all …]
|
H A D | openliberty-playbook.yml | 1 - hosts: surveytool 5 - vars/main.yml 6 - vars/openliberty.yml 7 - local-vars/local.yml 9 - role: openliberty # local version of devopstoolbox.openliberty 11 - name: "Install Java" 14 - openjdk-11-jdk-headless # needed for openliberty 16 - name: "Disable openliberty@defaultServer" 20 # this is to make sure openliberty@cldr can startup ok. 21 - name: setup perms on cldr/ [all …]
|
H A D | nginx-playbook.yml | 1 - hosts: surveytool 4 - vars/main.yml 5 - local-vars/local.yml 7 - { role: geerlingguy.nginx } 9 - name: Setup stapler.conf 11 src: templates/nginx-stapler.conf 17 - name: Setup reverse proxy 19 path: /etc/nginx/sites-enabled/default 21 # proxy /cldr-apps/ to openliberty, with generous timeouts 25 location /cldr-apps/ { [all …]
|
/aosp_15_r20/external/cldr/tools/scripts/ansible/templates/ |
H A D | deploy-sh.j2 | 2 # Note: this is managed by Ansible, as deploy-sh.j2 3 # Don't modify this file unless its name is deploy-sh.j2 4 if [[ ${1} = "--repo" ]]; 7 GITHUB_REPO=$(echo -n "${1}" | tr -c 'A-Za-z0-9_.-/' '-') 11 GITHUB_REPO=unicode-org/cldr 17 WORKDIR=${TMPDIR-/tmp} # keep all random files here 22 git config --global advice.detachedHead false 23 rm -f ${WORKDIR}/git-list.txt 34 git fetch -p "${GIT_PREFETCH}" "${GITHUB_SHA}" || exit 1 35 git clean -f -d || echo 'warning: err on cleanup' [all …]
|
H A D | index.html | 4 <meta charset='utf-8'> 5 <meta http-equiv="refresh" content="0; url=./cldr-apps/v" /> 6 <title>CLDR Survey Tool</title> 9 Redirecting to CLDR Survey Tool (cldr-apps/v)...
|
/aosp_15_r20/external/cldr/tools/st-prom-exporter/ |
H A D | README.md | 8 As part of [https://unicode-org.atlassian.net/browse/CLDR-14768](CLDR-14768), 11 `/cldr-apps/metrics`. 22 "cldr-smoke.unicode.org": "https://cldr-smoke.unicode.org/cldr-apps/SurveyAjax?what=status", 23 "st.unicode.org": "https://st.unicode.org/cldr-apps/SurveyAjax?what=status" 31 Now, the exporter is listening on port 9099 and re-exporting ST metrics as Prometheus metrics. 37 `/lib/systemd/system/prometheus-cldr-surveytool-exporter.service` 43 Description=Prometheus exporter for CLDR SurveyTool 44 Documentation=https://github.com/unicode-org/cldr/tree/main/tools/st-prom-exporter 49 ExecStart=/usr/bin/node /usr/local/src/cldr-st-prom-exporter/tools/st-prom-exporter/index.js $ARGS 50 ExecReload=/bin/kill -HUP $MAINPID [all …]
|
/aosp_15_r20/external/cldr/tools/ |
H A D | pom.xml | 1 <?xml version="1.0" encoding="UTF-8"?> 4 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 5 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 8 <groupId>org.unicode.cldr</groupId> 9 <artifactId>cldr-all</artifactId> 11 <name>CLDR All Tools</name> 15 <name>Unicode-3.0</name> 19 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 20 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> 23 <!-- Note: see https://github.com/unicode-org/icu/packages/1954682/versions [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ |
H A D | CLDRURLS.java | 1 package org.unicode.cldr.util; 4 * Generate URLs to parts of CLDR and the SurveyTool. You can change the urls used with for example, 5 * -DCLDR_SURVEY_BASE=http://st.unicode.org/smoketest 10 public static final String CLDR_SCHEMA_BASE = "https://schemas.unicode.org/cldr"; 12 /** Base URL for the CLDR repository */ 13 public static final String CLDR_REPO_BASE = "https://github.com/unicode-org/cldr"; 19 public static final String DEFAULT_PATH = "/cldr-apps"; 23 "https://cldr.unicode.org/index/bug-reports#TOC-Filing-a-Ticket"; 25 public static final String CLDR_REPO_ROOT = "https://github.com/unicode-org/cldr"; 26 public static final String CLDR_HOMEPAGE = "https://cldr.unicode.org"; [all …]
|
H A D | CldrUtility.java | 3 * Copyright (c) 2002-2013, International Business Machines 9 package org.unicode.cldr.util; 64 import org.unicode.cldr.draft.FileUtilities; 65 import org.unicode.cldr.tool.Chart; 69 * These need to be consistent with "CLDR-Code-Git-Commit" in tools/cldr-code/pom.xml 71 * <p>If and when "CLDR-Apps-Git-Commit" in tools/cldr-apps/pom.xml becomes usable for the 72 * cldr-apps war file, we may add APPS_SLUG = "CLDR-Apps" here, and in some contexts use 75 public static final String CODE_SLUG = "CLDR-Code"; 77 public static final String GIT_COMMIT_SUFFIX = "-Git-Commit"; 105 public static final UnicodeSet DIGITS = new UnicodeSet("[0-9]").freeze(); [all …]
|
H A D | CLDRPaths.java | 1 package org.unicode.cldr.util; 7 import org.unicode.cldr.tool.ToolConstants; 32 * default working directory for Eclipse is . = ${workspace_loc:cldr}, which is 33 * <CLDR>/tools/cldr-code/ 35 // set the base directory with -Dcldrdata=<value> 36 // if the main is different, use -Dcldrmain=<value> 38 /** Maintained in GitHub, base directory for CLDR */ 74 CldrUtility.getPath(CLDRPaths.BASE_DIRECTORY, "../cldr-staging/"); 94 "tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/births"); 98 "tools/cldr-code/src/test/resources/org/unicode/cldr/unittest/data"); [all …]
|
H A D | DateTimeFormats.java | 1 package org.unicode.cldr.util; 35 import org.unicode.cldr.draft.FileUtilities; 36 import org.unicode.cldr.tool.ChartDelta; 37 import org.unicode.cldr.tool.FormattedFileWriter; 38 import org.unicode.cldr.tool.Option; 39 import org.unicode.cldr.tool.Option.Options; 40 import org.unicode.cldr.tool.ShowData; 41 import org.unicode.cldr.util.ICUServiceBuilder.Context; 42 import org.unicode.cldr.util.ICUServiceBuilder.Width; 43 import org.unicode.cldr.util.SupplementalDataInfo.PluralInfo; [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/ |
H A D | TestUtilities.java | 1 package org.unicode.cldr.unittest; 3 * TODO: rename this file and class to avoid confusion with org.unicode.cldr.util TestUtilities.java 5 * Error: (TestUtilities.java:1154) : 8 value: expected "old-value", got null 7 * cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/TestUtilities.java 8 * cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/TestUtilities.java 38 import org.unicode.cldr.test.SubmissionLocales; 39 import org.unicode.cldr.tool.ConvertLanguageData.InverseComparator; 40 import org.unicode.cldr.util.*; 41 import org.unicode.cldr.util.PathHeader.PageId; 42 import org.unicode.cldr.util.SupplementalDataInfo.PluralInfo.Count; [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/ |
H A D | st_sysmsg.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 4 <meta http-equiv="Content-Language" content="en-us"> 5 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 7 href="https://unicode.org/cldr/apps/surveytool.css"> 11 <!-- 13 PADDING-RIGHT: 2px; 14 PADDING-LEFT: 2px; 15 PADDING-BOTTOM: 4px; 16 PADDING-TOP: 4px 21 TEXT-ALIGN: left [all …]
|
H A D | test_help_messages.html | 1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> 7 <meta http-equiv="Content-Language" content="en-us"> 11 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 16 href="https://unicode.org/cldr/apps/surveytool.css"> 24 <!-- 26 PADDING-RIGHT: 2px; 27 PADDING-LEFT: 2px; 28 PADDING-BOTTOM: 4px; 29 PADDING-TOP: 4px 34 TEXT-ALIGN: left [all …]
|
/aosp_15_r20/external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ |
D | admob.v1beta.json | 23 "x16": "http://www.google.com/images/icons/product/search-16.gif", 24 "x32": "http://www.google.com/images/icons/product/search-32.gif" 60 "Responses with Content-Type of application/json", 61 "Media download with context-dependent Content-Type", 62 "Responses with Content-Type of application/x-protobuf" 94 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 123 …ion": "Resource name of the publisher account to retrieve. Example: accounts/pub-9876543210987654", 194 …quired. Resource name of the account to list ad units for. Example: accounts/pub-9876543210987654", 212 "apps": { object 215 "description": "List the apps under the specified AdMob account.", [all …]
|
D | admob.v1.json | 23 "x16": "http://www.google.com/images/icons/product/search-16.gif", 24 "x32": "http://www.google.com/images/icons/product/search-32.gif" 60 "Responses with Content-Type of application/json", 61 "Media download with context-dependent Content-Type", 62 "Responses with Content-Type of application/x-protobuf" 94 …"description": "Available to use for quota purposes for server-side applications. Can be any arbit… 123 …ion": "Resource name of the publisher account to retrieve. Example: accounts/pub-9876543210987654", 194 …quired. Resource name of the account to list ad units for. Example: accounts/pub-9876543210987654", 212 "apps": { object 215 "description": "List the apps under the specified AdMob account.", [all …]
|
/aosp_15_r20/external/python/google-api-python-client/docs/dyn/ |
D | cloudsearch_v1.query.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | admob_v1.accounts.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
D | admob_v1beta.accounts.html | 8 font-weight: inherit; 9 font-style: inherit; 10 font-size: 100%; 11 font-family: inherit; 12 vertical-align: baseline; 16 font-size: 13px; 21 font-size: 26px; 22 margin-bottom: 1em; 26 font-size: 24px; 27 margin-bottom: 1em; [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/ |
H A D | ConsoleCheckCLDR.java | 1 package org.unicode.cldr.test; 29 import org.unicode.cldr.draft.FileUtilities; 30 import org.unicode.cldr.test.CheckCLDR.CheckStatus; 31 import org.unicode.cldr.test.CheckCLDR.CheckStatus.Subtype; 32 import org.unicode.cldr.test.CheckCLDR.CompoundCheckCLDR; 33 import org.unicode.cldr.test.CheckCLDR.FormatDemo; 34 import org.unicode.cldr.test.CheckCLDR.Options; 35 import org.unicode.cldr.test.CheckCLDR.Phase; 36 import org.unicode.cldr.test.CheckCLDR.SimpleDemo; 37 import org.unicode.cldr.test.TestCache.TestResultBundle; [all …]
|
/aosp_15_r20/external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ |
H A D | GenerateComparison.java | 1 package org.unicode.cldr.tool; 15 import org.unicode.cldr.draft.FileUtilities; 16 import org.unicode.cldr.util.CLDRFile; 17 import org.unicode.cldr.util.CLDRFile.Status; 18 import org.unicode.cldr.util.CLDRPaths; 19 import org.unicode.cldr.util.CldrUtility; 20 import org.unicode.cldr.util.Counter; 21 import org.unicode.cldr.util.EscapingUtilities; 22 import org.unicode.cldr.util.Factory; 23 import org.unicode.cldr.util.PathUtilities; [all …]
|
/aosp_15_r20/external/cldr/ |
H A D | .gitignore | 3 tools/cldr-apps/ 4 tools/cldr-apps-watcher/
|
H A D | README.md | 1 # Unicode CLDR Project 3 For current CLDR release information, see [cldr.unicode.org](https://cldr.unicode.org/index/downloa… 6 …cldr-mvn](https://github.com/unicode-org/cldr/workflows/cldr-mvn/badge.svg)](https://github.com/un… 7 …le Lint](https://github.com/unicode-org/cldr/workflows/Ansible%20Lint/badge.svg)](https://github.c… 8 …o gh-pages](https://github.com/unicode-org/cldr/actions/workflows/gh-pages.yml/badge.svg)](https:/… 9 …thub.com/unicode-org/cldr/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/uni… 13 Update: 2024-04-15 15 <!-- [inapplicable lines are commented out.]--> 16 <!-- **Note:** CLDR 45 is in development and not recommended for use at this stage. --> 17 …--**Note:** This is the milestone 1 version of CLDR 45, intended for those wishing to do pre-rele… [all …]
|
H A D | CONTRIBUTING.md | 1 # Contributing to CLDR 5 The CLDR project consists of 3 aspects: 8 …- If you are not a native language speaker, but have evidence of CLDR data being incorrect, file a… 9 …- For data that is not collected in the [Survey Tool], such as [supplemental data][], file a [Jira… 11 …- For structural issues, note that many issues may be due to misunderstandings of the LDML spec. F… 12 … - File a [Jira][] ticket and provide evidence for the spec issues or to establish a new structure. 13 …- If your organization is not a [Unicode member][], consider becoming a member and work as a CLDR … 14 3. **CLDR internal tooling** such as adding new tests or fixing tooling that enable CLDR builds and… 15 - To contribute in internal tooling, [Contact][] us. 16 - See [Tools source][] and [Repository Organization][] [all …]
|
/aosp_15_r20/external/cldr/docs/dev/ |
H A D | generate-emoji-paths.md | 5 ----- 23 …ponents like hair styles) in LDML is updated to match what is in org.unicode.cldr.util.Annotations. 24 … 3. Make sure that org.unicode.tools.emoji.unittest.TestAll runs successfully, with -Demoji-beta. 28 * /emoji/docs/Public/emoji/14.0/emoji-test.txt<br> 30 * /cldr-code/src/main/resources/org/unicode/cldr/util/data/emoji/emoji-test.txt 39 2. Copy emoji-test.txt into org.unicode.cldr.util.data.emoji 41 4. Run org.unicode.tools.emoji.CopyImagesToCldr.java to add images to ... /cldr/tools/cldr-apps/sr… 44 * Update the collation/root.xml using unicode/draft/emoji/charts-VV/emoji-ordering-rules.txt 50 …1. May need to change org.unicode.cldr.util.Emoji.SPECIALS to have TestAnnotations pass. These ar… 58 ---- [all …]
|