Opened 19 years ago
Closed 19 years ago
#1594 closed defect (fixed)
obfuscate.sh and tidy incompatible
Reported by: | Matthew Burgess | Owned by: | |
---|---|---|---|
Priority: | normal | Milestone: | |
Component: | Book | Version: | SVN |
Severity: | normal | Keywords: | |
Cc: |
Description
I'm trying to render LFS trunk with the attached patch. 'make validate' doesn't complain. 'make', however, outputs the following:
for filename in find ~/lfs-book -name "*.html"
; do \
sh obfuscate.sh $filename; \
done;
for filename in find ~/lfs-book -name "*.html"
; do \
tidy -config tidy.conf $filename; \ true; \
done; line 102 column 89 - Error: missing quote mark for attribute value
It then proceeds to completely omit Greg Schafer and Jesse Tie Ten Quee's entries.
Commenting out either the obfuscate.sh loop, or the tidy loop, results in the error disappearing, and a correct rendering (albeit obviously either non-obfuscated, or non-tidied).
Attachments (1)
Change History (2)
by , 19 years ago
Attachment: | acknowledgements.patch added |
---|
comment:1 by , 19 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Fixed by calling tidy' before
obfuscate.sh'.
Patch to acknowledgements.xml that causes breakage