/bzr-feed

To download this project, use:
bzr branch http://golem.ph.utexas.edu/~distler/code/bzr-feed/

« back to all changes in this revision

Viewing changes to bzr-feed.py

  • Committer: Jacques Distler
  • Date: 2007-03-11 19:12:49 UTC
  • mto: This revision was merged to the branch mainline in revision 5.
  • Revision ID: distler@golem.ph.utexas.edu-20070311191249-ie8e33un88fvjrc2
Remove commented-out code.

Show diffs side-by-side

added added

removed removed

32
32
        print "  <title>" + self._e(self.branch._get_nick()) + "</title>"
33
33
        print "  <id>" + self._e(self.feedid) + "</id>"
34
34
        print "  <link href='" + self._e(self.baseuri) + "/'/>"
35
 
#        print "  <link rel='self' type='application/atom+xml' href='" + self._e(self.baseuri) + "/" + os.path.basename(os.environ['REQUEST_URI']) + "'/>"
36
35
        print "  <link rel='self' type='application/atom+xml' href='"  + os.environ['REQUEST_URI'] + "'/>"
37
36
        print "  <updated>" + self._e(time.strftime("%Y-%m-%dT%H:%M:%SZ",time.gmtime(updated))) + "</updated>"
38
37