~tigefa/tigefa/trac

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
.. charset=utf-8

Upgrade Instructions
====================


#. Instructions

    #. 1. Bring your server off-line
    #. 2. Update the Trac Code
    #. 3. Upgrade the Trac Environment
    #. 4. Update the Trac Documentation
    #. 5. Refresh static resources
    #. 6. Steps specific to a given Trac version

        #. Upgrading from Trac 1.0 to 1.2
        #. Upgrading from Trac 0.12 to Trac 1.0
        #. Upgrading from Trac 0.11 to Trac 0.12
        #. Upgrading from Trac 0.10 to Trac 0.11

    #. 7. Restart the Web Server

#. Known Issues

    #. Customized Templates
    #. ZipImportError
    #. Wiki Upgrade
    #. Trac database upgrade
    #. Parent dir

#. Related topics

    #. Upgrading Python

        #. Windows and Python 2.6

    #. Changing Database Backend
    #. Upgrading from older versions of Trac


Instructions
------------

Typically, there are seven steps involved in upgrading to a newer
version of Trac:


1. Bring your server off-line
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It is not a good idea to update a running server: the server processes
may have parts of the current packages cached in memory, and updating
the code will likely trigger `internal errors`_.

Although a database backup will be implicitly created by default when
upgrading the environment, it is always a good idea to perform a full
backup of the environment using the `hotcopy`_ command before
beginning.


2. Update the Trac Code
~~~~~~~~~~~~~~~~~~~~~~~

Get the new version as described in `TracInstall`_, or through your
operating system package manager.

If you already an earlier version of Trac installed via
`easy_install`, it might be easiest to also use `easy_install` to
upgrade your Trac installation:


::

    easy_install --upgrade Trac


You may also want to remove the pre-existing Trac code by deleting the
`trac` directory from the Python `lib/site-packages` directory, or
remove Trac `.egg` files from former versions. The location of the
site-packages directory depends on the operating system and the
location in which Python was installed. However, the following
locations are typical:


+ on Linux: `/usr/lib/python2.X/site-packages`
+ on Windows: `C:\Python2.X\lib\site-packages`
+ on MacOSX: `/Library/Python/2.X/site-packages`


You may also want to remove the directory in which your static
resources are `deployed`_. The exact location depends on your
platform. This cleanup is not mandatory, but makes it easier to
troubleshoot issues later on, as your installation is uncluttered by
code or templates from a previous release that is not used anymore. As
usual, make a backup before actually removing things.


3. Upgrade the Trac Environment
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

Environment upgrades are not necessary for minor version releases
unless otherwise noted.

After restarting, Trac should show the instances which need a manual
upgrade via the automated upgrade scripts to ease the pain. These
scripts are run via `trac-admin`_:


::

    trac-admin /path/to/projenv upgrade


This command will not have any effect if the environment is already
up-to-date.

Note that a backup of your database will be performed automatically
prior to the upgrade. The backup will be saved in the location
specified by `[trac]` `backup_dir`.


4. Update the Trac Documentation
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

By default, every `Trac environment`_ includes a copy of the Trac
documentation for the installed version. However, to keep the included
documentation in sync with the installed version of Trac, use the
following `trac-admin`_ command to upgrade the documentation:


::

    trac-admin /path/to/projenv wiki upgrade


Note that this procedure will leave your `WikiStart` page intact.


5. Refresh static resources
~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you have configured your web server to serve static resources
directly (accessed using the `/chrome/` URL) then you will need to
refresh them using the `same command`_:


::

    trac-admin /path/to/env deploy /deploy/path


This will extract static resources and CGI scripts ( `trac.wsgi`, etc)
from the new Trac version and plugins into `/deploy/path`.

Note: Some web browsers (IE, Opera) cache CSS and Javascript files, so
you should instruct your users to manually erase the contents of their
browser's cache. A forced refreshed (SHIFT + <F5>) should be enough.


6. Steps specific to a given Trac version
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~


Upgrading from Trac 1.0 to 1.2
``````````````````````````````


