Edgewall Software

Changes between Version 11 and Version 12 of MultipleRepositorySupport


Ignore:
Timestamp:
Jun 25, 2008, 10:44:59 AM (16 years ago)
Author:
Christian Boos
Comment:

Note about multiple repository type support

Legend:

Unmodified
Added
Removed
Modified
  • MultipleRepositorySupport

    v11 v12  
    4949
    5050[repositories]
    51 my_repository_a.dir = <path_to_a_repository>
    52 my_repository_b.dir = <path_to_another_repository>
     51my_repo_a.dir = <path_to_a_repository>
     52my_repo_b.dir = <path_to_another_repository>
     53my_repo_c.dir = <path_to_yet_another_repository>
     54my_repo_c.type = direct-svnfs
    5355
    5456[trac]
     
    5658repository_type = hg
    5759}}}
     60   Note that when the repository `.type` is not specified, the value of `[trac] repository_type` is used. [[br]]
     61   In the above example, this means that `my_repo_a` and `my_repo_b` are Mercurial (hg) repositories. [[br]]
     62   Note also that for now, only the `direct-svnfs` repository type can be used for Subversion repositories,
     63   as the cached repository used by the other type (`svn`) has not yet been extended to support multiple repositories.
    5864 8. Cross your fingers, and hope it works :)
    5965   [[br]] ''It really should or it's a bug ;-)''
    6066
    61 To make links to the non-default repository, just add a slash and the alias name after the revision identifier, for example: "![changeset:cffd9e480266/test a changeset]"
     67To make links to the non-default repository, just add a slash and the alias name after the revision identifier, for example: "![changeset:cffd9e480266/my_repos_b a changeset]".
     68The default repository can be one of the explicitly named repositories.
    6269
    6370== TODO ==