/docs/MyDocs

To get this branch, use:
bzr branch http://darksoft.org/webbzr/docs/MyDocs

« back to all changes in this revision

Viewing changes to Development/autotools/trac/problems.txt

  • Committer: Suren A. Chilingaryan
  • Date: 2017-04-03 02:45:17 UTC
  • Revision ID: csa@suren.me-20170403024517-dwzj0z0k1cmhxm7u
Restructuring, OpenShift, Ansible, Git

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
 - There is a problem in Bazaar resulting in trac complains on 
2
 
        module object has no attribute ElementTree  
3
 
    
4
 
    The problem is indeed in bzrlib/xml_serializer.py, line 33 (in bzr 1.11 and
5
 
    1.13, at least).
6
 
        Changing that import statement from:
7
 
            > import xml.etree as elementtree
8
 
        to:
9
 
            > import xml.etree.cElementTree as elementtree
10
 
    fixes the error. 
11
 
 
12
 
 
13
 
 - Timeline is is not displayed if alternative name is used to access trac
14
 
    The problem is indeed in bzrlib/xml_serializer.py, line 33 (in bzr 1.11 and
15
 
    1.13, at least). Changing that import statement from:
16
 
        > import xml.etree as elementtree
17
 
    to:
18
 
        > import xml.etree.cElementTree as elementtree
19
 
    Fixes the error. I'll spin a patch for this if needed, but can't right now.
20
 
 
21
 
    I think the except clause immediately below that is also buggy, too, but
22
 
    again, can't really test that right now and I'm using Python 2.5, which is
23
 
    probably why isn't a problem for me.
24