Python 2.5 no longer supported
++++++++++++++++++++++++++++++

Upgrade Python to at least 2.6 or 2.7, but not 3.0 or greater.


Obsolete Plugins
++++++++++++++++

Trac has added functionality equivalent to the following plugins:


+ `​AdminEnumListPlugin`_
+ `​DateFieldPlugin`_: see the time `custom field type`_
+ `​GroupBasedRedirectionPlugin`_: the default handler can set as a
  user preference.
+ `​LinenoMacro`_: see `WikiProcessors#AvailableProcessors`_
+ `​NeverNotifyUpdaterPlugin`_: see `notification subscribers`_
+ `​QueryUiAssistPlugin`_: see `TracQuery#Filters`_.
+ `​TicketCreationStatusPlugin`_: see `#NewWorkflowActions`_


The plugins should be removed when upgrading Trac to 1.2.


New workflow actions
++++++++++++++++++++

The ticket creation step is controlled with a workflow action. The
default workflow has `create` and `create_and_assign` actions. The
`create` action will always be added when upgrading the database. The
`create_and_assign` action will be added if the workflow has an
<em>assigned</em> state. You may want to edit your workflow after
upgrading the database to customize the actions available on the
<em>New Ticket</em> page.


New permissions policy for read-only wiki pages
+++++++++++++++++++++++++++++++++++++++++++++++

Since 1.1.2 the read-only attribute of wiki pages is enabled and
enforced only when `ReadonlyWikiPolicy` is in the list of active
permission policies. If `[trac] permission_policy` has the default
value `DefaultPermissionPolicy, LegacyAttachmentPolicy`, then
`ReadonlyWikiPolicy` should be automatically appended to the list when
upgrading the environment:


::

    [trac]
    permission_policies = ReadonlyWikiPolicy,
     DefaultPermissionPolicy,
     LegacyAttachmentPolicy


If other permission policies are enabled, `trac.ini` will need to have
`ReadonlyWikiPolicy` appended to the list of active
`permission_policies`. See
`TracFineGrainedPermissions#ReadonlyWikiPolicy`_ for additional
details on the proper ordering.


Upgrading from Trac 0.12 to Trac 1.0
````````````````````````````````````


Python 2.4 no longer supported
++++++++++++++++++++++++++++++

Upgrade Python to at least 2.5, but not 3.0.


Obsolete Plugins
++++++++++++++++

Trac has added functionality equivalent to the following plugins:


+ `​BatchModifyPlugin`_
+`​GitPlugin`_
+ `​OverrideEditPlugin`_


The plugins should be removed when upgrading Trac to 1.0.


Subversion components not enabled by default for new installations
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

The Trac components for Subversion support are no longer enabled by
default. To enable the svn support, you need to make sure the
`tracopt.versioncontrol.svn` components are enabled, for example by
setting the following in the `TracIni`_:


::

    [components]
    tracopt.versioncontrol.svn.* = enabled


The upgrade procedure should take care of this and change the
`TracIni`_ appropriately, unless you already had the svn components
explicitly disabled.


Attachments migrated to new location
++++++++++++++++++++++++++++++++++++

Another step in the automatic upgrade will change the way the
attachments are stored. Create a backup of the `attachments` directory
before upgrading. In case the `attachments` directory contains some
files which are <em>not</em> attachments, the last step of the
migration to the new layout will fail: the deletion of the now unused
`attachments` directory can't be done if there are still files and
folders in it. You may ignore this error, but better to move them
elsewhere and remove the `attachments` directory manually. The
attachments themselves are now all located in your environment below
the `files/attachments` directory.


Behavior of `[ticket] default_owner` changed
++++++++++++++++++++++++++++++++++++++++++++

Prior to 1.0, the owner field of new tickets always defaulted to
`[ticket] default_owner` when the value was not empty. If the value
was empty, the owner field defaulted to to the Component's owner. In
1.0 and later, the `default_owner` must be set to `< default >` to
make new tickets default to the Component's owner. This change allows
the `default_owner` to be set to an empty value if no default owner is
desired.


