ASPN ActiveState Programmer Network
ActiveState
/ Home / Perl / PHP / Python / Tcl / XSLT /
/ Safari / My ASPN /
Cookbooks | Documentation | Mailing Lists | Modules | News Feeds | Products | User Groups


Recent Messages
List Archives
About the List
List Leaders
Subscription Options

View Subscriptions
Help

View by Topic
ActiveState
.NET Framework
Open Source
Perl
PHP
Python
Tcl
Web Services
XML & XSLT

View by Category
Database
General
SOAP
System Administration
Tools
User Interfaces
Web Programming
XML Programming


MyASPN >> Mail Archive >> phpdoc
phpdoc
[PHP-DOC] cvs: phpdoc /hu language-defs.ent language-snippets.ent /hu/features safe-mode.xml /hu/functions image.xml pgsql.xml /hu/language basic-syntax.xml
by Hartmut Holzgraefe other posts by this author
Jan 29 2002 11:04PM messages near this date
[PHP-DOC] cvs: phpdoc /hu/language functions.xml types.xml variables.xml | [PHP-DOC] cvs: phpdoc /pl/functions apache.xml
hholzgra		Tue Jan 29 18:04:42 2002 EDT

  Modified files:              
    /phpdoc/hu	language-defs.ent language-snippets.ent 
    /phpdoc/hu/features	safe-mode.xml 
    /phpdoc/hu/functions	image.xml pgsql.xml 
    /phpdoc/hu/language	basic-syntax.xml 
  Log:
  encoding and entity fixes
  
  
Index: phpdoc/hu/language-defs.ent
diff -u phpdoc/hu/language-defs.ent:1.10 phpdoc/hu/language-defs.ent:1.11
--- phpdoc/hu/language-defs.ent:1.10	Mon Jan 14 14:47:02 2002
+++ phpdoc/hu/language-defs.ent	Tue Jan 29 18:04:35 2002
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="iso-8859-2"?> 
 <!-- EN-Revision: 1.9 Maintainer: goba Status: ready --> 
 
 <!ENTITY PHPManual         "PHP kézikönyv"> 
Index: phpdoc/hu/language-snippets.ent
diff -u phpdoc/hu/language-snippets.ent:1.16 phpdoc/hu/language-snippets.ent:1.17
--- phpdoc/hu/language-snippets.ent:1.16	Sat Dec 22 07:55:13 2001
+++ phpdoc/hu/language-snippets.ent	Tue Jan 29 18:04:35 2002
@@ -1,3 +1,4 @@
+<?xml version="1.0" encoding="iso-8859-2"?> 
 <!-- EN-Revision: 1.19 Maintainer: goba Status: ready --> 
 
 <!ENTITY warn.experimental '<warning> <simpara>Ez a kiterjesztés
Index: phpdoc/hu/features/safe-mode.xml
diff -u phpdoc/hu/features/safe-mode.xml:1.6 phpdoc/hu/features/safe-mode.xml:1.7
--- phpdoc/hu/features/safe-mode.xml:1.6	Sat Dec 22 11:58:59 2001
+++ phpdoc/hu/features/safe-mode.xml	Tue Jan 29 18:04:36 2002
@@ -129,7 +129,7 @@
        </row> 
        <row> 
         <entry> <function>ifx_*</function></entry>
-        <entry> sql_safe_mode megkötések, (!= safe mode)</</entry>
+        <entry> sql_safe_mode megkötések, (!= safe mode)</entry>
        </row> 
        <row> 
         <entry> <function>ingres_*</function></entry>
Index: phpdoc/hu/functions/image.xml
diff -u phpdoc/hu/functions/image.xml:1.16 phpdoc/hu/functions/image.xml:1.17
--- phpdoc/hu/functions/image.xml:1.16	Wed Dec 12 15:51:12 2001
+++ phpdoc/hu/functions/image.xml	Tue Jan 29 18:04:36 2002
@@ -73,7 +73,7 @@
       <title> IPTC információ kinyerése a GetImageSize segítségével</title>
       <programlisting> 
 &lt;?php 
