[PHP-DOC] cvs: phpdoc /en/functions ming.xml misc.xml mnogosearch.xml msql.xml mysql.xml

2002-01-26 Thread Rui Hirokawa

hirokawaSat Jan 26 03:56:25 2002 EDT

  Modified files:  
/phpdoc/en/functionsming.xml misc.xml mnogosearch.xml msql.xml 
mysql.xml 
  Log:
  fixed typos and changed script code based on php notation rule.
  

Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.32 phpdoc/en/functions/ming.xml:1.33
--- phpdoc/en/functions/ming.xml:1.32   Sat Jan 19 19:42:36 2002
+++ phpdoc/en/functions/ming.xmlSat Jan 26 03:56:25 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.32 $ --
+!-- $Revision: 1.33 $ --
  reference id=ref.ming
   titleMing functions for Flash/title
   titleabbrevMing (flash)/titleabbrev
@@ -3148,7 +3148,7 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfsprite-add/function/funcdef
-  paramdefressource parameterobject/parameter/paramdef
+  paramdefresource parameterobject/parameter/paramdef
  /funcprototype
 /funcsynopsis
 warn.experimental.func;
Index: phpdoc/en/functions/misc.xml
diff -u phpdoc/en/functions/misc.xml:1.65 phpdoc/en/functions/misc.xml:1.66
--- phpdoc/en/functions/misc.xml:1.65   Thu Jan  3 10:22:36 2002
+++ phpdoc/en/functions/misc.xmlSat Jan 26 03:56:25 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.65 $ --
+!-- $Revision: 1.66 $ --
  reference id=ref.misc
   titleMiscellaneous functions/title
   titleabbrevMisc./titleabbrev
