Changeset - c564f155115f
[Not reviewed]
0 3 0
Bradley Kuhn (bkuhn) - 4 years ago 2020-01-24 17:26:59
bkuhn@ebb.org
Correct & update hard-coded domain names from legacy codebase.
3 files changed with 7 insertions and 7 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/blog/models.py
Show inline comments
...
 
@@ -62,5 +62,5 @@ class Entry(models.Model, bsoup.SoupModelMixin):
 

	
 
        blog_name = 'Software Freedom Law Center Blog'
 
        blog_url =  'http://www.softwarefreedom.org/blog/'
 
        post_url = ('http://www.softwarefreedom.org'
 
        blog_name = 'Software Freedom Conservancy Blog'
 
        blog_url =  'http://www.sfconservancy.org/blog/'
 
        post_url = ('http://www.sfconservancy.org'
 
                    + self.get_absolute_url())
www/conservancy/apps/news/models.py
Show inline comments
...
 
@@ -50,5 +50,5 @@ class PressRelease(models.Model, bsoup.SoupModelMixin):
 

	
 
        blog_name = 'Software Freedom Law Center News'
 
        blog_url =  'http://www.softwarefreedom.org/news/'
 
        post_url = ('http://www.softwarefreedom.org'
 
        blog_name = 'Software Freedom Conservancy News'
 
        blog_url =  'https://www.sfconservancy.org/news/'
 
        post_url = ('https://www.sfconservancy.org'
 
                    + self.get_absolute_url())
www/conservancy/templates/feeds/blog_description.html
Show inline comments
 
<p><i>Blog post by <strong>{{ obj.author.formal_name }}</strong>.  Please email any comments on this entry to <a href="mailto:{{ obj.author.username }}@softwarefreedom.org">&lt;{{ obj.author.username }}@sfconservancy.org&gt;</a>.</i></p>
 
<p><i>Blog post by <strong>{{ obj.author.formal_name }}</strong>.  Please email any comments on this entry to <a href="mailto:{{ obj.author.username }}@sfconservancy.org">&lt;{{ obj.author.username }}@sfconservancy.org&gt;</a>.</i></p>
 
{{ obj.body|safe }}
0 comments (0 inline, 0 general)