-    $size = GetImageSize ("testimg.jpg",&$info);
+    $size = GetImageSize ("testimg.jpg",&amp;$info);
     if (isset ($info["APP13"])) {
         $iptc = iptcparse ($info["APP13"]);
         var_dump ($iptc);
Index: phpdoc/hu/functions/pgsql.xml
diff -u phpdoc/hu/functions/pgsql.xml:1.7 phpdoc/hu/functions/pgsql.xml:1.8
--- phpdoc/hu/functions/pgsql.xml:1.7	Sat Dec 15 09:47:03 2001
+++ phpdoc/hu/functions/pgsql.xml	Tue Jan 29 18:04:39 2002
@@ -36,17 +36,17 @@
       </thead> 
       <tbody> 
        <row> 
-	<entry> postmaster &</entry>
+	<entry> postmaster &amp;</entry>
 	<entry> pg_connect("", "", "", "", "dbname");</entry>
 	<entry> OK</entry>
        </row> 
        <row> 
-	<entry> postmaster -i &</entry>
+	<entry> postmaster -i &amp;</entry>
 	<entry> pg_connect("", "", "", "", "dbname");</entry>
 	<entry> OK</entry>
        </row> 
        <row> 
-	<entry> postmaster &</entry>
+	<entry> postmaster &amp;</entry>
 	<entry> pg_connect("localhost", "", "", "", "dbname");</entry>
 	<entry> 
 	 Unable to connect to PostgreSQL server: connectDB() failed:
@@ -61,7 +61,7 @@
 	</entry> 
        </row> 
        <row> 
-	<entry> postmaster -i &</entry>
+	<entry> postmaster -i &amp;</entry>
 	<entry> pg_connect("localhost", "", "", "", "dbname");</entry>
 	<entry> OK</entry>
        </row> 
@@ -146,7 +146,7 @@
 &lt;?php
 $result = pg_exec($conn, "INSERT INTO verlag VALUES ('Autor')");
 $cmdtuples = pg_cmdtuples($result);
-echo $cmdtuples . " <- cmdtuples affected.";
+echo $cmdtuples . " &lt;- cmdtuples affected.";
 ?> 
       </programlisting> 
      </example> 
@@ -490,7 +490,7 @@
 }
 
 $row = pg_fetch_row ($result, 0);
-echo $row[0] . " &lt;- row\n";  # < helyett valami más kell
+echo $row[0] . " &lt;- row\n";  # &lt; helyett valami más kell
 
 $row = pg_fetch_row ($result, 1);
 echo $row[0] . " &lt;- row\n"; # itt is
Index: phpdoc/hu/language/basic-syntax.xml
diff -u phpdoc/hu/language/basic-syntax.xml:1.11 phpdoc/hu/language/basic-syntax.xml:1.12
--- phpdoc/hu/language/basic-syntax.xml:1.11	Sat Jan  5 09:03:35 2002
+++ phpdoc/hu/language/basic-syntax.xml	Tue Jan 29 18:04:40 2002
@@ -21,7 +21,7 @@
    <para> 
     Négyféle jelöléssel lehet az állomány bizonyos részeit PHP kódként
     megjelölni. Ezek közül csak kettõ használható bármilyen esetben:
-    &lt;?php. . .?&gt; and &lt;script language="php"&gt;. . .&lt;/script&gt,
+    &lt;?php. . .?&gt; and &lt;script language="php"&gt;. . .&lt;/script&gt;
     a másik kettõ ki és bekapcsolható a <filename> php.ini</filename> 
     konfigurációs fájlban. Bár a rövid vagy az ASP-stílusú formák kényelmesnek
     tûnnek, egyszersmind kevésbé hordozhatók, mint a hosszabb változatok.

Privacy Policy | Email Opt-out | Feedback | Syndication
© ActiveState Software Inc. All rights reserved