From e6f681fdca19490f9f7bb6274a38d0784ce3daac Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Tue, 29 Dec 2009 02:30:32 +0000 Subject: Image greyscaling. --- docs/.static/note-color.png | Bin 0 -> 1562 bytes docs/.static/note.png | Bin 1562 -> 1304 bytes docs/convert_images.sh | 9 +++++++++ docs/narr/project.rst | 27 +-------------------------- 4 files changed, 10 insertions(+), 26 deletions(-) create mode 100644 docs/.static/note-color.png create mode 100755 docs/convert_images.sh (limited to 'docs') diff --git a/docs/.static/note-color.png b/docs/.static/note-color.png new file mode 100644 index 000000000..ff7b2fc84 Binary files /dev/null and b/docs/.static/note-color.png differ diff --git a/docs/.static/note.png b/docs/.static/note.png index ff7b2fc84..8b313d9e4 100644 Binary files a/docs/.static/note.png and b/docs/.static/note.png differ diff --git a/docs/convert_images.sh b/docs/convert_images.sh new file mode 100755 index 000000000..4ee1a119e --- /dev/null +++ b/docs/convert_images.sh @@ -0,0 +1,9 @@ +TEXDIR=.build/latex + +for img in $TEXDIR/*.png; +do + cp $img ${img}.BAK + convert $img -units PixelsPerInch -resample 300 -colorspace Gray ${img}.grey + mv ${img}.grey $img +done + diff --git a/docs/narr/project.rst b/docs/narr/project.rst index 646d59229..1c1dde131 100644 --- a/docs/narr/project.rst +++ b/docs/narr/project.rst @@ -54,32 +54,7 @@ project we name ``MyProject``: project: MyProject Creating template bfg Creating directory ./MyProject - Recursing into +package+ - Creating ./MyProject/myproject/ - Copying __init__.py to ./MyProject/myproject/__init__.py - Copying configure.zcml to ./MyProject/myproject/configure.zcml - Copying models.py to ./MyProject/myproject/models.py - Copying run.py_tmpl to ./MyProject/myproject/run.py - Recursing into templates - Creating ./MyProject/myproject/templates/ - Copying mytemplate.pt to ./MyProject/myproject/templates/mytemplate.pt - Recursing into static - Creating ./MyProject/myproject/templates/static/ - Copying default.css to ./MyProject/myproject/templates/static/default.css - Recursing into images - Creating ./MyProject/myproject/templates/static/images/ - Copying img01.gif to ./MyProject/myproject/templates/static/images/img01.gif - Copying img02.gif to ./MyProject/myproject/templates/static/images/img02.gif - Copying img03.gif to ./MyProject/myproject/templates/static/images/img03.gif - Copying img04.gif to ./MyProject/myproject/templates/static/images/img04.gif - Copying spacer.gif to ./MyProject/myproject/templates/static/images/spacer.gif - Copying templatelicense.txt to ./MyProject/myproject/templates/static/templatelicense.txt - Copying tests.py_tmpl to ./MyProject/myproject/tests.py - Copying views.py_tmpl to ./MyProject/myproject/views.py - Copying +project+.ini_tmpl to ./MyProject/MyProject.ini - Copying CHANGES.txt_tmpl to ./MyProject/CHANGES.txt - Copying README.txt_tmpl to ./MyProject/README.txt - Copying setup.py_tmpl to ./MyProject/setup.py + # ... more output ... Running /Users/chrism/projects/repoze/bfg/bin/python setup.py egg_info As a result of invoking ``paster create``, a project is created in a -- cgit v1.2.3