Your message dated Sat, 25 May 2013 10:22:20 +0000
with message-id <[email protected]>
and subject line Bug#688099: fixed in tickr 0.6.4-1
has caused the Debian Bug report #688099,
regarding Please provide RDF support
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)


-- 
688099: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=688099
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: tickr
Version: 0.6.2-1
Severity: normal

Dear Maintainer,

RSS URL longer than 128 chars are truncated when tickr try to get the feed from
the Net.

Steps to reproduce the bug:
* Start tickr from an xterm (optional but useful to see the bug)

* Right click->File->Open Feed RSS

* Add an RSS URL longer than 128 chars, you can use this feed from Request
Tracker demo site:
http://rt.easter-
eggs.org/demos/stable/NoAuth/rss/admin/b10f256803294525/?Order=DESC&Query=+Owner+%3D+'Nobody'+AND+(+Status+%3D+'new'+OR+Status+%3D+'open')&OrderBy=Created

* be sure no checkboxes are selected in the feed list and  click on "OK
(single)" button

* an error appear telling "no HTTP status code returned", "Can't fetch
resource: <RSS URL>", same error appear if button "Add/Upd" is used

Thanks for this program.



-- System Information:
Debian Release: wheezy/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.2.0-3-amd64 (SMP w/2 CPU cores)
Locale: LANG=it_IT.utf8, LC_CTYPE=it_IT.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tickr depends on:
ii  libatk1.0-0         2.4.0-2
ii  libc6               2.13-35
ii  libcairo2           1.12.2-2
ii  libfontconfig1      2.9.0-7
ii  libfreetype6        2.4.9-1
ii  libgdk-pixbuf2.0-0  2.26.1-1
ii  libglib2.0-0        2.33.12+really2.32.3-1
ii  libgtk2.0-0         2.24.10-2
ii  libpango1.0-0       1.30.0-1
ii  libxml2             2.8.0+dfsg1-5

tickr recommends no packages.

tickr suggests no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
Source: tickr
Source-Version: 0.6.4-1

We believe that the bug you reported is fixed in the latest version of
tickr, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [email protected],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Emmanuel Thomas-Maurin <[email protected]> (supplier of updated tickr package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [email protected])


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Thu, 23 May 2013 16:57:41 +0200
Source: tickr
Binary: tickr
Architecture: source amd64
Version: 0.6.4-1
Distribution: unstable
Urgency: low
Maintainer: Emmanuel Thomas-Maurin <[email protected]>
Changed-By: Emmanuel Thomas-Maurin <[email protected]>
Description: 
 tickr      - GTK-based highly graphically-customizable Feed Ticker
