| 43 | * Everywhere you can use wiki markup (on the wiki pages, roadmap descriptions, |
| 44 | etc.) you may embed a macro which shows a ticket statistics graph. Full |
| 45 | information about the macro is available at [http://trac-hacks.org/wiki/TicketStatsMacro]. |
| 46 | Briefly, the macro syntax is: |
| 47 | {{{ |
| 48 | [[TicketStats( height=250,daterange=12m,res_days=30)]] |
| 49 | }}} |
| 50 | which gives this result: [[TicketStats( height=250,daterange=12m,res_days=30)]] |
| 51 | |
| 72 | To check out a repository with a command-line svn client, see this example for the ''hybi'' WG: |
| 73 | |
| 74 | {{{ |
| 75 | work/ $ svn co --username=henrik@levkowetz.com http://svn.tools.ietf.org/svn/wg/hybi/ |
| 76 | work/ $ cd hybi/ |
| 77 | hybi/ $ |
| 78 | }}} |
| 79 | |
| 80 | SVN also lets you check out parts of the repository tree, but for more info on |
| 81 | that, please see the documentation on http://subversion.apache.org/. |
| 82 | |
| 83 | To add a document to the repository, place the document in your SVN working folder, |
| 84 | tell SVN it should be added, and when ready, commit it to the repository: |
| 85 | {{{ |
| 86 | hybi/ $ svn add draft-foo-bar-baz.txt |
| 87 | hybi/ $ #... |
| 88 | hybi/ $ svn commit draft-foo-bar-baz.txt -m "Commit message ..." |
| 89 | hybi/ $ |
| 90 | }}} |
| 91 | |