[postgis-tickets] r14773 - rename only_postgis.py filter (which was really a sql filter) and use in cartodb.

Regina Obe lr at pcorp.us
Fri Mar 11 13:18:01 PST 2016


Author: robe
Date: 2016-03-11 13:18:00 -0800 (Fri, 11 Mar 2016)
New Revision: 14773

Added:
   planetpostgis/filters/only_sql.py
   planetpostgis/themes/osgeo_postgis/heads/head-stefan.jpg
Modified:
   planetpostgis/filters/only_postgis.py
   planetpostgis/planetpostgis.ini
Log:
rename only_postgis.py filter (which was really a sql filter) and use in cartodb.  
Create a real postgis one and use in Stefan's blog.  Add Stefan's headshot

Modified: planetpostgis/filters/only_postgis.py
===================================================================
--- planetpostgis/filters/only_postgis.py	2016-03-11 01:34:04 UTC (rev 14772)
+++ planetpostgis/filters/only_postgis.py	2016-03-11 21:18:00 UTC (rev 14773)
@@ -2,5 +2,5 @@
 import sys
 
 data = sys.stdin.read()
-if data.find('sql') > 0:
+if data.find('postgis') > 0:
   sys.stdout.write(data)

Added: planetpostgis/filters/only_sql.py
===================================================================
--- planetpostgis/filters/only_sql.py	                        (rev 0)
+++ planetpostgis/filters/only_sql.py	2016-03-11 21:18:00 UTC (rev 14773)
@@ -0,0 +1,6 @@
+#only include postgis entries
+import sys
+
+data = sys.stdin.read()
+if data.find('sql') > 0:
+  sys.stdout.write(data)

Modified: planetpostgis/planetpostgis.ini
===================================================================
--- planetpostgis/planetpostgis.ini	2016-03-11 01:34:04 UTC (rev 14772)
+++ planetpostgis/planetpostgis.ini	2016-03-11 21:18:00 UTC (rev 14773)
@@ -24,7 +24,7 @@
 [http://blog.cartodb.com/feed.xml]
 name = CartoDB
 link = http://blog.cartodb.com
-filters = only_postgis.py
+filters = only_sql.py
 
 [http://strk.keybit.net/blog/tag/postgis/feed/]
 name = Sandro Santilli
@@ -157,6 +157,7 @@
 link = http://dimensionaledge.com/blog/
 
 [http://blog.garage-coding.com/feed.xml]
-name = UpStats blog (Average)
+name = UpStats blog (Stefan Petrea)
 http://blog.garage-coding.com/
 filters = only_postgis.py
+face = head-stefan.jpg

Added: planetpostgis/themes/osgeo_postgis/heads/head-stefan.jpg
===================================================================
(Binary files differ)


Property changes on: planetpostgis/themes/osgeo_postgis/heads/head-stefan.jpg
___________________________________________________________________
Added: svn:mime-type
   + application/octet-stream



More information about the postgis-tickets mailing list