diff options
-rw-r--r-- | app/builder/base.py | 11 | ||||
-rw-r--r-- | app/notes/models.py | 2 | ||||
-rw-r--r-- | config/settings.py | 2 |
3 files changed, 8 insertions, 7 deletions
diff --git a/app/builder/base.py b/app/builder/base.py index bde3a33..c77d358 100644 --- a/app/builder/base.py +++ b/app/builder/base.py @@ -72,10 +72,11 @@ class BuildWriting(Build): for entry in qs: c = Context({'object': entry, 'MEDIA_URL': settings.BAKED_MEDIA_URL, 'IMAGES_URL': settings.BAKED_IMAGES_URL}) t = render_to_string('details/entry.html', c).encode('utf-8') - path = '%s/%s/' % (entry.pub_date.strftime("%Y/%b/%d").lower(), entry.slug) - self.write_file(path, t) - s = render_to_string('details/entry.txt', c).encode('utf-8') - self.write_file(path, s, 'txt') + path = '/%s/' %(entry.pub_date.strftime("%Y/%m").lower()) + slug = '%s' %(entry.slug) + self.write_file(path, t, 'html', slug) + s = render_to_string('details/entry.txt',c).encode('utf-8') + self.write_file(path, s,'txt', slug) def build_writing_archives(self): qs = self.get_model_querset() @@ -123,7 +124,7 @@ class BuildWriting(Build): c = Context({'type': 'monthly', 'date': '%s %s' % ( month_full_name, year), 'object_list': qs, }) t = render_to_string('archives/writing_date.html', c).encode('utf-8') - fpath = '%s/%s/' % (year, month_name) + fpath = '%s/%s/' % (year, month) self.write_file(fpath, t) def build_homepage(self): diff --git a/app/notes/models.py b/app/notes/models.py index 6d139f0..818a139 100644 --- a/app/notes/models.py +++ b/app/notes/models.py @@ -116,7 +116,7 @@ def post_save_events(sender, instance, **kwargs): instance.city_name = adr.get('hamlet') or adr.get('village') or adr.get('town') or adr.get('city') instance.state_name = adr.get('state') instance.country_name = adr.get('country') - if instance.in_reply_to: + #if instance.in_reply_to: #crawl url, extract text, store it locally with a reference to instance pass if instance.twitter_send and not instance.twitter_sent: diff --git a/config/settings.py b/config/settings.py index 7f204b8..9a18f89 100644 --- a/config/settings.py +++ b/config/settings.py @@ -63,7 +63,7 @@ PIN_PASS = "hyperrealtryptamine@34zaq" #root url BASE_URL = "http://luxagraf.net/" #path to the folder that holds the generated html files -FLATFILES_ROOT = os.path.join(PROJ_ROOT, 'site/') +FLATFILES_ROOT = os.path.join(PROJ_ROOT, 'v8/') #media and image URLs for the generated html files BAKED_IMAGES_URL = 'https://images.luxagraf.net/' BAKED_MEDIA_URL = 'http://luxagraf.net/media/' |