• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1---
2title: New CLDR Developers
3---
4
5# New CLDR Developers
6
7Here is a quick overview of what you need to know to do development work on CLDR.
8
9First, you need to have accounts set up for you on:
10
111.  **Jira** — for getting and handling bug reports
122.  **GitHub** — for submitting code / data. (An account is not needed to clone (download) the repository)
133.  **cldr-dev** — for discussions of issues, questions, etc. — if you will be joining the TC.
144.  **Google Docs** — to view/edit the CLDR agenda and internal documents  if you will be joining the TC.
155.  **Google Sites** — only if you are going to edit this website
16
17If you don't get emails about these, contact Rick or other CLDR contacts. It is handy, though not necessary, for you to use a gmail account for the last two of these. Many people use a different account than their internal company email address; you just have to link them with https://accounts.google.com/SignUp.
18
19_Warning: some of these pages get stale. Ask questions on cldr-dev if you run into problems; you or the responder should also fix the stale page._
20
21Next, get your Eclipse environment set up properly.
22
231. http://cldr.unicode.org/development/eclipse-setup
242. http://cldr.unicode.org/development/running-survey-tool/eclipse
25
26
27**Run the CLDR tests to be sure they pass before beginning work**:
28
29Command line:
30
311.  Be at root of the cloned CLDR repository
322.  cd tools/java
333.  ant all
344.  cd ../cldr-unittest
355.  ant check
366.  If you see test errors, for instance TestBasic/TestDtdComparison fails, run only the failing test like so:
377.  **ant -Druncheck.arg="-v TestBasic/TestDtdComparison" check**
388.  The -v tells test script to show stack trace at the test failure for debugging.
399.  To get all parameters that could be passed at runcheck.arg, run
4010.  **ant -Druncheck.arg="-?" check**
41
42
43Via eclipse:
44
451.  Go [here](https://cldr.unicode.org/development/eclipse-setup%23TOC-Test)
46
47Once you are all set up, be sure to read the development process, for how to handle tickets, when you can't make changes, etc.
48
49at: http://cldr.unicode.org/development/development-process (TBD update for migration to Jira/Github)
50
51The table below points to documentation for various tasks.
52
53| Task to complete | Link to documentation   |
54|---|---|
55| moving new CLDR data over to ICU by editing ldml2icu_locale.txt | http://cldr.unicode.org/development/coding-cldr-tools/newldml2icuconverter |
56| performance work | http://cldr.unicode.org/development/perf-testing |
57| survey tool database work | http://cldr.unicode.org/development/running-survey-tool/cldr-properties/db |
58
59Other useful pages are under [CLDR Development Site](https://cldr.unicode.org/development/cldr-development-site); you can also use the search box.
60
61[UTS #35: Unicode Locale Data Markup Language (LDML)](https://www.unicode.org/reports/tr35/) is the specification of the XML format used for CLDR data, including the interpretation of the CLDR data.
62
63