PageRenderTime 47ms CodeModel.GetById 15ms RepoModel.GetById 0ms app.codeStats 0ms

/docs/id/getting-started.xml

https://github.com/pop/smarty
XML | 689 lines | 584 code | 84 blank | 21 comment | 0 complexity | b9b5a0b09fd62191e80239ceb9ebd20b MD5 | raw file
Possible License(s): LGPL-2.1
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- $Revision$ -->
  3. <part id="getting.started">
  4. <title>Memulai</title>
  5. <chapter id="what.is.smarty">
  6. <title>Apa itu Smarty?</title>
  7. <para>
  8. Smarty adalah mesin template untuk PHP. Lebih khusus, ia memfasilitasi
  9. cara yang bisa diatur untuk memisahkan logika aplikasi dan konten dari
  10. penampilannya. Ini jauh lebih baik dijelaskan dalam situasi di mana
  11. pemrogram aplikasi dan desainer template memainkan aturan yang berbeda,
  12. atau secara umum bukan orang yang sama.
  13. </para>
  14. <para>
  15. Sebagai contoh, katakanlah anda sedang membuat halaman web yang
  16. menampilkan artikel koran.
  17. </para>
  18. <itemizedlist>
  19. <listitem><para>
  20. Artikel <literal>$headline</literal>, <literal>$tagline</literal>,
  21. <literal>$author</literal> dan <literal>$body</literal> adalah elemen
  22. konten, tidak berisi informasi mengenai bagaimana akan ditampilkan.
  23. Ia akan <link linkend="api.assign">dioper</link> ke dalam Smarty
  24. oleh aplikasi.
  25. </para></listitem>
  26. <listitem><para>Kemudian desainer template mengedit template dan
  27. menggunakan kombinasi tag HTML dan
  28. <link linkend="language.basic.syntax">tag template</link> untuk
  29. membentuk presentasi terhadap
  30. <link linkend="language.syntax.variables">variabel</link> ini dengan
  31. elemen seperti tabel, div, warna latar belakang, ukuran font, style
  32. sheets, svg dll.
  33. </para></listitem>
  34. <listitem><para>Suatu hari pemrogram perlu mengubah cara konten
  35. artikel diambil (perubahan dalam logika aplikasi). Perubahan
  36. ini tidak mempengaruhi desainer template, konten masih akan
  37. muncul dalam template persis sama.
  38. </para></listitem>
  39. <listitem><para>
  40. Demikian juga jika desainer template ingin mendesain ulang template
  41. seutuhnya, ini tidak memerlukan perubahan logika aplikasi.
  42. </para></listitem>
  43. <listitem><para>Oleh karena itu, pemrogram dapat membuat perubahan
  44. terhadap logika aplikasi tanpa perlu merestrukturisasi template, dan
  45. desainer template bisa membuat perubahan terhadap template tanpa
  46. membongkar logika aplikasi.
  47. </para></listitem>
  48. </itemizedlist>
  49. <para>
  50. Satu tujuan desain Smarty adalah pemisahan logika bisnis dan logika
  51. presentasi.
  52. </para>
  53. <itemizedlist>
  54. <listitem><para>
  55. Ini berarti template tentu saja dapat berisi logika di bawah
  56. kondisi yang hanya untuk presentasi saja. Hal seperti
  57. <link linkend="language.function.include">menyertakan</link>
  58. template lain,
  59. <link linkend="language.function.cycle">memilih</link> warna baris tabel,
  60. <link linkend="language.modifier.upper">membesarkan huruf</link> variabel,
  61. <link linkend="language.function.foreach">mengulang</link> terus
  62. sebuah data array dan <link linkend="api.display">menampilkannya</link>
  63. adalah contoh dari logika presentasi.
  64. </para></listitem>
  65. <listitem><para>
  66. Ini tidak
  67. berarti bahwa Smarty memaksa pemisahan logika bisnis dan presentasi. Smarty
  68. tidak mengetahui yang mana adalah yang mana, maka menempatkan logika bisnis
  69. dalam template adalah anda sendiri yang melakukannya.
  70. </para></listitem>
  71. <listitem><para>Juga, jika anda
  72. menginginkan <emphasis>tidak ada</emphasis> logika dalam template, anda
  73. tentunya dapat melakukannya dengan menetapkan konten cukup ke teks dan
  74. variabel saja.
  75. </para></listitem>
  76. </itemizedlist>
  77. <para>
  78. Salah satu aspek unik mengenai Smarty adalah kompilasi template. Ini
  79. berartu Smarty membaca file template dan membuat naskah PHP darinya.
  80. Sekali dibuat, selanjutnya ia dieksekusi darinya. Oleh karenanya tidak
  81. ada beban menguraikan file template untuk setiap permintaan, dan setiap
  82. template dapat memanfaatkan solusi cache kompilator PHP seperti
  83. <ulink url="&url.e-accel;">eAccelerator</ulink>,
  84. <ulink url="&url.ion-accel;">ionCube</ulink>
  85. <ulink url="&url.mmcache-accel;">mmCache</ulink>
  86. atau <ulink url="&url.zend;">Zend Accelerator</ulink>
  87. adalah beberapa diantaranya.
  88. </para>
  89. <para>
  90. <emphasis role="bold">Beberapa fitur Smarty:</emphasis>
  91. </para>
  92. <itemizedlist>
  93. <listitem>
  94. <para>
  95. Sangat cepat.
  96. </para>
  97. </listitem>
  98. <listitem>
  99. <para>
  100. Efisien karena pengurai PHP yang mengerjakan pekerjaan beratnya.
  101. </para>
  102. </listitem>
  103. <listitem>
  104. <para>
  105. Tidak ada kelebihan penguraian template, hanya sekali mengompilasi.
  106. </para>
  107. </listitem>
  108. <listitem>
  109. <para>
  110. Pintar mengenai <link linkend="variable.compile.check">rekompilasi</link>
  111. hanya file template yang telah diubah.
  112. </para>
  113. </listitem>
  114. <listitem>
  115. <para>
  116. Anda dapat membuat dengan mudah <link
  117. linkend="language.custom.functions">fungsi</link> kustom
  118. dan <link linkend="language.modifiers">pengubah variabel</link>, agar
  119. bahasa template bisa diperluas secara ekstrim.
  120. </para>
  121. </listitem>
  122. <listitem>
  123. <para>
  124. Template bisa mengkonfigurasi sintaks tag
  125. <link linkend="variable.left.delimiter">{pemisah}</link>, agar
  126. anda dapat menggunakan
  127. <literal>{$foo}</literal>, <literal>{{$foo}}</literal>,
  128. <literal>&lt;!--{$foo}--&gt;</literal>, dll.
  129. </para>
  130. </listitem>
  131. <listitem>
  132. <para>
  133. Konstruksi <link linkend="language.function.if">
  134. <literal>{if}..{elseif}..{else}..{/if}</literal></link>
  135. dioper ke pengurai PHP, maka sintaks ekspresi <literal>{if...}</literal>
  136. bisa berupa evaluasi sesederhana atau serumit yang anda
  137. inginkan.
  138. </para>
  139. </listitem>
  140. <listitem>
  141. <para>
  142. Membolehkan pengulangan tidak terbatas dari
  143. <link linkend="language.function.section">
  144. <varname>sections</varname></link>, <varname>if's</varname> dll.
  145. </para>
  146. </listitem>
  147. <listitem>
  148. <para>
  149. Dimungkinkan untuk
  150. <link linkend="language.function.php">menyertakan kode PHP</link>
  151. langsung dalam file template anda, meskipun ini mungkin tidak
  152. diperlukan (ataupun direkomendasikan) karena mesin
  153. <link linkend="plugins">dapat dikustomisasi</link>.
  154. </para>
  155. </listitem>
  156. <listitem>
  157. <para>
  158. Dukungan built-in <link linkend="caching">caching</link>
  159. </para>
  160. </listitem>
  161. <listitem>
  162. <para>
  163. Bebas sumber <link linkend="template.resources">template</link>
  164. </para>
  165. </listitem>
  166. <listitem>
  167. <para>
  168. Fungsi kustom
  169. <link
  170. linkend="section.template.cache.handler.func">penanganan cache</link>
  171. </para>
  172. </listitem>
  173. <listitem>
  174. <para>
  175. Arsitektur <link linkend="plugins">Plugin</link>
  176. </para>
  177. </listitem>
  178. </itemizedlist>
  179. </chapter>
  180. <chapter id="installation">
  181. <title>Instalasi</title>
  182. <sect1 id="installation.requirements">
  183. <title>Persyaratan</title>
  184. <para>
  185. Smarty membutuhkan server web yang menjalankan PHP 4.0.6 atau lebih
  186. tinggi.
  187. </para>
  188. </sect1>
  189. <sect1 id="installing.smarty.basic">
  190. <title>Instalasi Dasar</title>
  191. <para>
  192. Instalasi file librari Smarty yang ada dalam sub direktori
  193. <filename class="directory">/libs/</filename> dari
  194. distributsi. Ini adalah file <filename>.php</filename> yang
  195. TIDAK BOLEH diedit. Ia berbagi diantara seluruh aplikasi dan hanya
  196. diubah ketika anda meingkatkannya ke versi Smarty baru.
  197. </para>
  198. <para>Dalam contoh di bawah ini Smarty tarball telah diuraikan ke:
  199. <itemizedlist>
  200. <listitem><para>
  201. <filename class="directory">/usr/local/lib/Smarty-v.e.r/</filename> untuk
  202. mesin *nix</para></listitem>
  203. <listitem><para> dan
  204. <filename class="directory">c:\webroot\libs\Smarty-v.e.r\</filename> untuk
  205. lingkungan windows.</para></listitem>
  206. </itemizedlist>
  207. </para>
  208. <example>
  209. <title>File librari Smarty yang Diperlukan</title>
  210. <screen>
  211. <![CDATA[
  212. Smarty-v.e.r/
  213. libs/
  214. Smarty.class.php
  215. Smarty_Compiler.class.php
  216. Config_File.class.php
  217. debug.tpl
  218. internals/*.php (all of them)
  219. plugins/*.php (all of them)
  220. ]]>
  221. </screen>
  222. </example>
  223. <para>
  224. Smarty menggunakan <ulink url="&url.php-manual;define">konstan</ulink>
  225. PHP bernama <link linkend="constant.smarty.dir"><constant>SMARTY_DIR</constant>
  226. </link> yang merupakan <emphasis role="bold">path file sistem lengkap</emphasis>
  227. ke direktori <filename>libs/</filename> Smarty.
  228. Pada dasarnya, jika aplikasi anda dapat menemukan file
  229. <filename>Smarty.class.php</filename>, anda tidak perlu menyetel
  230. <link linkend="constant.smarty.dir"><constant>SMARTY_DIR</constant></link>
  231. karena Smarty akan mengetahui dirinya sendiri.
  232. Oleh karena itu, jika
  233. <filename>Smarty.class.php</filename> tidak dalam
  234. <ulink url="&url.php-manual;ini.core.php#ini.include-path">include_path</ulink>
  235. anda, atau anda tidak menyertakan path absolut kepadanya dalam aplikasi
  236. anda, maka anda harus mendefinisikan <constant>SMARTY_DIR</constant>
  237. secara manual.
  238. <constant>SMARTY_DIR</constant> <emphasis role="bold">harus menyertakan
  239. akhiran garis miring/</emphasis>.
  240. </para>
  241. <informalexample>
  242. <para>
  243. Ini adalah bagaimana anda membuat turunan Smarty dalam naskah PHP anda:
  244. </para>
  245. <programlisting role="php">
  246. <![CDATA[
  247. <?php
  248. // NOTE: Smarty has a capital 'S'
  249. require_once('Smarty.class.php');
  250. $smarty = new Smarty();
  251. ?>
  252. ]]>
  253. </programlisting>
  254. </informalexample>
  255. <para>
  256. Coba menjalankan naskah di atas. Jika anda mendapatkan kesalahan yang
  257. mengatakan
  258. <filename>Smarty.class.php</filename> file could not be found, anda perlu
  259. melakukan salah satu dari yang berikut:
  260. </para>
  261. <example>
  262. <title>Setel konstan SMARTY_DIR secara manual</title>
  263. <programlisting role="php">
  264. <![CDATA[
  265. <?php
  266. // *nix style (note capital 'S')
  267. define('SMARTY_DIR', '/usr/local/lib/Smarty-v.e.r/libs/');
  268. // windows style
  269. define('SMARTY_DIR', 'c:/webroot/libs/Smarty-v.e.r/libs/');
  270. // hack version example that works on both *nix and windows
  271. // Smarty is assumend to be in 'includes/' dir under current script
  272. define('SMARTY_DIR',str_replace("\\","/",getcwd()).'/includes/Smarty-v.e.r/libs/');
  273. require_once(SMARTY_DIR . 'Smarty.class.php');
  274. $smarty = new Smarty();
  275. ?>
  276. ]]>
  277. </programlisting>
  278. </example>
  279. <example>
  280. <title>Sertakan path absolut ke file librari</title>
  281. <programlisting role="php">
  282. <![CDATA[
  283. <?php
  284. // *nix style (note capital 'S')
  285. require_once('/usr/local/lib/Smarty-v.e.r/libs/Smarty.class.php');
  286. // windows style
  287. require_once('c:/webroot/libs/Smarty-v.e.r/libs/Smarty.class.php');
  288. $smarty = new Smarty();
  289. ?>
  290. ]]>
  291. </programlisting>
  292. </example>
  293. <example>
  294. <title>Tambah path librari ke file <filename>php.ini</filename></title>
  295. <programlisting role="php">
  296. <![CDATA[
  297. ;;;;;;;;;;;;;;;;;;;;;;;;;
  298. ; Paths and Directories ;
  299. ;;;;;;;;;;;;;;;;;;;;;;;;;
  300. ; *nix: "/path1:/path2"
  301. include_path = ".:/usr/share/php:/usr/local/lib/Smarty-v.e.r/libs/"
  302. ; Windows: "\path1;\path2"
  303. include_path = ".;c:\php\includes;c:\webroot\libs\Smarty-v.e.r\libs\"
  304. ]]>
  305. </programlisting>
  306. </example>
  307. <example>
  308. <title>Menambahkan path include dalam naskah PHP dengan
  309. <literal><ulink url="&url.php-manual;ini-set">ini_set()</ulink></literal></title>
  310. <programlisting role="php">
  311. <![CDATA[
  312. <?php
  313. // *nix
  314. ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.'/usr/local/lib/Smarty-v.e.r/libs/');
  315. // windows
  316. ini_set('include_path', ini_get('include_path').PATH_SEPARATOR.'c:/webroot/lib/Smarty-v.e.r/libs/');
  317. ?>
  318. ]]>
  319. </programlisting>
  320. </example>
  321. <para>
  322. Sekarang file librari itu di tempatnya, waktunya menyiapkan
  323. direktori Smarty untuk aplikasi anda:</para>
  324. <itemizedlist>
  325. <listitem><para>
  326. Smarty memerlukan empat direktori yang secara standar bernama
  327. <filename class="directory">templates/</filename>,
  328. <filename class="directory">templates_c/</filename>, <filename
  329. class="directory">configs/</filename> dan <filename
  330. class="directory">cache/</filename>
  331. </para></listitem>
  332. <listitem><para>Setiap dari yang di atas tersebut bisa didefinisikan
  333. dengan properti kelas Smarty masing-masing
  334. <link linkend="variable.template.dir">
  335. <varname>$template_dir</varname></link>,
  336. <link linkend="variable.compile.dir">
  337. <varname>$compile_dir</varname></link>,
  338. <link linkend="variable.config.dir">
  339. <varname>$config_dir</varname></link>, dan
  340. <link linkend="variable.cache.dir">
  341. <varname>$cache_dir</varname></link>
  342. </para></listitem>
  343. <listitem><para>
  344. It is highly recommended
  345. that you setup a separate set of these directories for each application
  346. that will use Smarty
  347. </para></listitem>
  348. </itemizedlist>
  349. <para>
  350. For our installation example, we will be setting up the Smarty environment
  351. for a guest book application. We picked an application only for the purpose
  352. of a directory naming convention. You can use the same environment for any
  353. application, just replace <literal>guestbook/</literal> with
  354. the name of your application.
  355. </para>
  356. <example>
  357. <title>What the file structure looks like</title>
  358. <screen>
  359. <![CDATA[
  360. /usr/local/lib/Smarty-v.e.r/libs/
  361. Smarty.class.php
  362. Smarty_Compiler.class.php
  363. Config_File.class.php
  364. debug.tpl
  365. internals/*.php
  366. plugins/*.php
  367. /web/www.example.com/
  368. guestbook/
  369. templates/
  370. index.tpl
  371. templates_c/
  372. configs/
  373. cache/
  374. htdocs/
  375. index.php
  376. ]]>
  377. </screen>
  378. </example>
  379. <para>
  380. Be sure that you know the location of your web server's document root as a
  381. file path. In the following examples, the document root is <filename
  382. class="directory">/web/www.example.com/guestbook/htdocs/</filename>.
  383. The Smarty
  384. directories are only accessed by the Smarty library and never accessed
  385. directly by the web browser. Therefore to avoid any security concerns, it
  386. is recommended (but not mandatory) to place these directories
  387. <emphasis>outside</emphasis> of the web server's document root.
  388. </para>
  389. <para>
  390. You will need as least one file under your document root, and that is the
  391. script accessed by the web browser. We will name our script
  392. <filename>index.php</filename>, and place it in a subdirectory under the
  393. document root <filename class="directory">/htdocs/</filename>.
  394. </para>
  395. <para>
  396. Smarty will need <emphasis role="bold">write access</emphasis>
  397. (windows users please ignore) to the
  398. <link linkend="variable.compile.dir">
  399. <parameter>$compile_dir</parameter></link> and
  400. <link linkend="variable.cache.dir">
  401. <parameter>$cache_dir</parameter></link> directories
  402. (<filename class="directory">templates_c/</filename> and
  403. <filename class="directory">cache/</filename>), so be sure the web server
  404. user account can write to them.
  405. <note><para>This is usually user <quote>nobody</quote> and
  406. group <quote>nobody</quote>. For OS X users,
  407. the default is user <quote>www</quote> and group <quote>www</quote>.
  408. If you are using Apache, you can look in your
  409. <filename>httpd.conf</filename> file to see
  410. what user and group are being used.</para></note>
  411. </para>
  412. <example>
  413. <title>Permissions and making directories writable</title>
  414. <programlisting role="shell">
  415. <![CDATA[
  416. chown nobody:nobody /web/www.example.com/guestbook/templates_c/
  417. chmod 770 /web/www.example.com/guestbook/templates_c/
  418. chown nobody:nobody /web/www.example.com/guestbook/cache/
  419. chmod 770 /web/www.example.com/guestbook/cache/
  420. ]]>
  421. </programlisting>
  422. </example>
  423. <note>
  424. <title>Note</title>
  425. <para>
  426. <literal>chmod 770</literal> will be fairly tight security, it only allows
  427. user <quote>nobody</quote> and group <quote>nobody</quote> read/write access
  428. to the directories. If you would like to open up read access to anyone
  429. (mostly for your own convenience of viewing
  430. these files), you can use <literal>775</literal> instead.
  431. </para>
  432. </note>
  433. <para>
  434. We need to create the <filename>index.tpl</filename> file that Smarty will
  435. display. This needs to be located in the <link linkend="variable.template.dir">
  436. <parameter>$template_dir</parameter></link>.
  437. </para>
  438. <example>
  439. <title>/web/www.example.com/guestbook/templates/index.tpl</title>
  440. <screen>
  441. <![CDATA[
  442. {* Smarty *}
  443. Hello {$name}, welcome to Smarty!
  444. ]]>
  445. </screen>
  446. </example>
  447. <note>
  448. <title>Technical Note</title>
  449. <para>
  450. <literal>{* Smarty *}</literal> is a template
  451. <link linkend="language.syntax.comments">comment</link>.
  452. It is not required, but it is good
  453. practice to start all your template files with this comment. It makes
  454. the file easy to recognize regardless of the file extension. For
  455. example, text editors could recognize the file and turn on special
  456. syntax highlighting.
  457. </para>
  458. </note>
  459. <para>
  460. Now lets edit <filename>index.php</filename>. We'll create an instance of Smarty,
  461. <link linkend="api.assign"><varname>assign()</varname></link> a
  462. template variable and <link linkend="api.display"><varname>display()</varname></link>
  463. the <filename>index.tpl</filename> file.
  464. </para>
  465. <example>
  466. <title>Editing /web/www.example.com/docs/guestbook/index.php</title>
  467. <programlisting role="php">
  468. <![CDATA[
  469. <?php
  470. require_once(SMARTY_DIR . 'Smarty.class.php');
  471. $smarty = new Smarty();
  472. $smarty->template_dir = '/web/www.example.com/guestbook/templates/';
  473. $smarty->compile_dir = '/web/www.example.com/guestbook/templates_c/';
  474. $smarty->config_dir = '/web/www.example.com/guestbook/configs/';
  475. $smarty->cache_dir = '/web/www.example.com/guestbook/cache/';
  476. $smarty->assign('name','Ned');
  477. //** un-comment the following line to show the debug console
  478. //$smarty->debugging = true;
  479. $smarty->display('index.tpl');
  480. ?>
  481. ]]>
  482. </programlisting>
  483. </example>
  484. <note>
  485. <title>Note</title>
  486. <para>
  487. In our example, we are setting absolute paths to all of the Smarty
  488. directories. If <filename
  489. class="directory">/web/www.example.com/guestbook/</filename> is
  490. within your PHP include_path, then these settings are not necessary.
  491. However, it is more efficient and (from experience) less error-prone to
  492. set them to absolute paths. This ensures that Smarty is getting files
  493. from the directories you intended.
  494. </para>
  495. </note>
  496. <para>
  497. Now naviagate to the <filename>index.php</filename> file with the web browser.
  498. You should see <emphasis>"Hello Ned, welcome to Smarty!"</emphasis>
  499. </para>
  500. <para>
  501. You have completed the basic setup for Smarty!
  502. </para>
  503. </sect1>
  504. <sect1 id="installing.smarty.extended">
  505. <title>Extended Setup</title>
  506. <para>
  507. This is a continuation of the <link
  508. linkend="installing.smarty.basic">basic installation</link>, please read
  509. that first!
  510. </para>
  511. <para>
  512. A slightly more flexible way to setup Smarty is to
  513. <ulink url="&url.php-manual;ref.classobj">extend the class</ulink> and
  514. initialize your Smarty environment. So instead of repeatedly setting
  515. directory paths, assigning the same vars, etc., we can do that in one place.
  516. </para>
  517. <para>
  518. Lets create a new directory <filename
  519. class="directory">/php/includes/guestbook/</filename>
  520. and make a new file called <filename>setup.php</filename>. In our example
  521. environment, <filename class="directory">/php/includes</filename> is in our
  522. <literal>include_path</literal>.
  523. Be sure you set this up too, or use absolute file paths.
  524. </para>
  525. <example>
  526. <title>/php/includes/guestbook/setup.php</title>
  527. <programlisting role="php">
  528. <![CDATA[
  529. <?php
  530. // load Smarty library
  531. require('Smarty.class.php');
  532. // The setup.php file is a good place to load
  533. // required application library files, and you
  534. // can do that right here. An example:
  535. // require('guestbook/guestbook.lib.php');
  536. class Smarty_GuestBook extends Smarty {
  537. function Smarty_GuestBook()
  538. {
  539. // Class Constructor.
  540. // These automatically get set with each new instance.
  541. $this->Smarty();
  542. $this->template_dir = '/web/www.example.com/guestbook/templates/';
  543. $this->compile_dir = '/web/www.example.com/guestbook/templates_c/';
  544. $this->config_dir = '/web/www.example.com/guestbook/configs/';
  545. $this->cache_dir = '/web/www.example.com/guestbook/cache/';
  546. $this->caching = true;
  547. $this->assign('app_name', 'Guest Book');
  548. }
  549. }
  550. ?>
  551. ]]>
  552. </programlisting>
  553. </example>
  554. <para>
  555. Now lets alter the <filename>index.php</filename> file to use
  556. <filename>setup.php</filename>:
  557. </para>
  558. <example>
  559. <title>/web/www.example.com/guestbook/htdocs/index.php</title>
  560. <programlisting role="php">
  561. <![CDATA[
  562. <?php
  563. require('guestbook/setup.php');
  564. $smarty = new Smarty_GuestBook();
  565. $smarty->assign('name','Ned');
  566. $smarty->display('index.tpl');
  567. ?>
  568. ]]>
  569. </programlisting>
  570. </example>
  571. <para>
  572. Now you see it is quite simple to bring up an instance of Smarty, just use
  573. <literal>Smarty_GuestBook()</literal> which automatically initializes everything for our
  574. application.
  575. </para>
  576. </sect1>
  577. </chapter>
  578. </part>
  579. <!-- Keep this comment at the end of the file
  580. Local variables:
  581. mode: sgml
  582. sgml-omittag:t
  583. sgml-shorttag:t
  584. sgml-minimize-attributes:nil
  585. sgml-always-quote-attributes:t
  586. sgml-indent-step:1
  587. sgml-indent-data:t
  588. indent-tabs-mode:nil
  589. sgml-parent-document:nil
  590. sgml-default-dtd-file:"../../../../manual.ced"
  591. sgml-exposed-tags:nil
  592. sgml-local-catalogs:nil
  593. sgml-local-ecat-files:nil
  594. End:
  595. vim600: syn=xml fen fdm=syntax fdl=2 si
  596. vim: et tw=78 syn=sgml
  597. vi: ts=1 sw=1
  598. -->