Modify ↓
#13213 closed defect (fixed)
Dynamic images generation failing to infinit loop
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | normal | Component: | TracWikiToPdfPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: |
Description
Hi,
I have been trying to make WikiToPDF plugin working with images, but I have got issue where image loading through web server went always to infinite loop and flood filesystem. I have checked your code and there seems to be small typo causing it. By removing it I could fix the problem and images are correctly showed in PDF.
Please check wikitopdf.py line 121
current code:
simgpos = page.find('<img', addrpos)
it should be:
imgpos = page.find('<img', addrpos)
It would make sense to check it and fix it eventually.
Thanks Pavel
Attachments (0)
Change History (3)
comment:1 Changed 7 years ago by
Owner: | changed from Diorgenes Felipe Grzesiuk to Ryan J Ollos |
---|---|
Status: | new → accepted |
comment:3 Changed 7 years ago by
Owner: | changed from Ryan J Ollos to pavel.prech@… |
---|
Note: See
TracTickets for help on using
tickets.
Looks like I accidentally committed that in r11472. Thanks for reporting!