Skip to content
nvkelso edited this page Jan 20, 2012 · 7 revisions

svn checkout svn+ssh://sub.domain.com/var/svn/projectname/trunk localprojectname

ssh geo.stamen cd public_html/yandex/

To pull the latest stylsheets: svn up

cd public_html/tripadvisor/stylesheets/road-classes/

Move to target dir cd stylesheets/road-classes/

Render all the images using the stylesheets

make make -j4

Note: use the -j4 flag to use four processes (geo only has 4 cores)

View the results:

http://geo.stamen/~nate/yandex/stylesheets/road-classes/high-zoom-cities.html

Check the status of which files have changed

svn st

eg: ? road-labels-original.mss M views.pgsql M high-zoom-cities.html

Add the one that is new (?) using (where : svn add road-labels-original.mss

Now let’s push the changed ones back to the server repository with a “message”

svn commit -m "added color"

DEBUG:

find . -name .svn -exec rm -rfv {} ; svn add stylesheets svn rm style

Add all the new stuff: svn add svn st | egrep '^\?' | cut -d ' ' -f 8

Remove all the missing junk: svn rm svn st | egrep '^\!' | cut -d ' ' -f 8

svn rm --force renders/mid-zoom-world-*pdf

Clone this wiki locally