Searched +full:cldr +full:- +full:apps (Results  1 – 25 of 50) sorted by relevance
12
| /external/cldr/tools/scripts/ansible/templates/ | 
| D | deploy-sh.j2 | 2 # Note: this is managed by Ansible, as deploy-sh.j23 # Don't modify this file unless its name is deploy-sh.j2
 6 WORKDIR=${TMPDIR-/tmp} # keep all random files here
 11     rm -f ${WORKDIR}/git-list.txt
 17     git fetch -p || exit 1
 18     git clean -f -d || echo 'warning: err on cleanup'
 21     echo    "cldr-trunk was at  :" $(git rev-parse --short HEAD)
 22     echo -n "you want to move to:"
 23     git rev-parse --short "${GITHUB_SHA}" || exit 1 # fail on err
 24     if [[ $(git rev-parse --short HEAD) = $(git rev-parse --short "${GITHUB_SHA}") ]];
 [all …]
 
 | 
| 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)...
 
 | 
| /external/cldr/tools/st-prom-exporter/ | 
| 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 …]
 
 | 
| /external/cldr/tools/scripts/ansible/ | 
| 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 …]
 
 | 
| D | nginx-playbook.yml | 1 - hosts: surveytool4     - vars/main.yml
 5     - local-vars/local.yml
 7     - { role: geerlingguy.nginx }
 9     - name: Setup reverse proxy
 11         path: /etc/nginx/sites-enabled/default
 13           # proxy /cldr-apps/ to openliberty, with generous timeouts
 17           location /cldr-apps/ {
 18             rewrite ^/(.+)\._[\da-f]+_\.(js|css)$ /$1.$2 break;
 20             proxy_pass http://localhost:9080/cldr-apps/;
 [all …]
 
 | 
| D | openliberty-playbook.yml | 1 - hosts: surveytool5     - vars/main.yml
 6     - vars/openliberty.yml
 7     - local-vars/local.yml
 9     - role: adoptopenjdk_role
 10     - role: openliberty  # local version of devopstoolbox.openliberty
 13     - name: "Disable openliberty@defaultServer"
 17     # this is to make sure openliberty@cldr can startup ok.
 18     - name: setup perms on cldr/
 25     - name: "Copy defaultServer to cldr if needed"
 [all …]
 
 | 
| D | setup-playbook.yml | 2 - import_playbook: openliberty-playbook.yml3 - import_playbook: server-playbook.yml
 4 - import_playbook: mysql-playbook.yml
 5 - import_playbook: nginx-playbook.yml
 6 - import_playbook: cldr-apps-playbook.yml
 7 - import_playbook: packages-playbook.yml
 8 - import_playbook: certbot-playbook.yml
 9 - import_playbook: hostname-playbook.yml
 10 - import_playbook: backup-db-playbook.yml
 11 # - import_playbook: ccc-playbook.yml
 
 | 
| /external/cldr/tools/ | 
| 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-DFS-2016</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/411079/versions
 [all …]
 
 | 
| /external/cldr/tools/cldr-code/src/main/resources/org/unicode/cldr/util/data/ | 
| 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 …]
 
 | 
| /external/cldr/ | 
| D | .gitignore | 3 tools/cldr-apps/4 tools/cldr-apps-watcher/
 
 | 
