dimitri
unread,May 22, 2008, 11:28:32 AM5/22/08Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to mofo
If you try to construct an hEntry bookmark with an absolute URL, it
will append the host and protocol again, causing it to appear twice.
By default all rails URL helpers construct URLs with the abs. path.
I had to monkey patch like so:
hentry.rb:
def atom_link
# %(<link type="text/html" href="http://#{@domain}#{@bookmark}"
rel="alternate"/>)
%(<link type="text/html" href="#{@bookmark}" rel="alternate"/>)
end
Also, I tried to report this on the trac referenced on the main MOFO
page, but the link was dead.
Best,
Dimitri