Upgrading from Trac 0.11 to Trac 0.12
`````````````````````````````````````


Python 2.3 no longer supported
++++++++++++++++++++++++++++++

The minimum supported version of Python is now 2.4.


SQLite v3.x required
++++++++++++++++++++

SQLite v2.x is no longer supported. If you still use a Trac database
of this format, you'll need to convert it to SQLite v3.x first. See
`​PySqlite#UpgradingSQLitefrom2.xto3.x`_ for details.


`​PySqlite`_ 2 required
+++++++++++++++++++++++

`​PySqlite`_ 1.1.x is no longer supported. Please install 2.5.5 or
later if possible, see `Trac database upgrade`_ below.


Obsolete Plugins
++++++++++++++++

Trac has added functionality equivalent to the following plugins:


+ `​AutoQueryPlugin`_
+`​AdminConsoleProviderPatch`_
+ `​AnchorMacro`_: see `WikiFormatting#SettingAnchors`_
+ `​TicketChangePlugin`_: see `TICKET_EDIT_COMMENT permission`_
+ `​TicketDeletePlugin`_: see `tracopt.ticket.deleter`
+ `​SubversionLocationPlugin`_: see
  `TracRepositoryAdmin#Repositories`_
+ `​WikiCreoleRendererPlugin`_: see `​WikiCreole`_
+ `​RepoRevisionSyntaxPlugin`_ (added in 0.12.1)


The plugins should be removed when upgrading Trac to 0.12.


Multiple Repository Support
+++++++++++++++++++++++++++

The latest version includes support for multiple repositories. If you
plan to add more repositories to your Trac instance, please refer to
`TracRepositoryAdmin#Migration`_.

This may be of interest to users with only one repository, since there
is now a way to avoid the potentially costly resync check at every
request.


Resynchronize the Trac Environment Against the Source Code Repository
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Each `Trac environment`_ must be resynchronized against the source
code repository in order to avoid errors such as "`​No changeset ???
in the repository`_" while browsing the source through the Trac
interface:


::

    trac-admin /path/to/projenv repository resync '*'


Improved repository synchronization
+++++++++++++++++++++++++++++++++++

In addition to supporting multiple repositories, there is now a more
efficient method for synchronizing Trac and your repositories.

While you can keep the same synchronization as in 0.11 adding the
post-commit hook as outlined in `TracRepositoryAdmin#Synchronization`_
and `TracRepositoryAdmin#ExplicitSync`_ will allow more efficient
synchronization and is more or less required for multiple
repositories.

Note that if you were using the `trac-post-commit-hook`, <em>you're
strongly advised to upgrade it</em> to the new hook documented in the
above references and `here`_, as the old hook will not work with
anything else than the default repository and even for this case, it
won't trigger the appropriate notifications.


Authz permission checking
+++++++++++++++++++++++++

The authz permission checking has been migrated to a fine-grained
permission policy. If you use authz permissions (aka `[trac]
authz_file` and `authz_module_name`), you must add `AuthzSourcePolicy`
in front of your permission policies in `[trac] permission_policies`.
You must also remove `BROWSER_VIEW`, `CHANGESET_VIEW`, `FILE_VIEW` and
`LOG_VIEW` from your global permissions with `trac-admin $ENV
permission remove` or the "Permissions" admin panel.


Microsecond timestamps
++++++++++++++++++++++

All timestamps in database tables, except the `session` table, have
been changed from "seconds since epoch" to "microseconds since epoch"
values. This change should be transparent to most users, except for
custom reports. If any of your reports use date/time columns in
calculations (e.g. to pass them to `datetime()`), you must divide the
values retrieved from the database by 1'000'000. Similarly, if a
report provides a calculated value to be displayed as a date/time
(i.e. with a column named "time", "datetime", "changetime", "date",
"created" or "modified"), you must provide a microsecond timestamp,
that is, multiply your previous calculation with 1'000'000.