Closes: 688099
Changes: 
 tickr (0.6.4-1) unstable; urgency=low
 .
   * In pref windows, some setting changes (like 'read n items per feed')
     need the stream to be reloaded, so now we use:
       current_feed();
     instead of:
       update_pixmap_from_opened_stream();
 .
   * Fix 'quick feed picker (selected feeds) closes when pointer leaves
     win area' and implement it as a setting.
 .
   * In pref window, disabling screen limits updates win_y and win_w
     limits on the fly.
 .
   * Max options number now set to 128.
 .
   * Pref win changes:
     - remove 'system' colors buttons
     - increase gtk table row spacings
 .
   * If gradient bg set, compute text shadow color no longer from
     bg_color but from gradient.
 .
   * Quick feed picker (selected feeds) closes when pointer leaves win
     area. Plus: quick feed picker opened *also* by Ctrl + mouse
     right-click.
 .
   * Complete RSS 1.0 support (Closes: #688099) and fix/rewrite a few
     things in feed parser code.
 .
   * In tickr_feedparser.c: ending '\n' removed when adding string to
     XML_DUMP (left when adding string to XML_DUMP_EXTRA).
 .
   * Replace update_win_dims() with update_win_dims_and_loc() so that if
     ticker location happens to be wrong, it's always and quickly reset.
 .
   * Add RSS 1.0 (RDF) support.
 .
   * In tickr_main.c / main(), change:
       gtk_widget_show_all(env->win);
       update_win_dims();
       gtk_main();
     to:
       gtk_widget_show_all(env->win);
       gtk_widget_set_size_request(env->win, 1, 1);
       gtk_window_resize(GTK_WINDOW(env->win), 1, 1);
       gtk_main();
     to try to get rid of "ghost" square window at startup (but is this
     fully effective ?)
     Also change:
       gtk_widget_set_size_request(env->win, 0, 0)
     to:
       gtk_widget_set_size_request(env->win, 1, 1)
     in update_win_dims().
 .
   * In feed picker - multiple selection mode: start reading selection
     with highlighted feed - more exactly url in entry (if any) / first
     one otherwise.
 .
   * Remove (useless ?) app version number from exported OPML feed list
     title.
 .
   * Only a little editor issue - some editors get confused (geany colors
     get confused) by things like:
       THIS_IS_A_#DEFINE"____string____"
     so now we put a space in between, like this:
       THIS_IS_A_#DEFINE "____string____"
 .
   * If win_w = 0, win_w = detected screen width (same as 'full width'
     but from command line).
 .
   * Fix xml namespaces issue in tickr_feedparser.c, when, for instance,
     'media:title' exists along with 'title' and we then get 'title'
     twice. Now, we make sure no extra namespace is used before comparing
     strings with 'title', 'description', etc.
 .
   * Fix stupid bug in format_resource() 'translate html entities' when
     '&' alone is detected (ie without a following ';'). Also fix
     'translating' numerical entities with leading '0' in value string.
 .
   * New option 'disablescreenlimits' which allows win_y and win_w to be
     greater than screen dimensions.
 .
   * A few default settings changed.
 .
   * Gradient bg.
Checksums-Sha1: 
 b548de7eb155fb7d6887a9c944b455434d448c2c 1724 tickr_0.6.4-1.dsc
 cd9c2e4b7d545c2df57eeec423170b2dcb904de2 732471 tickr_0.6.4.orig.tar.gz
 d8207f73258904c27ac0e68afef9404674cfac53 7567 tickr_0.6.4-1.debian.tar.gz
 1142f6342e2f66ac665ebae3b13b54bc4d66ebd2 143860 tickr_0.6.4-1_amd64.deb
Checksums-Sha256: 
 2400d1e59591a614dfc21eb2cf972b4f218f4922f6273908f00a42c3c98fd40d 1724 
tickr_0.6.4-1.dsc
 07c69909d3d8427c10789dfcbed620d2a0ea7f664356bcaa4f9887315cc0c2cc 732471 
tickr_0.6.4.orig.tar.gz
 16bf19aec1513d7aec5bd7749591d1be8c18b300f7835f7752d906d2e6e455cf 7567 
tickr_0.6.4-1.debian.tar.gz
 4de9922a21d1a689307976e377a0b1817c628feec6004e2d606f142ef4aabf7e 143860 
tickr_0.6.4-1_amd64.deb
Files: 
 cd191134d01ff503c9a3338ee0d0ccf4 1724 net optional tickr_0.6.4-1.dsc
 e7e55e46de101ac8308e4e8f4be55f5e 732471 net optional tickr_0.6.4.orig.tar.gz
 8a4f6b315a028a2325e2d5629a44d15e 7567 net optional tickr_0.6.4-1.debian.tar.gz
 c059266927de5a8be9782a115b379cf3 143860 net optional tickr_0.6.4-1_amd64.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.12 (GNU/Linux)

iQIcBAEBCAAGBQJRoIUJAAoJEEkIatPr4vMfaygP/1DCymRSqAV/4+Ts16URrHRD
R0dm4PHQ6V6CzPSQ4jcJzEdBpIVPrChWH5fCwBrYsg3sKWYElJp1gXM8s5nC9Zk1
aacuXqlydE6SpPp5nCQB+oj247ql7QlWUpcKausm40OhOaIicBpB1PWxREpWlorv
lCivC1B3A7KanwP0ISbZs8EdH6Xq1wNDpxKLOinfztLHI6o8t4bkWe2pE5jcWB34
ldhMv3G33WzU7Cw75TOP9vK7aSM+8vvi6rvcGIrM5JcZs43hT+ELvkgwG+kLRPn7
muqNaGhk9Ir4woUt7CyGvpDCumxCsZdjuIzbzuqKD6QUgbWLt4RUc7KiAN5fayFH
QTsuFzvw5jksuGdbxYEz8jOzBaPHCWfrQw6PYfqBoHsgB8+7iSIP1kpoA9AqJSVm
DnhoYRQWb1c3X4AITdDpyyqN6T6K1Y9OVZ/oxfQvv0wzkRr0b1EiQiF3kDKUiduy
uBtMLCj58FC6eqEiI5ZX6QPDOn5GApZcGUcesmsl9SFWSUhmTsgpUUiMQZU9LwPq
ADHhc9O57TkNee2yNpk8o3WF2Z9XVhvPnfgkVkjaZHb/3LglVcy8IB+qiABc40DV
AWOw3I28gY8DcsVld+Lipv21ilk2vI5iCE3TNXkDcm7FGmxPTKgjStzy9YpWbjeQ
Z6nlRpvfG82jPewU49u0
=OmPx
-----END PGP SIGNATURE-----

--- End Message ---

Reply via email to