~ubuntu-branches/ubuntu/utopic/yelp/utopic-proposed

« back to all changes in this revision

Viewing changes to libyelp/yelp-document.c

  • Committer: Package Import Robot
  • Author(s): Matthew Fischer
  • Date: 2013-05-25 20:01:06 UTC
  • mfrom: (1.1.67) (131.1.1 saucy-proposed)
  • Revision ID: package-import@ubuntu.com-20130525200106-4re1oimhqy8exd9b
Tags: 3.8.1-0ubuntu1
* New upstream release (LP: #1184244)
  - Added test token for classic mode (Matthias Clasen)
  - Updated translations
  - Stop checking for pangox and X11 (Emilio Pozuelo Monfort)
  - Add keywords to the desktop file (Matthias Clasen)
  - Fixed handling of xref links with anchors, #686095 (Tails developers)
  - Fixed various memory management bugs, #683100 (Carlos Garcia Campos)
  - Added local copy of MathJax for MathML display (Shaun McCance)
  - Added support for xdg help system in All Documents (Shaun McCance)
  - Fixed if:test="action:install" (Shaun McCance)
  - Switched to using 'itstool -j' for XSL domain (Shaun McCance)
* Refreshed patches, removed some patches that have been unused for some
  time.
  - debian/patches/00_no_am_gnu_gettext.patch - Removed, unused
  - debian/patches/02_man-utf8.patch - Removed, unused
  - debian/patches/04_man-utf8.patch - Removed, unused

Show diffs side-by-side

added added

removed removed

Lines of Context:
1032
1032
            g_free (index_title);
1033
1033
        g_free (txt);
1034
1034
        g_string_append (ret, "</div></body></html>");
1035
 
        g_mutex_unlock (document->priv->mutex);
1036
1035
 
1037
1036
        hash_replace (document->priv->contents, page_id, g_string_free (ret, FALSE));
1038
1037
        str = hash_lookup (document->priv->contents, page_id);
1438
1437
        callback = request->callback;
1439
1438
        user_data = request->user_data;
1440
1439
        error = request->error;
1441
 
        request->error = NULL;
1442
1440
        priv->reqs_pending = g_slist_remove (priv->reqs_pending, request);
1443
1441
    }
1444
1442
 
1451
1449
                  user_data,
1452
1450
                  error);
1453
1451
 
 
1452
    g_clear_error (&request->error);
1454
1453
    g_object_unref (document);
1455
1454
    return FALSE;
1456
1455
}