~loggerhead-team/loggerhead/trunk-rich

« back to all changes in this revision

Viewing changes to info.py

  • Committer: John Arbash Meinel
  • Date: 2011-03-15 10:24:40 UTC
  • mfrom: (432.1.3 loggerhead)
  • Revision ID: john@arbash-meinel.com-20110315102440-n4zr988738z125cd
Merge fix for bug #569358. Redirect requests so people can URL hack.

If you edit /files/directory to become /files/directory/filename, redirect it to
the /view/directory/filename, and conversly if you go to /view/directory redirect
it to /files/directory. This way people can edit the URL in a logical way
and still get the view they are expecting.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/usr/bin/env python
 
2
# API Info for loggerhead
 
3
 
 
4
bzr_plugin_name = "loggerhead"
 
5
 
 
6
bzr_plugin_version = (1, 18, 0)
 
7
 
 
8
bzr_compatible_versions = [
 
9
    (1, 17, 0), (1, 18, 0), (2, 0, 0), (2, 1, 0), (2, 2, 0), (2, 3, 0),
 
10
    (2, 4, 0)]
 
11
 
 
12
bzr_minimum_version = bzr_compatible_versions[0]
 
13
 
 
14
bzr_maximum_version = bzr_compatible_versions[-1]