Upgrading from Trac 0.10 to Trac 0.11
`````````````````````````````````````


Site Templates and Styles
+++++++++++++++++++++++++

The templating engine has changed in 0.11 to Genshi, please look at
`TracInterfaceCustomization`_ for more information.

If you are using custom CSS or modified templates in the `templates`
directory of the `TracEnvironment`_, you will need to convert them to
the Genshi way of doing things. To continue to use your style sheet,
follow the instructions at
`TracInterfaceCustomization#SiteAppearance`_.


Trac Macros, Plugins
++++++++++++++++++++

The Trac macros will need to be adapted, as the old-style wiki-macros
are not supported anymore due to the drop of `​ClearSilver`_ and the
HDF. They need to be converted to the new-style macros, see
`WikiMacros`_. When they are converted to the new style, they need to
be placed into the plugins directory instead and not wiki-macros,
which is no longer scanned for macros or plugins.


For FCGI/WSGI/CGI users
+++++++++++++++++++++++

For those who run Trac under the CGI environment, run this command in
order to obtain the trac.*gi file:


::

    trac-admin /path/to/env deploy /deploy/directory/path


This will create a deploy directory with the following two
subdirectories: `cgi-bin` and `htdocs`. Then update your Apache
configuration file `httpd.conf` with this new `trac.cgi` location and
`htdocs` location.


Web Admin plugin integrated
+++++++++++++++++++++++++++

If you had the `​WebAdmin`_ plugin installed, you can uninstall it as
it is part of the Trac code base since 0.11.


New Default Configurable Workflow
+++++++++++++++++++++++++++++++++

When you run `trac-admin <env> upgrade`, your `trac.ini` will be
modified to include a `[ticket-workflow]` section. The workflow
configured in this case is the original workflow, so that ticket
actions will behave like they did in 0.10:
Enable JavaScript to display the workflow graph.
There are some significant caveats in this, such as accepting a ticket
sets it to 'assigned' state, and assigning a ticket sets it to 'new'
state. So you will probably want to migrate to "basic" workflow;
`​contrib/workflow/migrate_original_to_basic.py`_ may be helpful. See
`TracWorkflow`_ for a detailed description of the new basic workflow.


7. Restart the Web Server
~~~~~~~~~~~~~~~~~~~~~~~~~

If you are not running `CGI`_, reload the new Trac code by restarting
your web server.


Known Issues
------------


Customized Templates
~~~~~~~~~~~~~~~~~~~~

Trac supports customization of its templates by placing copies of the
templates in the `<env>/templates` folder of your `environment`_ or in
a common location specified in the ` [inherit] templates_dir`_
configuration setting. If you choose to do so, be aware that you will
need to repeat your changes manually on a copy of the new templates
when you upgrade to a new release of Trac (even a minor one), as the
templates will likely evolve. So keep a diff around.

The preferred way to perform `TracInterfaceCustomization`_ is a custom
plugin doing client-side `JavaScript?`_ transformation of the
generated output, as this is more robust in case of changes: we
usually won't modify element `id`s or change CSS `class`es, and if we
have to do so, this will be documented in the `​TracDev/ApiChanges`_
pages.


ZipImportError
~~~~~~~~~~~~~~

Due to internal caching of zipped packages, whenever the content of
the packages change on disk, the in-memory zip index will no longer
match and you'll get irrecoverable ZipImportError errors. Better
anticipate and bring your server down for maintenance before
upgrading. See `​#7014`_ for details.


Wiki Upgrade
~~~~~~~~~~~~

`trac-admin` will not delete or remove default wiki pages that were
present in a previous version but are no longer in the new version.


Trac database upgrade
~~~~~~~~~~~~~~~~~~~~~

A known issue in some versions of `​PySqlite`_ (2.5.2-2.5.4) prevents
the trac-admin upgrade script from successfully upgrading the database
format. It is advised to use either a newer or older version of the
sqlite python bindings to avoid this error. For more details see
ticket `​#9434`_.


Parent dir
~~~~~~~~~~

