gimp-web r1891 - in trunk: . docs/python



Author: neo
Date: Thu Oct  9 18:47:27 2008
New Revision: 1891
URL: http://svn.gnome.org/viewvc/gimp-web?rev=1891&view=rev

Log:
2008-10-09  Sven Neumann  <sven gimp org>

	* docs/python/pygimp.txt
	* docs/python/pygimp.html
	* docs/python/index.html: applied patches from tks (bug #555535
	and bug #555021).



Modified:
   trunk/ChangeLog
   trunk/docs/python/index.html
   trunk/docs/python/pygimp.html
   trunk/docs/python/pygimp.txt

Modified: trunk/docs/python/index.html
==============================================================================
--- trunk/docs/python/index.html	(original)
+++ trunk/docs/python/index.html	Thu Oct  9 18:47:27 2008
@@ -543,36 +543,6 @@
 </li>
 <li>
 <p>
-PF_INT8ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INT16ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INT32ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INTARRAY
-</p>
-</li>
-<li>
-<p>
-PF_FLOATARRAY
-</p>
-</li>
-<li>
-<p>
-PF_STRINGARRAY
-</p>
-</li>
-<li>
-<p>
 PF_COLOR
 </p>
 </li>
@@ -851,7 +821,7 @@
 descriptions of these constructors:</p>
 <dl>
 <dt>
-<tt>gimp.image</tt>(<tt>width</tt>, <tt>height</tt>, <tt>type</tt>)
+<tt>gimp.Image</tt>(<tt>width</tt>, <tt>height</tt>, <tt>type</tt>)
 </dt>
 <dd>
 <p>
@@ -860,7 +830,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.layer</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>type</tt>, <tt>opacity</tt>, <tt>mode</tt>)
+<tt>gimp.Layer</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>type</tt>, <tt>opacity</tt>, <tt>mode</tt>)
 </dt>
 <dd>
 <p>
@@ -871,7 +841,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.channel</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>opacity</tt>, <tt>colour</tt>)
+<tt>gimp.Channel</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>opacity</tt>, <tt>colour</tt>)
 </dt>
 <dd>
 <p>
@@ -881,7 +851,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.display</tt>(<tt>img</tt>)
+<tt>gimp.Display</tt>(<tt>img</tt>)
 </dt>
 <dd>
 <p>
@@ -890,7 +860,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.parasite(name, flags, data)</tt>
+<tt>gimp.Parasite(name, flags, data)</tt>
 </dt>
 <dd>
 <p>

Modified: trunk/docs/python/pygimp.html
==============================================================================
--- trunk/docs/python/pygimp.html	(original)
+++ trunk/docs/python/pygimp.html	Thu Oct  9 18:47:27 2008
@@ -543,36 +543,6 @@
 </li>
 <li>
 <p>
-PF_INT8ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INT16ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INT32ARRAY
-</p>
-</li>
-<li>
-<p>
-PF_INTARRAY
-</p>
-</li>
-<li>
-<p>
-PF_FLOATARRAY
-</p>
-</li>
-<li>
-<p>
-PF_STRINGARRAY
-</p>
-</li>
-<li>
-<p>
 PF_COLOR
 </p>
 </li>
@@ -851,7 +821,7 @@
 descriptions of these constructors:</p>
 <dl>
 <dt>
-<tt>gimp.image</tt>(<tt>width</tt>, <tt>height</tt>, <tt>type</tt>)
+<tt>gimp.Image</tt>(<tt>width</tt>, <tt>height</tt>, <tt>type</tt>)
 </dt>
 <dd>
 <p>
@@ -860,7 +830,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.layer</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>type</tt>, <tt>opacity</tt>, <tt>mode</tt>)
+<tt>gimp.Layer</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>type</tt>, <tt>opacity</tt>, <tt>mode</tt>)
 </dt>
 <dd>
 <p>
@@ -871,7 +841,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.channel</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>opacity</tt>, <tt>colour</tt>)
+<tt>gimp.Channel</tt>(<tt>img</tt>, <tt>name</tt>, <tt>width</tt>, <tt>height</tt>, <tt>opacity</tt>, <tt>colour</tt>)
 </dt>
 <dd>
 <p>
@@ -881,7 +851,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.display</tt>(<tt>img</tt>)
+<tt>gimp.Display</tt>(<tt>img</tt>)
 </dt>
 <dd>
 <p>
@@ -890,7 +860,7 @@
 </p>
 </dd>
 <dt>
-<tt>gimp.parasite(name, flags, data)</tt>
+<tt>gimp.Parasite(name, flags, data)</tt>
 </dt>
 <dd>
 <p>

Modified: trunk/docs/python/pygimp.txt
==============================================================================
--- trunk/docs/python/pygimp.txt	(original)
+++ trunk/docs/python/pygimp.txt	Thu Oct  9 18:47:27 2008
@@ -215,12 +215,6 @@
 * PF_FLOAT
 * PF_STRING
 * PF_VALUE
-* PF_INT8ARRAY
-* PF_INT16ARRAY
-* PF_INT32ARRAY
-* PF_INTARRAY
-* PF_FLOATARRAY
-* PF_STRINGARRAY
 * PF_COLOR
 * PF_COLOUR
 * PF_REGION
@@ -367,22 +361,22 @@
 create the objects used to make up an image in GIMP. Here is a set of
 descriptions of these constructors:
 
-`gimp.image`(`width`, `height`, `type`)::
+`gimp.Image`(`width`, `height`, `type`)::
   This procedure creates an image with the given dimensions and type
   (type is one of `RGB` , `GRAY` or `INDEXED` ).
-`gimp.layer`(`img`, `name`, `width`, `height`, `type`, `opacity`, `mode`)::
+`gimp.Layer`(`img`, `name`, `width`, `height`, `type`, `opacity`, `mode`)::
   Create a new layer called `name`, with the given dimensions and
   `type` (one of the `*_IMAGE` constants), `opacity` (float between 0
   and 100) and a `mode` (one of the `*_MODE` constants). The layer can
   then be added to the image with the `img.add_layer` method.
-`gimp.channel`(`img`, `name`, `width`, `height`, `opacity`, `colour`)::
+`gimp.Channel`(`img`, `name`, `width`, `height`, `opacity`, `colour`)::
   Create a new channel object with the given dimensions, `opacity` and
   `colour` (one of the `*_CHANNEL` constants). This channel can then
   be added to an image.
-`gimp.display`(`img`)::
+`gimp.Display`(`img`)::
   Create a new display window for the given image. The window will not
   be displayed until a call to `gimp.displays_flush` is made.
-`gimp.parasite(name, flags, data)`::
+`gimp.Parasite(name, flags, data)`::
   Create a new parasite. The parasite can then be attached to gimp, an
   image or a drawable. This is only available in gimp >= 1.1
 



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]