PyAr / planeta-pyar

Code that, thanks to nikola, builds http://planeta.python.org.ar/
0 stars 6 forks source link

planeta.python.org.ar no se actualiza #8

Open ccanepa opened 8 years ago

ccanepa commented 8 years ago

planeta.python.org.ar no actualiza desde mediados de junio, los blogs de styxman y facu tienen varios post posteriores.

Ni idea quien administra asi que reporte aqui.

saluditos

ralsina commented 8 years ago

Resulta que el planeta sigue en mi server haciendo lo suyo, aunque no lo miro hace dos años. Hace unas semanas actualicé Ubuntu y se rompió el virtualenv que contenia el sfotware. Ahora lo estoy actualizando y me fijo si levanta.

ralsina commented 8 years ago

Por otro lado, no estoy subscripto a nada acá, asi que si se espera que siga funcionando y algo pincha, avisenme.

ralsina commented 8 years ago

Actualizado en parte, tengo que arreglar el plugin planetoid para que ande con las versiones nuevas de Nikola, revisar el cron y hacer un PR aca con los cambios de config.

ralsina commented 8 years ago

El diff, si alguien lo quiere aplicar:

diff --git a/full/conf.py b/full/conf.py
index 5903144..9728846 100755
--- a/full/conf.py
+++ b/full/conf.py
@@ -76,7 +76,7 @@ REDIRECTIONS = []
 # "rsync -rav output/* joe@my.site:/srv/www/site"
 # And then do a backup, or ping pingomatic.
 # To do manual deployment, set it to []
-DEPLOY_COMMANDS = [r'rsync -rav output/* /srv/www/pyar']
+DEPLOY_COMMANDS = {'default': [r'rsync -rav output/* /srv/www/pyar']}

 ##############################################################################
 # Image Gallery Options
@@ -84,8 +84,6 @@ DEPLOY_COMMANDS = [r'rsync -rav output/* /srv/www/pyar']

 # Galleries are folders in galleries/
 # Final location of galleries will be output / GALLERY_PATH / gallery_name
-GALLERY_PATH = "galleries"
-THUMBNAIL_SIZE = 180

 ##############################################################################
 # HTML fragments and diverse things that are used by the templates
@@ -99,13 +97,13 @@ INPUT_FORMAT = 'rest'
 # Data about this site
 BLOG_TITLE = "Planeta PyAr"
 # BLOG_URL = "http://planeta.python.org.ar"
-SITE_URL = "http://planeta.python.org.ar"
+SITE_URL = "http://planeta.python.org.ar/"
 BLOG_AUTHOR = "PyAr"
 BLOG_EMAIL = "ralsina@netmanagers.com.ar"
 BLOG_DESCRIPTION = u"Colección de blogs de PyAr."

 # Name of the theme to use. Themes are located in themes/theme_name
-THEME = 'site-planetoid'
+THEME = 'planetoid'

 # A HTML fragment describing the license, for the sidebar.
 # I recomment using Creative Commons' wizard: http://creativecommons.org/choose/
diff --git a/solopython/conf.py b/solopython/conf.py
index f5be330..c995062 100755
--- a/solopython/conf.py
+++ b/solopython/conf.py
@@ -76,8 +76,8 @@ REDIRECTIONS = []
 # "rsync -rav output/* joe@my.site:/srv/www/site"
 # And then do a backup, or ping pingomatic.
 # To do manual deployment, set it to []
-DEPLOY_COMMANDS = [r'rsync -rav output/python/* /srv/www/pyar/python/',
-r'cp output/rss.xml /srv/www/pyar/python']
+DEPLOY_COMMANDS = {'default': [r'rsync -rav output/python/* /srv/www/pyar/python/',
+r'cp output/rss.xml /srv/www/pyar/python']}

 ##############################################################################
 # Image Gallery Options
@@ -85,8 +85,6 @@ r'cp output/rss.xml /srv/www/pyar/python']

 # Galleries are folders in galleries/
 # Final location of galleries will be output / GALLERY_PATH / gallery_name
-GALLERY_PATH = "galleries"
-THUMBNAIL_SIZE = 180

 ##############################################################################
 # HTML fragments and diverse things that are used by the templates
@@ -99,13 +97,13 @@ INPUT_FORMAT = 'rest'

 # Data about this site
 BLOG_TITLE = u"Planeta PyAr (Sólo Python)"
-SITE_URL = "http://planeta.python.org.ar"
+SITE_URL = "http://planeta.python.org.ar/"
 BLOG_AUTHOR = "PyAR"
 BLOG_EMAIL = "ralsina@netmanagers.com.ar"
 BLOG_DESCRIPTION = u"Colección de blogs de PyAr."

 # Name of the theme to use. Themes are located in themes/theme_name
-THEME = 'site-planetoid'
+THEME = 'planetoid'

 # A HTML fragment describing the license, for the sidebar.
 # I recomment using Creative Commons' wizard: http://creativecommons.org/choose/