Open GoogleCodeExporter opened 8 years ago
Same problem on Windows XP, Pencil 2.0.3
The following actions helped me to open file:
1. rename .ep to .xml
2. open .xml in Visual Studio
3. format all document (for better reading)
4. split document in separate files two pages each
Example:
Original document:
<?xml version="1.0"?>
<Document xmlns="http://www.evolus.vn/Namespace/Pencil">
<Properties/>
<Pages>
<Page> ... page 1 content ... </Page>
<Page> ... page 2 content ... </Page>
<Page> ... page 3 content ... </Page>
<Page> ... page 4 content ... </Page>
<Page> ... page 5 content ... </Page>
</Pages>
</Document>
Fixed documents:
<?xml version="1.0"?>
<Document xmlns="http://www.evolus.vn/Namespace/Pencil">
<Properties/>
<Pages>
<Page> ... page 1 content ... </Page>
<Page> ... page 2 content ... </Page>
</Pages>
</Document>
<?xml version="1.0"?>
<Document xmlns="http://www.evolus.vn/Namespace/Pencil">
<Properties/>
<Pages>
<Page> ... page 3 content ... </Page>
<Page> ... page 4 content ... </Page>
</Pages>
</Document>
<?xml version="1.0"?>
<Document xmlns="http://www.evolus.vn/Namespace/Pencil">
<Properties/>
<Pages>
<Page> ... page 5 content ... </Page>
</Pages>
</Document>
Original comment by pimkin.m...@gmail.com
on 11 Jan 2013 at 5:26
Original issue reported on code.google.com by
karmo.p...@gmail.com
on 25 Sep 2012 at 6:22