summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-12-29 02:30:32 +0000
committerChris McDonough <chrism@agendaless.com>2009-12-29 02:30:32 +0000
commite6f681fdca19490f9f7bb6274a38d0784ce3daac (patch)
treee2471376a29ef22924d8925ce8adf27deba66758
parent016a1fcd164a7389c072b9ef5c247039355bc6ec (diff)
downloadpyramid-e6f681fdca19490f9f7bb6274a38d0784ce3daac.tar.gz
pyramid-e6f681fdca19490f9f7bb6274a38d0784ce3daac.tar.bz2
pyramid-e6f681fdca19490f9f7bb6274a38d0784ce3daac.zip
Image greyscaling.
-rw-r--r--docs/.static/note-color.pngbin0 -> 1562 bytes
-rw-r--r--docs/.static/note.pngbin1562 -> 1304 bytes
-rwxr-xr-xdocs/convert_images.sh9
-rw-r--r--docs/narr/project.rst27
4 files changed, 10 insertions, 26 deletions
diff --git a/docs/.static/note-color.png b/docs/.static/note-color.png
new file mode 100644
index 000000000..ff7b2fc84
--- /dev/null
+++ b/docs/.static/note-color.png
Binary files differ
diff --git a/docs/.static/note.png b/docs/.static/note.png
index ff7b2fc84..8b313d9e4 100644
--- a/docs/.static/note.png
+++ b/docs/.static/note.png
Binary files 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