| D | README.md | 1 # Unicode CLDR Project3 Latest Release: [v42.0](https://cldr.unicode.org/index/downloads/cldr-42) published 2022-10-19
 8 …cldr-mvn](https://github.com/unicode-org/cldr/workflows/cldr-mvn/badge.svg)](https://github.com/un…
 9 …le Lint](https://github.com/unicode-org/cldr/workflows/Ansible%20Lint/badge.svg)](https://github.c…
 11 ### What is CLDR?
 12 The Unicode CLDR provides key building blocks for software to support the world's languages, with t…
 16 - [CLDR releases and downloads](https://cldr.unicode.org/index/downloads "CLDR Download Page"),
 19 - [Repository organization](https://cldr.unicode.org/index/downloads#Repository_Organization "CLDR …
 22 - [Building and running CLDR Tools](https://cldr.unicode.org/development/cldr-tools "CLDR Tools Pag…
 26 Most data submissions are done via the [CLDR Survey Tool](https://st.unicode.org/cldr-apps/), which…
 [all …]
 
 | 
| D | CONTRIBUTING.md | 1 # Contributing to CLDR5 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 …]
 
 | 
| D | vetur.config.js | 6       './tools/cldr-apps/js'
 | 
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/util/ | 
| D | CLDRURLS.java | 1 package org.unicode.cldr.util;4  * Generate URLs to parts of CLDR and the SurveyTool.
 5 …* You can change the urls used with for example,  -DCLDR_SURVEY_BASE=http://st.unicode.org/smokete…
 12      * Base URL for the CLDR repository
 14     public static final String CLDR_REPO_BASE = "https://github.com/unicode-org/cldr";
 20     public static final String DEFAULT_PATH = "/cldr-apps";
 25 …c static final String CLDR_NEWTICKET_URL = "https://cldr.unicode.org/index/bug-reports#TOC-Filing-…
 26     public static final String CLDR_REPO_ROOT = "https://github.com/unicode-org/cldr";
 27     public static final String CLDR_HOMEPAGE = "https://cldr.unicode.org";
 29     public static final String CLDR_UPDATINGDTD_URL = CLDR_HOMEPAGE + "/development/updating-dtds";
 [all …]
 
 | 
| D | TestShimUtils.java | 1 package org.unicode.cldr.util;6  * These are here so they can be shared between tools/java and tools/cldr-apps
 
 | 
| D | CLDRPaths.java | 1 package org.unicode.cldr.util;5 import org.unicode.cldr.tool.ToolConstants;
 31 …fault working directory for Eclipse is . = ${workspace_loc:cldr}, which is <CLDR>/tools/cldr-code/…
 32     // set the base directory with -Dcldrdata=<value>
 33     // if the main is different, use -Dcldrmain=<value>
 35     /** Maintained in GitHub, base directory for CLDR */
 52 …final String STAGING_DIRECTORY = CldrUtility.getPath(CLDRPaths.BASE_DIRECTORY, "../cldr-staging/");
 64 …DATA_DIR = CldrUtility.getPath(BASE_DIRECTORY, "tools/cldr-code/src/main/resources/org/unicode/cld…
 65 …DATA_DIR = CldrUtility.getPath(BASE_DIRECTORY, "tools/cldr-code/src/test/resources/org/unicode/cld…
 70 …public static final String APPS_EMOJI_DIRECTORY = CLDRPaths.BASE_DIRECTORY + "/tools/cldr-apps/src…
 [all …]
 
 | 
| D | VerifyCompactNumbers.java | 1 package org.unicode.cldr.util;15 import org.unicode.cldr.draft.FileUtilities;
 16 import org.unicode.cldr.test.BuildIcuCompactDecimalFormat;
 17 import org.unicode.cldr.test.BuildIcuCompactDecimalFormat.CurrencyStyle;
 18 import org.unicode.cldr.tool.ChartDelta;
 19 import org.unicode.cldr.tool.FormattedFileWriter;
 20 import org.unicode.cldr.tool.Option;
 21 import org.unicode.cldr.tool.Option.Options;
 22 import org.unicode.cldr.tool.ShowData;
 23 import org.unicode.cldr.tool.ShowPlurals;
 [all …]
 
 | 
| /external/cldr/tools/cldr-code/src/test/java/org/unicode/cldr/unittest/ | 
| 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
 29 import org.unicode.cldr.test.SubmissionLocales;
 30 import org.unicode.cldr.tool.ConvertLanguageData.InverseComparator;
 31 import org.unicode.cldr.util.CLDRConfig;
 32 import org.unicode.cldr.util.CLDRFile;
 33 import org.unicode.cldr.util.CLDRLocale;
 [all …]
 
 | 
| /external/python/google-api-python-client/googleapiclient/discovery_cache/documents/ | 
| 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 …]
 
 | 
| 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 …]
 
 | 
| /external/python/google-api-python-client/docs/dyn/ | 
| 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 …]
 
 | 
| 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 …]
 
 | 
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/tool/ | 
| D | GenerateComparison.java | 1 package org.unicode.cldr.tool;11 import org.unicode.cldr.draft.FileUtilities;
 12 import org.unicode.cldr.util.CLDRFile;
 13 import org.unicode.cldr.util.CLDRFile.Status;
 14 import org.unicode.cldr.util.CLDRPaths;
 15 import org.unicode.cldr.util.CldrUtility;
 16 import org.unicode.cldr.util.Counter;
 17 import org.unicode.cldr.util.EscapingUtilities;
 18 import org.unicode.cldr.util.Factory;
 19 import org.unicode.cldr.util.PathUtilities;
 [all …]
 
 | 
| /external/cldr/tools/cldr-code/src/main/java/org/unicode/cldr/test/ | 
| D | ConsoleCheckCLDR.java | 1 package org.unicode.cldr.test;23 import org.unicode.cldr.draft.FileUtilities;
 24 import org.unicode.cldr.test.CheckCLDR.CheckStatus;
 25 import org.unicode.cldr.test.CheckCLDR.CheckStatus.Subtype;
 26 import org.unicode.cldr.test.CheckCLDR.CompoundCheckCLDR;
 27 import org.unicode.cldr.test.CheckCLDR.FormatDemo;
 28 import org.unicode.cldr.test.CheckCLDR.Options;
 29 import org.unicode.cldr.test.CheckCLDR.Phase;
 30 import org.unicode.cldr.test.CheckCLDR.SimpleDemo;
 31 import org.unicode.cldr.tool.Option;
 [all …]
 
 | 
        12