~ubuntu-branches/ubuntu/natty/libgdata/natty-updates

« back to all changes in this revision

Viewing changes to gdata/media/gdata-media-group.c

  • Committer: Bazaar Package Importer
  • Author(s): Robert Ancell
  • Date: 2011-01-05 11:09:00 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20110105110900-gkjnbslnr18s45us
Tags: 0.8.0-0ubuntu1
* New upstream release
* debian/control:
  - Use gir1.2 packages
  - Use standards version 3.9.1
  - Add Vcs-Bzr link
  - Rename libgdata10 to libgdata11
* debian/rules:
  - Drop simple-patchsys.mk
* debian/source:
  - Use source version 3.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
285
285
                        while ((comma = g_utf8_strchr (start, -1, ',')) != NULL) {
286
286
                                /* Copy the span */
287
287
                                gchar *span = g_strndup (start, comma - start);
288
 
                                g_string_append (xml_string, span);
 
288
                                gdata_parser_string_append_escaped (xml_string, NULL, span, NULL);
289
289
                                g_free (span);
290
290
 
291
291
                                /* Add an escaped comma */
296
296
                        }
297
297
 
298
298
                        /* Append the rest of the string (the entire string if there were no commas) */
299
 
                        g_string_append (xml_string, start);
 
299
                        gdata_parser_string_append_escaped (xml_string, NULL, start, NULL);
300
300
                }
301
301
 
302
302
                g_string_append (xml_string, "</media:keywords>");