# HG changeset patch # User Sadrul Habib Chowdhury # Date 1185706125 0 # Node ID 64a7b13d3b8ddca19da995c60218e7ea4b47b3a9 # Parent 121d1560346cb9f4a2f9bc1259e40a27ebf4b798 Update the license info. diff -r 121d1560346c -r 64a7b13d3b8d finch/libgnt/pygnt/example/rss/gntrss-ui.py --- a/finch/libgnt/pygnt/example/rss/gntrss-ui.py Sun Jul 29 10:37:10 2007 +0000 +++ b/finch/libgnt/pygnt/example/rss/gntrss-ui.py Sun Jul 29 10:48:45 2007 +0000 @@ -1,9 +1,29 @@ #!/usr/bin/env python -# A very simple and stupid RSS reader -# -# Uses the Universal Feed Parser -# +""" +gr - An RSS-reader built using libgnt and feedparser. + +Copyright (C) 2007 Sadrul Habib Chowdhury + +This application is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This application is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this application; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +USA +""" + +""" +This file deals with the UI part (gnt) of the application +""" import gntrss import gnt @@ -13,7 +33,7 @@ __version__ = "0.0.1alpha" __author__ = "Sadrul Habib Chowdhury (sadrul@pidgin.im)" __copyright__ = "Copyright 2007, Sadrul Habib Chowdhury" -__license__ = "GPL" # see full license statement below +__license__ = "GPL" # see full license statement above gnt.gnt_init() diff -r 121d1560346c -r 64a7b13d3b8d finch/libgnt/pygnt/example/rss/gntrss.py --- a/finch/libgnt/pygnt/example/rss/gntrss.py Sun Jul 29 10:37:10 2007 +0000 +++ b/finch/libgnt/pygnt/example/rss/gntrss.py Sun Jul 29 10:48:45 2007 +0000 @@ -1,9 +1,29 @@ #!/usr/bin/env python -# A very simple and stupid RSS reader -# -# Uses the Universal Feed Parser -# +""" +gr - An RSS-reader built using libgnt and feedparser. + +Copyright (C) 2007 Sadrul Habib Chowdhury + +This application is free software; you can redistribute it and/or +modify it under the terms of the GNU Lesser General Public +License as published by the Free Software Foundation; either +version 2.1 of the License, or (at your option) any later version. + +This application is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +Lesser General Public License for more details. + +You should have received a copy of the GNU Lesser General Public +License along with this application; if not, write to the Free Software +Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 +USA +""" + +""" +This file deals with the rss parsing part (feedparser) of the application +""" import threading import feedparser