Correct & update hard-coded domain names from legacy codebase.
This commit is contained in:
parent
fd86367e85
commit
c564f15511
3 changed files with 7 additions and 7 deletions
|
@ -60,9 +60,9 @@ class Entry(models.Model, bsoup.SoupModelMixin):
|
|||
super(Entry, self).save()
|
||||
return
|
||||
|
||||
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())
|
||||
|
||||
import xmlrpclib
|
||||
|
|
|
@ -48,9 +48,9 @@ class PressRelease(models.Model, bsoup.SoupModelMixin):
|
|||
super(PressRelease, self).save()
|
||||
return
|
||||
|
||||
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())
|
||||
|
||||
import xmlrpclib
|
||||
|
|
|
@ -1,2 +1,2 @@
|
|||
<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"><{{ obj.author.username }}@sfconservancy.org></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"><{{ obj.author.username }}@sfconservancy.org></a>.</i></p>
|
||||
{{ obj.body|safe }}
|
||||
|
|
Loading…
Reference in a new issue