resources.php 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213
  1. <?php
  2. require_once('include/prepend.php');
  3. commonHeader('Resources');
  4. ?>
  5. <h1>Resources</h1>
  6. <p>
  7. There are various resources for PHP-GTK. Below are
  8. listed the ones that we are aware of. If you know of others
  9. please <?php print_email('php-gtk-webmaster_at_lists_dot_php_dot_net', 'email the webmaster'); ?>.
  10. </p>
  11. <a name="lists"></a>
  12. <h2>Mailing Lists</h2>
  13. <p>
  14. There are various mailing lists for PHP-GTK. Each list is dedicated to a
  15. different part of the PHP-GTK project. To subscribe to a list, send an email
  16. to the address listed in the SUBSCRIBE column.</p>
  17. <table style="border: 1px solid black; text-align: left;" rules="all">
  18. <thead>
  19. <tr>
  20. <th>LIST</th>
  21. <th>DESCRIPTION</th>
  22. <th>ADDRESS</th>
  23. <th>SUBSCRIBE</th>
  24. <th>ARCHIVE</th>
  25. </tr>
  26. </thead>
  27. <tbody>
  28. <tr valign="top">
  29. <td><strong>php-gtk-general</strong></td>
  30. <td>For general discussion about using PHP-GTK.</td>
  31. <td><?php print_email('php-gtk-general_at_lists_dot_php_dot_net'); ?></td>
  32. <td><?php print_email('php-gtk-general-subscribe_at_lists_dot_php_dot_net'); ?></td>
  33. <td><?php print_link('http://marc.theaimsgroup.com/?l=php-gtk-general', 'MARC'); ?></td>
  34. </tr>
  35. <tr valign="top">
  36. <td><strong>php-gtk-dev</strong></td>
  37. <td>For the discussion about the development of PHP-GTK itself.</td>
  38. <td><?php print_email('php-gtk-dev_at_lists_dot_php_dot_net'); ?></td>
  39. <td><?php print_email('php-gtk-dev-subscribe_at_lists_dot_php_dot_net'); ?></td>
  40. <td><?php print_link('http://marc.theaimsgroup.com/?l=php-gtk-dev', 'MARC'); ?></td>
  41. </tr>
  42. <tr valign="top">
  43. <td><strong>php-gtk-doc</strong></td>
  44. <td>For discussion about the writing and translation of the PHP-GTK documentation.</td>
  45. <td><?php print_email('php-gtk-doc_at_lists_dot_php_dot_net'); ?></td>
  46. <td><?php print_email('php-gtk-doc-subscribe_at_lists_dot_php_dot_net'); ?></td>
  47. <td><?php print_link('http://marc.theaimsgroup.com/?l=php-gtk-doc', 'MARC'); ?></td>
  48. </tr>
  49. <tr valign="top">
  50. <td><strong>php-gtk-cvs</strong></td>
  51. <td>Has all CVS commits to PHP-GTK and related projects posted to it automatically.</td>
  52. <td><?php print_email('php-gtk-cvs_at_lists_dot_php_dot_net'); ?></td>
  53. <td><?php print_email('php-gtk-cvs-subscribe_at_lists_dot_php_dot_net'); ?></td>
  54. <td><?php print_link('http://marc.theaimsgroup.com/?l=php-gtk-cvs', 'MARC'); ?></td>
  55. </tr>
  56. </tbody>
  57. </table>
  58. <a name="irc"></a>
  59. <h2>IRC</h2>
  60. <p>
  61. The <b>#php-gtk</b> IRC channel on Freenode has a few regulars who can most
  62. likely answer the questions you have.
  63. </p>
  64. <a name="sites"></a>
  65. <h2>Sites</h2>
  66. <h3>Applications/Code</h3>
  67. <ul>
  68. <li><?php print_link('http://www.cweiske.de/phpgtk.htm', 'PHP-GTK Application Downloads at cweiske.de') ?><br />
  69. This site provides several PHP-GTK freeware applications for download, as well as some reusable code for PHP-GTK programmers</li>
  70. <li><?php print_link('http://www.gnope.org', 'Gnope.org'); ?><br />
  71. PHP-GTK Windows installer and support forum. Gnope.org also provides application downloads via their PEAR channel.</li>
  72. <li><?php print_link('http://pear.php.net/search.php?q=gtk2&amp;in=packages', 'PEAR PHP-GTK 2 Packages'); ?><br />
  73. PHP-GTK 2 packages available from PEAR.</li>
  74. </ul>
  75. <h3>Documentation/Help</h3>
  76. <ul>
  77. <!--
  78. <li><?php print_link('http://gtk.php.net/wiki/', 'PHP-GTK Wiki') ?><br />
  79. This site allows the PHP-GTK community to help contribute documentation to the
  80. PHP-GTK project.</li>
  81. -->
  82. <li><?php print_link('http://developer.gnome.org/doc/API/2.0/gtk/index.html', 'GTK+ Reference Manual'); ?><br />
  83. The GTK+ manual with a list of all widgets and their corresponding functions/attributes.</li>
  84. <li><?php print_link('http://mail.gnome.org/archives/gtk-list/', 'GTK+ mailing list archives'); ?><br />
  85. This list might be useful if you have a certain GTK+ question or problem that
  86. PHP-GTK list has no information about.</li>
  87. <li><?php print_link('http://www.writingup.com/blog/phpgtk2', 'Ron Tarrant\'s PHP-GTK 2 Blog'); ?><br />
  88. Ron Tarrant's blog contains many articles and tutorials for PHP-GTK 2 developers.</li>
  89. <li><?php print_link('http://crisscott.com/category/php-gtk/', 'Crisscott.com'); ?><br />
  90. PHP-GTK weekly news summaries.</li>
  91. <li><?php print_link('http://www.kksou.com/php-gtk2/index.php', 'kksou.com'); ?><br />
  92. PHP-GTK Cookbook.</li>
  93. </ul>
  94. <h3>Regional Portals</h3>
  95. <ul>
  96. <li><?php print_link('http://www.php-gtk.com.br/', 'Brazilian PHP-GTK Community Portal'); ?></li>
  97. <li><?php print_link('http://www.php-gtk2.de', 'German PHP-GTK 2 Portal'); ?></li>
  98. </ul>
  99. <a name="onlinearticles"></a>
  100. <h2>On-line Publications</h2>
  101. <ul>
  102. <li>&quot;<?php print_link('http://www.devx.com/opensource/Article/21235/0',
  103. 'Develop Desktop GUI Apps with PHP-GTK, the Standalone PHP'); ?>&quot;
  104. by Gregory L. Magnusson</li>
  105. <li>&quot;<?php print_link('http://www.goldweb.com.au/~davidj/articles/html/1.html',
  106. 'Introductory PHP-GTK'); ?>&quot;
  107. by David Jorm</li>
  108. <li>&quot;<?php print_link('http://www.webmasterbase.com/article/697',
  109. 'Build Cross-Platform Windowed Apps with PHP'); ?>&quot;
  110. by Mitchell Harper</li>
  111. <li>&quot;<?php print_link('http://products.magnet-i.com/phpgale/php-gtk_endliess_possibilities.pdf',
  112. 'PHP-GTK: Endless Possibilities') ?>&quot;
  113. by Nirav Mehta, Vaishali Master, and Piyush Shah</li>
  114. <li>&quot;<?php print_link('http://hades.phparch.com/ceres/public/article/index.php/art::php_gtk::what_is_php_gtk', 'What is PHP-GTK'); ?>&quot; by Scott Mattocks</li>
  115. <li>&quot;<?php print_link('http://hades.phparch.com/ceres/public/article/index.php/art::php_gtk::hello_php_gtk', 'Hello PHP-GTK 2'); ?>&quot; by Scott Mattocks</li>
  116. </ul>
  117. <a name="printarticles"></a>
  118. <h2>Print Publications</h2>
  119. <ul>
  120. <li>&quot;<?php print_link('http://phpmagazin.de/itr/online_artikel/psecom,id,831,nodeid,62.html', 'Aktuelle Entwicklungen beim PHP-GTK'); ?>&quot;
  121. by Christian Weiske<br />
  122. <em>PHP Magazin</em>, 07.2006</li>
  123. <li>&quot;<?php print_link('http://www.amazon.com/gp/product/1590596137/', 'Pro PHP-GTK'); ?>&quot;
  124. by Scott Mattocks<br />
  125. <em>Apress</em>, 04.2006</li>
  126. <li>&quot;<?php print_link('http://www.phpmagazin.de/itr/ausgaben/psecom,id,287,nodeid,60.html', 'Rapid Application Development Mit PHP-GTK'); ?>&quot;
  127. by Christian Weiske<br />
  128. <em>PHP Magazin</em>, 10.2005</li>
  129. <li>&quot;<?php print_link('http://www.phparch.com/issue.php?mid=52', 'Turning a Class Into an Application With PHP-GTK'); ?>&quot;
  130. by Scott Mattocks<br />
  131. <em>PHP|Architect</em>, 03.2005</li>
  132. <li>&quot;<?php print_link('http://www.phparch.com/issue.php?mid=42', 'PHP-GTK and the Glade GUI Builder: Building Client Applications with Style'); ?>&quot;
  133. by Tony Leake<br />
  134. <em>PHP|Architect</em>, 10.2004</li>
  135. <li>&quot;<?php print_link('http://www.php-mag.net/magphpde/magphpde_article/psecom,id,426,nodeid,21.html', 'Use your mouse'); ?>&quot;
  136. by Steph Fox<br />
  137. <em>International PHP Magazine</em>, 06.2004</li>
  138. <li>&quot;<?php print_link('http://www.phpmag.net/itr/ausgaben/psecom,id,212,nodeid,112.html', 'Making a GUI Mess of PHP: Building \'Stand-alone\' GUI Applications with PHP-GTK');?>&quot;
  139. by Ben Ramsey<br />
  140. <em>International PHP Magazine</em>, 05.2004</li>
  141. <li>&quot;<?php print_link('http://www.phparch.com/issue.php?mid=24', 'Offline News Management with PHP-GTK'); ?>&quot;
  142. by Morgan Tocker<br />
  143. <em>PHP|Architect</em>, 02.2004</li>
  144. </ul>
  145. <a name="presentations"></a>
  146. <h2>Presentations</h2>
  147. <ul>
  148. <li><?php print_link('http://www.gravitonic.com/do_download.php?download_file=talks/php-quebec-2006/php-gtk-2.pdf', 'PHP Quebec 2006'); ?> &quot;PHP-GTK 2&quot; by Andrei Zmievski</li>
  149. <li><?php print_link('http://www.gravitonic.com/do_download.php?download_file=talks/phptropics2005/php-gtk2_phptropics2005.pdf', 'php|tropics 2005'); ?> &quot;Say Hello to PHP-GTK 2&quot; by Andrei Zmievski</li>
  150. <li><?php print_link('http://talks.php.net/show/vancouver-gtk', 'Vancouver 2004'); ?> &quot;PHP-GTK: Something Old, Something New&quot; by Andrei Zmievski</li>
  151. </ul>
  152. <a name="development"></a>
  153. <h2>Development</h2>
  154. <ul>
  155. <li><?php print_link('http://php-gtk2.de/manual/coverage.htm', 'PHP-Gtk2 documentation coverage analysis') ?></li>
  156. <li><?php print_link('http://php-gtk2.de/manual/classcoverage.htm', 'PHP-Gtk2 implementation coverage analysis') ?></li>
  157. </ul>
  158. <?php
  159. commonFooter();
  160. ?>