* [PATCH] Rakefile: remove text-only part from the Atom feed
@ 2015-11-11 1:41 Eric Wong
0 siblings, 0 replies; only message in thread
From: Eric Wong @ 2015-11-11 1:41 UTC (permalink / raw)
To: cmogstored-public; +Cc: Eric Wong
The pre-formatted HTML is readable as raw XML, and feed readers
tend to have no problem rendering the HTML, so there's no point
in nearly doubling our bandwidth usage on the text-only part
given we're already serving XML.
While we're at it, disable XML indentation to avoid wasting space;
it doesn't significantly hamper readability, either.
---
Rakefile | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/Rakefile b/Rakefile
index be3564b..bb1c22a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,7 +32,7 @@ desc 'prints news as an Atom feed'
task :news_atom do
require 'builder' # gem install builder
new_tags = tags[0,10]
- x = Builder::XmlMarkup.new(:indent => 2)
+ x = Builder::XmlMarkup.new
x.instruct! :xml, :encoding => 'UTF-8', :version => '1.0'
x.feed(:xmlns => "http://www.w3.org/2005/Atom") do
x.id "#{url_base}/NEWS.atom.xml"
@@ -53,8 +53,6 @@ task :news_atom do
url = "#{cgit_url}/tag/?id=#{tag[:tag]}"
x.link :rel => "alternate", :type => "text/html", :href =>url
x.id url
- message_only = tag[:body].split(/\n.+\(\d+\):\n {6}/).first.strip
- x.content({:type =>:text}, message_only)
x.content(:type =>:xhtml) { x.pre tag[:body] }
end
end
--
EW
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2015-11-11 1:41 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-11 1:41 [PATCH] Rakefile: remove text-only part from the Atom feed Eric Wong
Code repositories for project(s) associated with this public inbox
https://yhbt.net/cmogstored.git/
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).