@@ -118,7 +118,7 @@
   titlefunctionconstant/function example/title
   programlisting role=php
 ![CDATA[
-php
+?php
 
 define (MAXSIZE, 100);
 
Index: phpdoc/en/functions/mnogosearch.xml
diff -u phpdoc/en/functions/mnogosearch.xml:1.32 
phpdoc/en/functions/mnogosearch.xml:1.33
--- phpdoc/en/functions/mnogosearch.xml:1.32Tue Jan  1 19:42:17 2002
+++ phpdoc/en/functions/mnogosearch.xml Sat Jan 26 03:56:25 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.32 $ --
+!-- $Revision: 1.33 $ --
 reference id=ref.mnogo
  titlemnoGoSearch Functions/title
  titleabbrevmnoGoSearch/titleabbrev
@@ -227,10 +227,10 @@

simparaExample:/simpara
informalexample
-programlisting role=C
+programlisting role=php
 ![CDATA[
-   if (Udm_Api_Version() = 30111) {
-   print  Total number of urls in database: .Udm_Get_Doc_Count($udm).br\n;
+   if (udm_api_version() = 30111) {
+   print  Total number of urls in database: .udm_get_doc_count($udm).br\n;
}
 ]]
 /programlisting
@@ -279,6 +279,7 @@
/para

literallayout
+![CDATA[
  $array[0] will contain ''
  $array[1] will contain 'Root'
  $array[2] will contain '02'
@@ -287,6 +288,7 @@
  $array[5] will contain 'Auto'
  $array[4] will contain '02031D'
  $array[5] will contain 'Ferrari'
+]]
/literallayout
example
 title
@@ -294,15 +296,17 @@
  'gt; Root gt; Sport gt; Auto gt; Ferrari'
 /title
 programlisting role=php
- lt;?php
-   $cat_path_arr=Udm_Cat_Path($udm_agent,$cat);
-   $cat_path='';
-   for ($i=0; $ilt;count($cat_path_arr); $i+=2) {
- $path=$cat_path_arr[$i];
- $name=$cat_path_arr[$i+1];
- $cat_path .=  gt; lt;a href=\$PHP_SELF?cat=$path\gt;$namelt;/agt; ;
-   }
- gt;
+![CDATA[
+?php
+  $cat_path_arr = udm_cat_path($udm_agent,$cat);
+  $cat_path = '';
+  for ($i=0; $icount($cat_path_arr); $i+=2) {
+$path = $cat_path_arr[$i];
+$name = $cat_path_arr[$i+1];
+$cat_path .=   a href=\$PHP_SELF?cat=$path\$name/a ;
+  }
+?
+]]
 /programlisting
/example
   /refsect1
@@ -341,6 +345,7 @@
/para

literallayout
+![CDATA[
   $array[0] will contain '020300'
   $array[1] will contain 'Audi'
   $array[2] will contain '020301'
@@ -349,6 +354,7 @@
   $array[5] will contain 'Opel'
   ...
  etc.
+]]
/literallayout
literallayout
 Following is an example of displaying links of the current level in format:
@@ -359,15 +365,17 @@
/literallayout
informalexample
 programlisting role=php
-  lt;?php
-   $cat_list_arr=Udm_Cat_List($udm_agent,$cat);
-   $cat_list='';
-   for ($i=0; $ilt;count($cat_list_arr); $i+=2) {
-   $path=$cat_list_arr[$i];
-   $name=$cat_list_arr[$i+1];
-   $cat_list .= lt;a href=\$PHP_SELF?cat=$path\gt;$namelt;/agt;lt;brgt;;
-   }
-  gt;
+![CDATA[
+?php
+ $cat_list_arr = udm_cat_list($udm_agent,$cat);
+ $cat_list = '';
+ for ($i=0; $icount($cat_list_arr); $i+=2) {
+   $path = $cat_list_arr[$i];
+   $name = $cat_list_arr[$i+1];
+   $cat_list .= a href=\$PHP_SELF?cat=$path\$name/abr;
+ }
+?
+]]
 /programlisting
/informalexample

@@ -905,11 +913,11 @@
  
  simparaExample:/simpara
  informalexample
-  programlisting role=C
- if (! Udm_Load_Ispell_Data($udm,UDM_ISPELL_TYPE_DB,'','',1)) {
- printf(Error #%d: '%s'\n,Udm_Errno($udm),Udm_Error($udm));
- exit;
- }
+  programlisting role=php
+if (! udm_load_ispell_data($udm,UDM_ISPELL_TYPE_DB,'','',1)) {
+  printf(Error #%d: '%s'\n, udm_errno($udm), udm_error($udm));
+  exit;
+}
   

[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2002-01-19 Thread Kenneth Schwartz

irc-htmlSat Jan 19 19:42:36 2002 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  whitespace correction
  

Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.31 phpdoc/en/functions/ming.xml:1.32
--- phpdoc/en/functions/ming.xml:1.31   Wed Jan  2 06:51:18 2002
+++ phpdoc/en/functions/ming.xmlSat Jan 19 19:42:36 2002
@@ -1,19 +1,19 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.31 $ --
+!-- $Revision: 1.32 $ --
  reference id=ref.ming
   titleMing functions for Flash/title
   titleabbrevMing (flash)/titleabbrev
 
   partintro
-  warn.experimental;
+   warn.experimental;
sect1 id=ming.intro
 titleIntroduction/title
 simpara
-Ming is an open-source (LGPL) library which allows you to create SWF
-(Flash) format movies.  Ming supports almost all of Flash 4's features,
-including: shapes, gradients, bitmaps (pngs and jpegs), morphs (shape
-tweens), text, buttons, actions, sprites (movie clips), streaming mp3,
-and color transforms--the only thing that's missing is sound events.
+ Ming is an open-source (LGPL) library which allows you to create SWF
+ (Flash) format movies.  Ming supports almost all of Flash 4's features,
+ including: shapes, gradients, bitmaps (pngs and jpegs), morphs (shape
+ tweens), text, buttons, actions, sprites (movie clips), streaming mp3,
+ and color transforms--the only thing that's missing is sound events.
 /simpara
 simpara
  Ming is not an acronym. 
@@ -25,13 +25,13 @@
  or the entire frame if not embedded. 
 /simpara
 simpara
-Ming offers a number of advantages over the existing PHP/libswf module.
-You can use Ming anywhere you can compile the code, whereas libswf is
-closed-source and only available for a few platforms, Windows not one of
-them.  Ming provides some insulation from the mundane details of the SWF
-file format, wrapping the movie elements in PHP objects.  Also, Ming is
-still being maintained; if there's a feature that you want to see, just
-let us know ulink url=mailto:email.ming;;email.ming;/ulink.
+ Ming offers a number of advantages over the existing PHP/libswf module.
+ You can use Ming anywhere you can compile the code, whereas libswf is
+ closed-source and only available for a few platforms, Windows not one of
+ them.  Ming provides some insulation from the mundane details of the SWF
+ file format, wrapping the movie elements in PHP objects.  Also, Ming is
+ still being maintained; if there's a feature that you want to see, just
+ let us know ulink url=mailto:email.ming;;email.ming;/ulink.
 /simpara
 simpara
  Ming was added in PHP 4.0.5.
@@ -41,10 +41,10 @@
sect1 id=ming.install
 titleInstallation/title
 para
-To use Ming with PHP, you first need to build and install the Ming
-library.  Source code and installation instructions are available at the
-Ming home page : ulink url=url.ming;url.ming;/ulink
-along with examples, a small tutorial, and the latest news.
+ To use Ming with PHP, you first need to build and install the Ming
+ library.  Source code and installation instructions are available at the
+ Ming home page : ulink url=url.ming;url.ming;/ulink
+ along with examples, a small tutorial, and the latest news.
 /para
 para
  Download the ming archive. Unpack the archive. Go in the
@@ -98,71 +98,71 @@
 /simpara
 itemizedlist
  listitem
- simpara
-  functionswfmovie/function.
+  simpara
+   functionswfmovie/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswfshape/function.
+  simpara
+   functionswfshape/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswfdisplayitem/function.
+  simpara
+   functionswfdisplayitem/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswfgradient/function.
+  simpara
+   functionswfgradient/function.
   /simpara
-/listitem
+ /listitem
 
  listitem
- simpara
-  functionswfbitmap/function.
+  simpara
+   functionswfbitmap/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswffill/function.
+  simpara
+   functionswffill/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswfmorph/function.
+  simpara
+   functionswfmorph/function.
   /simpara
-/listitem
+ /listitem
  listitem
- simpara
-  functionswftext/function.
+  simpara
+   functionswftext/function.
   /simpara
-/listitem
+ 

[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2002-01-02 Thread jim winstead

jimwWed Jan  2 06:51:18 2002 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  swfaction: incorporate user notes re: getURL and loadMovie
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.30 phpdoc/en/functions/ming.xml:1.31
--- phpdoc/en/functions/ming.xml:1.30   Sat Dec 15 09:47:51 2001
+++ phpdoc/en/functions/ming.xmlWed Jan  2 06:51:18 2002
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.30 $ --
+!-- $Revision: 1.31 $ --
  reference id=ref.ming
   titleMing functions for Flash/title
   titleabbrevMing (flash)/titleabbrev
@@ -3782,22 +3782,22 @@
   varlistentry
termgetURL(url, target, [method])/term
listitem
-   simpara
-Load the given url into the named target. The target argument can be a 
- frame name (I think), or one of the magical values _level0 (replaces 
- current movie) or _level1 (loads new movie on top of current movie). 
- The optional method argument can be post or get if you want to submit 
+simpara
+ Load the given URL into the named target. The target argument
+ corresponds to HTML document targets (such as _top or _blank).
+ The optional method argument can be POST or GET if you want to submit 
  variables back to the server.  
-   /simpara
+/simpara
/listitem
   /varlistentry
   varlistentry
termloadMovie(url, target)/term
listitem
-   simpara
-Same as above, more or less. Come to think of it, I don't quite know what 
-the difference is.  
-   /simpara
+simpara
+ Load the given URL into the named target. The target argument can be a 
+ frame name (I think), or one of the magical values _level0 (replaces 
+ current movie) or _level1 (loads new movie on top of current movie). 
+/simpara
/listitem
   /varlistentry
   varlistentry





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-11-30 Thread Georg Richter

georg   Sat Dec  1 01:46:44 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  
  typo fixed
  
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.27 phpdoc/en/functions/ming.xml:1.28
--- phpdoc/en/functions/ming.xml:1.27   Tue Nov 20 18:58:45 2001
+++ phpdoc/en/functions/ming.xmlSat Dec  1 01:46:44 2001
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.27 $ --
+!-- $Revision: 1.28 $ --
  reference id=ref.ming
   titleMing functions for Flash/title
   titleabbrevMing (flash)/titleabbrev
@@ -92,7 +92,7 @@
sect1 id=ming.use
 titleHow to use Ming/title
 simpara
- Ming introduces 13 new object in PHP, all with matching methods and 
+ Ming introduces 13 new objects in PHP, all with matching methods and 
  attributes. To use them, you need to know about 
  link linkend=language.oopobjects/link.
 /simpara





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-11-10 Thread jim winstead

jimwSat Nov 10 18:46:32 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  fix typo
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.25 phpdoc/en/functions/ming.xml:1.26
--- phpdoc/en/functions/ming.xml:1.25   Sat Nov 10 16:49:38 2001
+++ phpdoc/en/functions/ming.xmlSat Nov 10 18:46:30 2001
@@ -1,5 +1,5 @@
 ?xml version=1.0 encoding=iso-8859-1?
-!-- $Revision: 1.25 $ --
+!-- $Revision: 1.26 $ --
  reference id=ref.ming
   titleMing functions for Flash/title
   titleabbrevMing (flash)/titleabbrev
@@ -1685,7 +1685,7 @@
 /funcsynopsis
warn.experimental.func;
 simpara
- functionswfshape-setrightfill/function draws a line (using the current line 
style
+ functionswfshape-drawline/function draws a line (using the current line 
+style
  set by functionswfshape-setline/function) from the current pen position to 
  displacement (parameterdx/parameter,parameterdy/parameter).
 /simpara





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-05-15 Thread Damien Seguy

damsTue May 15 02:17:28 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  paramdefinteger - int
  

Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.9 phpdoc/en/functions/ming.xml:1.10
--- phpdoc/en/functions/ming.xml:1.9Thu Apr 19 06:06:56 2001
+++ phpdoc/en/functions/ming.xmlTue May 15 02:17:28 2001
@@ -1103,10 +1103,10 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfdisplayitem-addcolor/function/funcdef
-  paramdefinteger parameteroptionalred/optional/parameter/paramdef
-  paramdefinteger parameteroptionalgreen/optional/parameter/paramdef
-  paramdefinteger parameteroptionalblue/optional/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint parameteroptionalred/optional/parameter/paramdef
+  paramdefint parameteroptionalgreen/optional/parameter/paramdef
+  paramdefint parameteroptionalblue/optional/parameter/paramdef
+  paramdefint parameteroptionala/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 para
@@ -1132,10 +1132,10 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfdisplayitem-multcolor/function/funcdef
-  paramdefinteger parameteroptionalred/optional/parameter/paramdef
-  paramdefinteger parameteroptionalgreen/optional/parameter/paramdef
-  paramdefinteger parameteroptionalblue/optional/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint parameteroptionalred/optional/parameter/paramdef
+  paramdefint parameteroptionalgreen/optional/parameter/paramdef
+  paramdefint parameteroptionalblue/optional/parameter/paramdef
+  paramdefint parameteroptionala/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 para
@@ -1252,10 +1252,10 @@
  funcprototype
   funcdefvoid functionswfshape-setline/function/funcdef
   paramdefint parameterwidth/parameter/paramdef
-  paramdefinteger parameteroptionalred/optional/parameter/paramdef
-  paramdefinteger parameteroptionalgreen/optional/parameter/paramdef
-  paramdefinteger parameteroptionalblue/optional/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint parameteroptionalred/optional/parameter/paramdef
+  paramdefint parameteroptionalgreen/optional/parameter/paramdef
+  paramdefint parameteroptionalblue/optional/parameter/paramdef
+  paramdefint parameteroptionala/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 para
@@ -1345,24 +1345,24 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfshape-addfill/function/funcdef
-  paramdefinteger parameterred/parameter/paramdef
-  paramdefinteger parametergreen/parameter/paramdef
-  paramdefinteger parameterblue/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint parameterred/parameter/paramdef
+  paramdefint parametergreen/parameter/paramdef
+  paramdefint parameterblue/parameter/paramdef
+  paramdefint parameteroptionala/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 funcsynopsis
  funcprototype
   funcdefvoid functionswfshape-addfill/function/funcdef
   paramdefSWFbitmap parameterbitmap/parameter/paramdef
-  paramdefinteger parameteroptionalflags/optional/parameter/paramdef
+  paramdefint parameteroptionalflags/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 funcsynopsis
  funcprototype
   funcdefvoid functionswfshape-addfill/function/funcdef
   paramdefSWFGradient parametergradient/parameter/paramdef
-  paramdefinteger parameteroptionalflags/optional/parameter/paramdef
+  paramdefint parameteroptionalflags/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 para
@@ -1475,10 +1475,10 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfshape-setleftfill/function/funcdef
-  paramdefinteger parameterred/parameter/paramdef
-  paramdefinteger parametergreen/parameter/paramdef
-  paramdefinteger parameterblue/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint parameterred/parameter/paramdef
+  paramdefint parametergreen/parameter/paramdef
+  paramdefint parameterblue/parameter/paramdef
+  paramdefint parameteroptionala/optional/parameter/paramdef
  /funcprototype
 /funcsynopsis
 para
@@ -1522,10 +1522,10 @@
 funcsynopsis
  funcprototype
   funcdefvoid functionswfshape-setrightfill/function/funcdef
-  paramdefinteger parameterred/parameter/paramdef
-  paramdefinteger parametergreen/parameter/paramdef
-  paramdefinteger parameterblue/parameter/paramdef
-  paramdefinteger parameteroptionala/optional/parameter/paramdef
+  paramdefint 

[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-04-02 Thread Damien Seguy

damsMon Apr  2 01:16:24 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Correcting while translating. Some left titles
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.6 phpdoc/en/functions/ming.xml:1.7
--- phpdoc/en/functions/ming.xml:1.6Fri Mar 30 00:16:20 2001
+++ phpdoc/en/functions/ming.xmlMon Apr  2 01:16:24 2001
@@ -1712,7 +1712,7 @@
   refentry id="function.swfgradient"
refnamediv
 refnameSWFGradient/refname
-refpurposeLoads a font definition/refpurpose
+refpurposeCreates a gradient object/refpurpose
/refnamediv
refsect1
 titleDescription/title
@@ -2312,7 +2312,7 @@
   refentry id="function.swftext.setheight"
refnamediv
 refnameSWFText-setHeight/refname
-refpurposeSets the current font heigh/refpurpose
+refpurposeSets the current font height/refpurpose
/refnamediv
refsect1
 titleDescription/title
@@ -2358,7 +2358,7 @@
   refentry id="function.swftext.setcolor"
refnamediv
 refnameSWFText-setColor/refname
-refpurposeSets the current font heigh/refpurpose
+refpurposeSets the current font color/refpurpose
/refnamediv
refsect1
 titleDescription/title
@@ -2459,8 +2459,9 @@
  /funcprototype
 /funcsynopsis
 para
- If name is the name of an FDB file (i.e., it ends in ".fdb"), load the font 
- definition found in said file. Otherwise, create a browser-defined font 
reference. 
+ If parameterfilename/parameter is the name of an FDB file 
+ (i.e., it ends in ".fdb"), load the font definition found in said 
+ file. Otherwise, create a browser-defined font reference. 
 /para
 para
  FDB ("font definition block") is a very simple wrapper for the SWF DefineFont2
@@ -2479,11 +2480,12 @@
 ?gt;
 /programlisting
 will give you the standard sans-serif font, probably the same as what you'd 
get
-with lt;font name="sans-serif"gt; in HTML.
+with literallt;font name="sans-serif"gt;/literal in HTML.
/para
para
-Returns a reference to the font definition, for use in the SWFText setFont 
method 
-and the SWFTextField setFont method. 
+functionswffont/function returns a reference to the font 
+definition, for use in the functionSWFText-setFont/function
+and the functionSWFTextField-setFont/function methods. 
 /para
 simpara
  SWFFont has the following methods : functionswffont-getwidth/function.
@@ -2505,9 +2507,9 @@
  /funcprototype
 /funcsynopsis
 para
- functionnom_de_la_fonction/function returns the string 
+ functionswffont-getwidth/function returns the string 
  parameterstring/parameter's width, using font's default scaling. 
- You'll probably want to use the SWFText version of this method which
+ You'll probably want to use the functionSWFText/function version of this 
+method which
  uses the text object's scale. 
 /para
/refsect1
@@ -2540,7 +2542,7 @@
 itemizedlist
  listitem
   simpara
-   SWFTEXTFIELD_NOEDIT : indicates that the field shouldn't be user-editable
+   SWFTEXTFIELD_NOEDIT indicates that the field shouldn't be user-editable
   /simpara
  /listitem
  listitem
@@ -2569,7 +2571,8 @@
   /simpara
  /listitem
 /itemizedlist
-Flags are combined with the bitwise OR operation. For example, 
+Flags are combined with the bitwise 
+link linkend="language.operators.bitwise"OR/link operation. For example, 
 programlisting role="php"
 lt;?php
 $t = newSWFTextField(SWFTEXTFIELD_PASSWORD | SWFTEXTFIELD_NOEDIT); 
@@ -2635,7 +2638,7 @@
   refentry id="function.swftextfield.align"
refnamediv
 refnameSWFTextField-align/refname
-refpurposeSets the text field width and height/refpurpose
+refpurposeSets the text field alignment/refpurpose
/refnamediv
refsect1
 titleDescription/title
@@ -2648,7 +2651,7 @@
 para
  functionswftextfield-align/function sets the text field alignment
  to parameteralignement/parameter. Valid values for 
- parameteralignement/parameter are: SWFTEXTFIELD_ALIGN_LEFT, 
+ parameteralignement/parameter are : SWFTEXTFIELD_ALIGN_LEFT, 
  SWFTEXTFIELD_ALIGN_RIGHT, SWFTEXTFIELD_ALIGN_CENTER and 
  SWFTEXTFIELD_ALIGN_JUSTIFY.
 /para
@@ -2856,14 +2859,15 @@
  /funcprototype
 /funcsynopsis
 para
- SWFSprite are also known as a "movie clip", this allows one to create objects
- which are animated in their own timelines. Hence, the sprite has most of the
- same methods as the movie. 
+ functionswfsprite/function are also known as a "movie clip",
+ this allows one to create objects which are animated in their own
+ timelines. Hence, the sprite has most of the same methods as the movie. 
 /para
 simpara
- SWFSprite has the 

[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-04-02 Thread Damien Seguy

damsMon Apr  2 05:56:37 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Correcting while translating. Some left titles
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.7 phpdoc/en/functions/ming.xml:1.8
--- phpdoc/en/functions/ming.xml:1.7Mon Apr  2 01:16:24 2001
+++ phpdoc/en/functions/ming.xmlMon Apr  2 05:56:36 2001
@@ -3170,7 +3170,7 @@
   refentry id="function.swfbutton.addshape"
refnamediv
 refnameSWFbutton-addShape/refname
-refpurposeAdds an object to a sprite/refpurpose
+refpurposeAdds a shape to a button/refpurpose
/refnamediv
refsect1
 titleDescription/title
@@ -3183,7 +3183,8 @@
 /funcsynopsis
 para
  functionswfbutton-addshape/function adds the shape 
- parametershape/parameter to this button. The following flags are valid: 
+ parametershape/parameter to this button. The following 
+ parameterflags/parameter' values are valid: 
  SWFBUTTON_UP, SWFBUTTON_OVER, SWFBUTTON_DOWN or SWFBUTTON_HIT.
  SWFBUTTON_HIT isn't ever displayed, it defines the hit region for the button.
  That is, everywhere the hit shape would be drawn is considered a "touchable" 
@@ -3665,7 +3666,7 @@
 /simpara
/listitem
   /itemizedlist
-  So, setting a sprite's x position is as simple as /box.x = 100;. 
+  So, setting a sprite's x position is as simple as literal/box.x = 
+100;/literal. 
   Why the slash in front of the box, though? That's how flash keeps
   track of the sprites in the movie, just like a unix filesystem- 
   here it shows that box is at the top level. If the sprite named 





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-03-30 Thread Damien Seguy

damsFri Mar 30 00:16:20 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Minor typos.
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.5 phpdoc/en/functions/ming.xml:1.6
--- phpdoc/en/functions/ming.xml:1.5Thu Mar 29 04:24:11 2001
+++ phpdoc/en/functions/ming.xmlFri Mar 30 00:16:20 2001
@@ -619,7 +619,7 @@
 para
  functionswfdisplayitem-scale/function scales the current object by 
  (parameterdx/parameter,parameterdy/parameter) from its
- current position.
+ current size.
 /para
 simpara
  The object may be a functionswfshape/function, a 
@@ -991,7 +991,7 @@
   refentry id="function.swfdisplayitem.setratio"
refnamediv
 refnameSWFDisplayItem-setRatio/refname
-refpurposeSets the object's ratio to ratio./refpurpose
+refpurposeSets the object's ratio./refpurpose
/refnamediv
refsect1
 titleDescription/title





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-03-29 Thread Damien Seguy

damsThu Mar 29 02:39:17 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Added some links.
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.3 phpdoc/en/functions/ming.xml:1.4
--- phpdoc/en/functions/ming.xml:1.3Fri Mar 23 08:26:50 2001
+++ phpdoc/en/functions/ming.xmlThu Mar 29 02:39:16 2001
@@ -3,19 +3,6 @@
   titleabbrevMing (flash)/titleabbrev
 
   partintro
-   simpara
-This documentation ist not finished yet. Don't start to translate it
-or use it as a programming reference ([EMAIL PROTECTED]).
-   /simpara
-   !--
-DO NOT START TRANSLATING YET!
-THIS DOCUMENTATION IS UNDER TEST 
-There are still a LOT of typos eradicating, and examples
-adding.
---
-   simpara
-These functions are not yet available if PHP. 
-   /simpara
sect1 id="ming.intro"
 titleIntroduction/title
 simpara
@@ -61,9 +48,11 @@
  Ming directory. make. make install.
 /para
 para
- This will build libming.so and install it into /usr/lib/, 
- and copy ming.h into /usr/include/. Edit the PREFIX= line 
- in the Makefile to change the installation directory. 
+ This will build filenamelibming.so/filename and install it 
+ into filename/usr/lib//filename,  and copy 
+ filenameming.h/filename into filename/usr/include/filename. 
+ Edit the literalPREFIX=/literal line  in the 
+ filenameMakefile/filename to change the installation directory. 
 /para
 sect2 id="ming.install.php.unix"
  titlebuilt into php (unix)/title
@@ -73,23 +62,23 @@
cp php_ext/* lt;phpdir/ext/ming 
cd lt;phpdir 
./buildconf 
-   ./configure --with-ming lt;other config options 
-   build and install php as usual, 
-   restart web server if necessary 
+   ./configure --with-ming lt;other config optionsgt;
   /literallayout
+  Build and install php as usual, 
+  Restart web server if necessary 
  /para
 /sect2
 sect2 id="ming.install.php_module.unix"
  titlebuilt into php (unix)/title
  para
-  literallayout
-   download php_ming.so.gz 
-   uncompress it and copy it to your php modules directory.
-   (you can find your php module directory by running php-config --extension-dir).
-   Now either just add 'extension=php_ming.so' to your php.ini 
-   file, or put 'dl('php_ming.so');' at the head of all of your
-   Ming scripts. 
-  /literallayout
+  download filenamephp_ming.so.gz/filename. 
+  uncompress it and copy it to your php modules directory.
+  (you can find your php module directory by running 
+  commandphp-config --extension-dir/command).
+  Now either just add literalextension=php_ming.so/literal 
+  to your filenamephp.ini/filename file, or put 
+  literaldl('php_ming.so');/literal at the head of all of your
+  Ming scripts. 
  /para
 /sect2
/sect1
@@ -285,9 +274,9 @@
 /para
 para
  For displayable types (shape, text, button, sprite), this returns an 
- SWFDisplayItem, a handle to the object in a display list. Thus, you can 
- add the same shape to a movie multiple times and get separate handles 
- back for each separate instance. 
+ functionSWFDisplayItem/function, a handle to the object in a display
+ list. Thus, you can add the same shape to a movie multiple 
+ times and get separate handles back for each separate instance. 
 /para
 simpara
  See also all other objects (adding this later), and
@@ -344,7 +333,8 @@
  functionswfmovie-setbackground/function sets the background color. Why is 
  there no rgba version? Think about it. (Actually, that's not such a dumb 
  question after all- you might want to let the html background show through.
- There's a way to do that, but it only works on IE4. Search the MM site for
+ There's a way to do that, but it only works on IE4. Search the 
+ ulink url="url.macromedia;"url.macromedia;/ulink site for
  details.) 
 /para
/refsect1
@@ -452,7 +442,7 @@
  functionswfmovie-streammp3/function streams the mp3 file 
  parametermp3FileName/parameter. Not very robust in dealing with 
  oddities (can skip over an initial ID3 tag, but that's about it). 
- Like SWFShape::addJpegFill, this isn't a stable function- we'll 
+ Like functionSWFShape-addJpegFill/function, this isn't a stable function- 
+we'll 
  probably need to make a separate SWFSound object to contain sound types. 
 /para
 para





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-03-29 Thread Anil Madhavapeddy

avsmThu Mar 29 04:24:14 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Close tag properly (fix en language build)
  PR:
  Submitted by:
  Reviewed by:
  Obtained from:
  
  
Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.4 phpdoc/en/functions/ming.xml:1.5
--- phpdoc/en/functions/ming.xml:1.4Thu Mar 29 02:39:16 2001
+++ phpdoc/en/functions/ming.xmlThu Mar 29 04:24:11 2001
@@ -50,7 +50,7 @@
 para
  This will build filenamelibming.so/filename and install it 
  into filename/usr/lib//filename,  and copy 
- filenameming.h/filename into filename/usr/include/filename. 
+ filenameming.h/filename into filename/usr/include//filename. 
  Edit the literalPREFIX=/literal line  in the 
  filenameMakefile/filename to change the installation directory. 
 /para





[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-03-23 Thread Damien Seguy

damsFri Mar 23 08:04:05 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Corrected all function return's type.
  

Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.1 phpdoc/en/functions/ming.xml:1.2
--- phpdoc/en/functions/ming.xml:1.1Thu Mar 15 06:32:09 2001
+++ phpdoc/en/functions/ming.xmlFri Mar 23 08:04:04 2001
@@ -43,6 +43,9 @@
 still being maintained; if there's a feature that you want to see, just
 let us know ulink url="mailto:email.ming;"email.ming;/ulink.
 /simpara
+simpara
+ Ming was added in PHP 4.0.5.
+/simpara
/sect1

sect1 id="ming.install"
@@ -159,15 +162,11 @@
   functionswfbutton/function.
   /simpara
 /listitem
-!--
-  Commented out, until they are documented.
-  Be patient!
  listitem
  simpara
   functionswfaction/function.
   /simpara
 /listitem
---
 /itemizedlist
/sect1
   /partintro
@@ -216,7 +215,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-output/function/funcdef
+  fundefvoid functionswfmovie-output/function/funcdef
   paramdefvoid/paramdef
  /funcprototype
 /funcsynopsis
@@ -235,8 +234,10 @@
 /simpara
simpara
 See examples in : 
-functionswfmovie-streammp3/function, 
functionswfdisplayitem-rotateto/function,
-functionswfaction/function... Any example will use this method.
+functionswfmovie-streammp3/function, 
+functionswfdisplayitem-rotateto/function,
+functionswfaction/function... 
+Any example will use this method.
/simpara
/refsect1
   /refentry
@@ -250,7 +251,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-save/function/funcdef
+  fundefvoid functionswfmovie-save/function/funcdef
   paramdefstring parameterfilename/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -273,7 +274,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-add/function/funcdef
+  fundefvoid functionswfmovie-add/function/funcdef
   paramdefressource parameterinstance/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -310,7 +311,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-remove/function/funcdef
+  fundefvoid functionswfmovie-remove/function/funcdef
   paramdefressource parameterinstance/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -333,7 +334,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-setbackground/function/funcdef
+  fundefvoid functionswfmovie-setbackground/function/funcdef
   paramdefint parameterred/parameter/paramdef
   paramdefint parametergreen/parameter/paramdef
   paramdefint parameterblue/parameter/paramdef
@@ -358,7 +359,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-setrate/function/funcdef
+  fundefvoid functionswfmovie-setrate/function/funcdef
   paramdefint parameterrate/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -381,7 +382,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-setdimension/function/funcdef
+  fundefvoid functionswfmovie-setdimension/function/funcdef
   paramdefint parameterwidth/parameter/paramdef
   paramdefint parameterheight/parameter/paramdef
  /funcprototype
@@ -402,7 +403,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-setframes/function/funcdef
+  fundefvoid functionswfmovie-setframes/function/funcdef
   paramdefstring parameternumberofframes/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -422,7 +423,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-nextframe/function/funcdef
+  fundefvoid functionswfmovie-nextframe/function/funcdef
   paramdefvoid /paramdef
  /funcprototype
 /funcsynopsis
@@ -443,7 +444,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefstring functionswfmovie-streammp3/function/funcdef
+  fundefvoid functionswfmovie-streammp3/function/funcdef
   paramdefstring parametermp3FileName/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -529,7 +530,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  funcdefbool functionswfdisplayitem-moveto/function/funcdef
+  fundefvoid functionswfdisplayitem-moveto/function/funcdef
   paramdefint parameterx/parameter/paramdef
   paramdefint parametery/parameter/paramdef
  /funcprototype
@@ -559,7 +560,7 @@
 titleDescription/title
 funcsynopsis
   

[PHP-DOC] cvs: phpdoc /en/functions ming.xml

2001-03-23 Thread Egon Schmid

eschmid Fri Mar 23 08:26:50 2001 EDT

  Modified files:  
/phpdoc/en/functionsming.xml 
  Log:
  Changed fundef to funcdef.
  

Index: phpdoc/en/functions/ming.xml
diff -u phpdoc/en/functions/ming.xml:1.2 phpdoc/en/functions/ming.xml:1.3
--- phpdoc/en/functions/ming.xml:1.2Fri Mar 23 08:04:04 2001
+++ phpdoc/en/functions/ming.xmlFri Mar 23 08:26:50 2001
@@ -215,7 +215,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-output/function/funcdef
+  funcdefvoid functionswfmovie-output/function/funcdef
   paramdefvoid/paramdef
  /funcprototype
 /funcsynopsis
@@ -251,7 +251,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-save/function/funcdef
+  funcdefvoid functionswfmovie-save/function/funcdef
   paramdefstring parameterfilename/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -274,7 +274,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-add/function/funcdef
+  funcdefvoid functionswfmovie-add/function/funcdef
   paramdefressource parameterinstance/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -311,7 +311,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-remove/function/funcdef
+  funcdefvoid functionswfmovie-remove/function/funcdef
   paramdefressource parameterinstance/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -334,7 +334,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-setbackground/function/funcdef
+  funcdefvoid functionswfmovie-setbackground/function/funcdef
   paramdefint parameterred/parameter/paramdef
   paramdefint parametergreen/parameter/paramdef
   paramdefint parameterblue/parameter/paramdef
@@ -359,7 +359,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-setrate/function/funcdef
+  funcdefvoid functionswfmovie-setrate/function/funcdef
   paramdefint parameterrate/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -382,7 +382,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-setdimension/function/funcdef
+  funcdefvoid functionswfmovie-setdimension/function/funcdef
   paramdefint parameterwidth/parameter/paramdef
   paramdefint parameterheight/parameter/paramdef
  /funcprototype
@@ -403,7 +403,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-setframes/function/funcdef
+  funcdefvoid functionswfmovie-setframes/function/funcdef
   paramdefstring parameternumberofframes/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -423,7 +423,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-nextframe/function/funcdef
+  funcdefvoid functionswfmovie-nextframe/function/funcdef
   paramdefvoid /paramdef
  /funcprototype
 /funcsynopsis
@@ -444,7 +444,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfmovie-streammp3/function/funcdef
+  funcdefvoid functionswfmovie-streammp3/function/funcdef
   paramdefstring parametermp3FileName/parameter/paramdef
  /funcprototype
 /funcsynopsis
@@ -530,7 +530,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfdisplayitem-moveto/function/funcdef
+  funcdefvoid functionswfdisplayitem-moveto/function/funcdef
   paramdefint parameterx/parameter/paramdef
   paramdefint parametery/parameter/paramdef
  /funcprototype
@@ -560,7 +560,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfdisplayitem-move/function/funcdef
+  funcdefvoid functionswfdisplayitem-move/function/funcdef
   paramdefint parameterdx/parameter/paramdef
   paramdefint parameterdy/parameter/paramdef
  /funcprototype
@@ -591,7 +591,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfdisplayitem-scaleto/function/funcdef
+  funcdefvoid functionswfdisplayitem-scaleto/function/funcdef
   paramdefint parameterx/parameter/paramdef
   paramdefint parametery/parameter/paramdef
  /funcprototype
@@ -621,7 +621,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid functionswfdisplayitem-scale/function/funcdef
+  funcdefvoid functionswfdisplayitem-scale/function/funcdef
   paramdefint parameterdx/parameter/paramdef
   paramdefint parameterdy/parameter/paramdef
  /funcprototype
@@ -652,7 +652,7 @@
 titleDescription/title
 funcsynopsis
  funcprototype
-  fundefvoid