Opened 20 years ago
Closed 20 years ago
#601 closed defect (fixed)
Links in RSS feed are missing schemes, wiki links
Reported by: | Owned by: | daniel | |
---|---|---|---|
Priority: | high | Milestone: | 0.8 |
Component: | general | Version: | devel |
Severity: | major | Keywords: | |
Cc: | Branch: | ||
Release Notes: | |||
API Changes: | |||
Internal Changes: |
Description
<image> <title>sabi.net</title> <url>svn.sabi.net/trac/common/sabi-small.jpg</url> <link>svn.sabi.net/trac/dev/timeline</link> </image>
<link>svn.sabi.net/trac/dev/wiki/RecentChanges</link> <description>Wiki page <a href="svn.sabi.net">RecentChanges</a> edited by nicholas</description>
and so forth.
Attachments (0)
Change History (8)
comment:1 by , 20 years ago
comment:2 by , 20 years ago
Milestone: | → 0.8 |
---|---|
Priority: | normal → high |
comment:4 by , 20 years ago
Resolution: | fixed |
---|---|
Status: | closed → reopened |
rss links are missing schemes on this website (http://projects.edgewall.com/trac/timeline?daysback=90&max=50&format=rss)
<a href="://projects.edgewall.com">TracGuide</a>
so i'm reopening it, at least to make the website rss links usable.
comment:5 by , 20 years ago
Keywords: | rss added |
---|
The timeline rss feeds are the only ones that suffer from this. It seems to be a problem with $HTTP.Protocol that is being fed to the hdf.
Here is how it looks in source:file/trunk/templates/timeline_rss.cs#825
<?cs set base_url = $HTTP.Protocol+'://'+$HTTP.Host ?>
I fixed it in my local copy by changing my template to match how the URL is set in the other rss templates such as: source:trunk/templates/log_rss.cs#825
<?cs set base_url = "http://"+$HTTP.Host ?>
This of course breaks https:// functionality. But considering that the other feeds do it, and it didn't work at all before, I don't mind.
comment:7 by , 20 years ago
Keywords: | rss removed |
---|---|
Status: | reopened → new |
In [774] usage of a non-standard env variable, SCRIPT_URI, was added. It only exists if you're using mod_rewrite with apache.