CVSROOT: /cvs/webwml
Module name: webwml
Changes by: ayanokouzi-guest 16/06/12 02:54:15
Modified files:
english/consultants: consultant.data
Log message:
webwml/english/consultants/consultant.data:
* Diego Gomez is still active, entry updated
Added files:
swedish/security/2014: dsa-3020.wml
Log message:
Initial Swedish translation
Modified files:
english/template/debian: events_common.wml legal_lists.wml
recent_list.wml recent_list_common.wml
users_list.wml votebar.wml
english/template/debian/projectnews: index.wml
Log message:
Fix title extraction code
* Expected Behavior:
Index page should list titles of article pages.
* Actual Behavior:
Sometime the titles are not extracted from the article pages propriety
(when last one byte of last character is 0x85 or 0xA0,
the byte is lost from a title).
* Cause of Actual Behavior:
Title is extracted from data. But, the data is byte sequence
and does not converted to internal representation of Perl.
In this case, matching unit of regexp is single byte and
is not single character.
* Approach:
Decode byte sequence data and encode extracted title.