Changeset - 266644662a6a
[Not reviewed]
Merge
0 3 3
eximious - 4 years ago 2020-02-07 15:39:53
deb@seagl.org
Merge branch 'master' of ssh://k.sfconservancy.org/website
5 files changed with 7 insertions and 7 deletions:
0 comments (0 inline, 0 general)
www/conservancy/apps/blog/models.py
Show inline comments
...
 
@@ -57,15 +57,15 @@ class Entry(models.Model, bsoup.SoupModelMixin):
 
    # http://blog.foozia.com/blog/2007/apr/21/ping-technorati-your-django-blog-using-xml-rpc/
 
    def save(self):
 
        if settings.CONSERVANCY_DEVEL or True: # "or True" means it is disabled always
 
            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
 

	
 
        # Ping Technorati
 
        j = xmlrpclib.Server('http://rpc.technorati.com/rpc/ping')
www/conservancy/apps/news/models.py
Show inline comments
...
 
@@ -45,15 +45,15 @@ class PressRelease(models.Model, bsoup.SoupModelMixin):
 

	
 
    def save(self):
 
        if settings.CONSERVANCY_DEVEL or True:
 
            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
 

	
 
        # Ping Technorati
 
        j = xmlrpclib.Server('http://rpc.technorati.com/rpc/ping')
www/conservancy/static/img/2016_Edward-Snowden_CC-BY-SA-4.0.jpg
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
www/conservancy/static/img/2020_Leslie-Hawthorn.jpg
Show inline comments
 
new file 100644
 
binary diff not shown
Show images
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)