Talk:MyList export template guidelines: Difference between revisions

From AniDB
Jump to navigation Jump to search
Line 6: Line 6:


= Bugs =
= Bugs =
the entitys in the synopsis are not recognised by xml. Can we changed jsencodehtml, these 3 lines
$str =~ s/\'/\&rsquo\;/g;
$str =~ s/\"/\&quot\;/g;
$str =~ s/\`/\&rsquo\;/g;
to
$str =~ s/\'/\&#8217\;/g;
$str =~ s/\"/\&#34\;/g;
$str =~ s/\`/\&#8216\;/g;
* epcnt and special epcnt broken for loop_anime_groups [?]
* epcnt and special epcnt broken for loop_anime_groups [?]
* data_anime_award_type under loop_anime_awards is actually the anime_award_type_id, is this the expected behavior
* data_anime_award_type_img produces a malformed img xml tag which is not closed
* data_anime_award_type_img produces a malformed img xml tag which is not closed
* synopsis is always likely to be wellformed xml? It has <br>s which can't be put obtained from a cdata by an xslt processor
* data_anime_company_atype_name seems not to work - ''typo on my part it's data_anime_company_a'''p'''type_name''

Revision as of 21:51, 10 January 2008

Planned additions

Planned fixes

Requests

Bugs

the entitys in the synopsis are not recognised by xml. Can we changed jsencodehtml, these 3 lines $str =~ s/\'/\&rsquo\;/g; $str =~ s/\"/\&quot\;/g; $str =~ s/\`/\&rsquo\;/g;

to 

$str =~ s/\'/\&#8217\;/g; $str =~ s/\"/\&#34\;/g; $str =~ s/\`/\&#8216\;/g;


  • epcnt and special epcnt broken for loop_anime_groups [?]
  • data_anime_award_type_img produces a malformed img xml tag which is not closed