~ubuntu-branches/ubuntu/oneiric/libfeedparser-ruby/oneiric

« back to all changes in this revision

Viewing changes to lib/feedparser/html-output.rb

  • Committer: Bazaar Package Importer
  • Author(s): Lucas Nussbaum, Lucas Nussbaum, Gunnar Wolf
  • Date: 2009-07-28 00:12:36 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090728001236-ho0q45aaajo90dky
Tags: 0.7-1
[ Lucas Nussbaum ]
* New upstream release.

[ Gunnar Wolf ]
* Changed section to Ruby as per ftp-masters' request

[ Lucas Nussbaum ]
* Update to policy 3.8.2; no changes needed.
* Add misc:Depends to Depends so lintian is happier.
* Move ruby-pkg-tools to Build-Depends so lintian is happier. also
  move others Build-Depends-Indep to Build-Depends. We don't build any
  arch-specific package anyway, so splitting Build-Depends-Indep and
  Build-Depends in pointless.

Show diffs side-by-side

added added

removed removed

Lines of Context:
116
116
          s += l % [ 'Date:', @date.getutc.to_s ]
117
117
        end
118
118
      end
119
 
      s += l % [ 'Author:', @creator.escape_html ] if @creator
 
119
      s += l % [ 'Author:', creator.escape_html ] if creator
120
120
      s += l % [ 'Subject:', @subject.escape_html ] if @subject
121
 
      s += l % [ 'Category:', @category.escape_html ] if @category
 
121
      s += l % [ 'Filed under:', @categories.join(', ').escape_html ] unless @categories.empty?
122
122
      s += "</table>\n"
123
123
      s
124
124
    end