If you use a Trac parent env configuration and one of the plugins in
one child does not work, none of the children will work.


Related topics
--------------


Upgrading Python
~~~~~~~~~~~~~~~~

Upgrading Python to a newer version will require reinstallation of
Python packages: Trac itself of course, but also `​easy_install`_, if
you've been using that. If you are using Subversion, you'll also need
to upgrade the Python bindings for svn.


Windows and Python 2.6
``````````````````````

If you've been using CollabNet's Subversion package, you may need to
uninstall that in favor of `​Alagazam`_, which has the Python bindings
readily available, see `​TracSubversion`_. That package works without
tweaking.


Changing Database Backend
~~~~~~~~~~~~~~~~~~~~~~~~~

The `​TracMigratePlugin`_ on `​trac-hacks.org`_ has been written to
assist in migrating between SQLite, MySQL and PostgreSQL databases.


Upgrading from older versions of Trac
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

For upgrades from versions older than Trac 0.10, refer first to
`​wiki:0.10/TracUpgrade#SpecificVersions`_.


See also: `TracGuide`_, `TracInstall`_

.. _ [inherit] templates_dir: http://trac.edgewall.org/wiki/TracIni#GlobalConfiguration
.. _#7014: http://trac.edgewall.org/intertrac/%237014
.. _#9434: http://trac.edgewall.org/intertrac/%239434
.. _#NewWorkflowActions: http://trac.edgewall.org/wiki/TracUpgrade#NewWorkflowActions
.. _AdminConsoleProviderPatch: https://trac-hacks.org/wiki/AdminConsoleProviderPatch
.. _AdminEnumListPlugin: https://trac-hacks.org/wiki/AdminEnumListPlugin
.. _Alagazam: http://alagazam.net/
.. _AnchorMacro: https://trac-hacks.org/wiki/AnchorMacro
.. _AutoQueryPlugin: https://trac-hacks.org/wiki/AutoQueryPlugin
.. _BatchModifyPlugin: https://trac-hacks.org/wiki/BatchModifyPlugin
.. _CGI: http://trac.edgewall.org/wiki/TracCgi
.. _ClearSilver: http://trac.edgewall.org/intertrac/ClearSilver
.. _contrib/workflow/migrate_original_to_basic.py: http://trac.edgewall.org/intertrac/source%3Atrunk/contrib/workflow/migrate_original_to_basic.py
.. _custom field type: http://trac.edgewall.org/wiki/TracTicketsCustomFields#AvailableFieldTypesandOptions
.. _DateFieldPlugin: https://trac-hacks.org/wiki/DateFieldPlugin
.. _deployed: http://trac.edgewall.org/wiki/TracInstall#cgi-bin
.. _easy_install: http://pypi.python.org/pypi/setuptools
.. _environment: http://trac.edgewall.org/wiki/TracEnvironment
.. _GitPlugin: https://trac-hacks.org/wiki/GitPlugin
.. _GroupBasedRedirectionPlugin: https://trac-hacks.org/wiki/GroupBasedRedirectionPlugin
.. _here: http://trac.edgewall.org/wiki/TracWorkflow#Howtocombinethetracopt.ticket.commit_updaterwiththetestingworkflow
.. _hotcopy: http://trac.edgewall.org/wiki/TracBackup
.. _internal errors: http://trac.edgewall.org/wiki/TracUpgrade#ZipImportError
.. _JavaScript?: http://trac.edgewall.org/wiki/JavaScript
.. _LinenoMacro: https://trac-hacks.org/wiki/LinenoMacro
.. _NeverNotifyUpdaterPlugin: https://trac-hacks.org/wiki/NeverNotifyUpdaterPlugin
.. _No changeset ??? in the repository: http://trac.edgewall.org/intertrac/%236120
.. _notification subscribers: http://trac.edgewall.org/wiki/TracNotification#notification-subscriber-section
.. _OverrideEditPlugin: https://trac-hacks.org/wiki/OverrideEditPlugin
.. _PySqlite#UpgradingSQLitefrom2.xto3.x: http://trac.edgewall.org/intertrac/PySqlite%23UpgradingSQLitefrom2.xto3.x
.. _PySqlite: http://trac.edgewall.org/intertrac/PySqlite
.. _QueryUiAssistPlugin: https://trac-hacks.org/wiki/QueryUiAssistPlugin
.. _RepoRevisionSyntaxPlugin: https://trac-hacks.org/wiki/RepoRevisionSyntaxPlugin
.. _same command: http://trac.edgewall.org/wiki/TracInstall#MappingStaticResources
.. _SubversionLocationPlugin: https://trac-hacks.org/wiki/SubversionLocationPlugin
.. _TICKET_EDIT_COMMENT permission: http://trac.edgewall.org/wiki/TracPermissions#TicketSystem
.. _TicketChangePlugin: https://trac-hacks.org/wiki/TicketChangePlugin
.. _TicketCreationStatusPlugin: https://trac-hacks.org/wiki/TicketCreationStatusPlugin
.. _TicketDeletePlugin: https://trac-hacks.org/wiki/TicketDeletePlugin
.. _Trac database upgrade: http://trac.edgewall.org/wiki/TracUpgrade#Tracdatabaseupgrade
.. _Trac environment: http://trac.edgewall.org/wiki/TracEnvironment
.. _trac-admin: http://trac.edgewall.org/wiki/TracAdmin
.. _trac-hacks.org: https://trac-hacks.org
.. _TracDev/ApiChanges: http://trac.edgewall.org/intertrac/TracDev/ApiChanges
.. _TracEnvironment: http://trac.edgewall.org/wiki/TracEnvironment
.. _TracFineGrainedPermissions#ReadonlyWikiPolicy: http://trac.edgewall.org/wiki/TracFineGrainedPermissions#ReadonlyWikiPolicy
.. _TracGuide: http://trac.edgewall.org/wiki/TracGuide
.. _TracIni: http://trac.edgewall.org/wiki/TracIni
.. _TracInstall: http://trac.edgewall.org/wiki/TracInstall
.. _TracInterfaceCustomization#SiteAppearance: http://trac.edgewall.org/wiki/TracInterfaceCustomization#SiteAppearance
.. _TracInterfaceCustomization: http://trac.edgewall.org/wiki/TracInterfaceCustomization
.. _TracMigratePlugin: https://trac-hacks.org/wiki/TracMigratePlugin
.. _TracQuery#Filters: http://trac.edgewall.org/wiki/TracQuery#Filters
.. _TracRepositoryAdmin#ExplicitSync: http://trac.edgewall.org/wiki/TracRepositoryAdmin#ExplicitSync
.. _TracRepositoryAdmin#Migration: http://trac.edgewall.org/wiki/TracRepositoryAdmin#Migration
.. _TracRepositoryAdmin#Repositories: http://trac.edgewall.org/wiki/TracRepositoryAdmin#Repositories
.. _TracRepositoryAdmin#Synchronization: http://trac.edgewall.org/wiki/TracRepositoryAdmin#Synchronization
.. _TracSubversion: http://trac.edgewall.org/intertrac/TracSubversion
.. _TracWorkflow: http://trac.edgewall.org/wiki/TracWorkflow
.. _WebAdmin: http://trac.edgewall.org/intertrac/WebAdmin
.. _wiki:0.10/TracUpgrade#SpecificVersions: http://trac.edgewall.org/intertrac/wiki%3A0.10/TracUpgrade%23SpecificVersions
.. _WikiCreole: http://trac.edgewall.org/intertrac/WikiCreole
.. _WikiCreoleRendererPlugin: https://trac-hacks.org/wiki/WikiCreoleRendererPlugin
.. _WikiFormatting#SettingAnchors: http://trac.edgewall.org/wiki/WikiFormatting#SettingAnchors
.. _WikiMacros: http://trac.edgewall.org/wiki/WikiMacros
.. _WikiProcessors#AvailableProcessors: http://trac.edgewall.org/wiki/WikiProcessors#AvailableProcessors