Opened 13 years ago
Closed 13 years ago
#10434 closed defect (fixed)
GFX SVG Demos Now Need To Be Properly Namespaced
Reported by: | Feneric | Owned by: | Eugene Lazutkin |
---|---|---|---|
Priority: | high | Milestone: | 1.4 |
Component: | DojoX GFX | Version: | 1.4.0b |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description (last modified by )
The three demo SVG files in dojox/gfx/demos/data (Lars.svg, LarsDreaming?.svg, & Nils.svg) now need to be properly doctyped and namespaced in order to work with the improved SVG2GFX. This is a very minor change, but ought to be done to prevent confusion. All that's needed is:
<svg xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/">
at the beginning of each file has to be replaced with:
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd"> <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:i="http://ns.adobe.com/AdobeIllustrator/10.0/">
and they will continue to be functioning demos.
Change History (2)
comment:1 Changed 13 years ago by
Description: | modified (diff) |
---|---|
Status: | new → assigned |
comment:2 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Note: See
TracTickets for help on using
tickets.
(In [20940]) Adding proper incantations to SVG files used in gfx demos, fixes #10434.