Skip to content

Commit d2f234b

Browse files
committed
exif: fix XML to get remove of useless wrapping para tags
1 parent 152011d commit d2f234b

7 files changed

Lines changed: 441 additions & 486 deletions

File tree

reference/exif/constants.xml

Lines changed: 16 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,23 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<!-- $Revision$ -->
3-
<!-- EN-Revision: 86e6094e86b84a51d00ab217ac50ce8dde33d82a Maintainer: nilgun Status: ready -->
4-
<appendix xml:id="exif.constants" xmlns="http://docbook.org/ns/docbook">
3+
<!-- EN-Revision: b090c4476884e5dbce1f3cc2adf28c65b04d9de9 Maintainer: nilgun Status: ready -->
4+
<appendix xmlns="http://docbook.org/ns/docbook" xml:id="exif.constants">
55
&reftitle.constants;
66
&extension.constants;
7-
<para>
8-
<variablelist>
9-
<varlistentry xml:id="constant.exif-use-mbstring">
10-
<term>
11-
<constant>EXIF_USE_MBSTRING</constant>
12-
(<type>int</type>)
13-
</term>
14-
<listitem>
15-
<simpara>
16-
<link linkend="ref.mbstring">mbstring</link> etkinse bu sabitin değeri
17-
<literal>1</literal>, değilse <literal>0</literal>'dır.
18-
</simpara>
19-
</listitem>
20-
</varlistentry>
21-
</variablelist>
22-
</para>
7+
<variablelist>
8+
<varlistentry xml:id="constant.exif-use-mbstring">
9+
<term>
10+
<constant>EXIF_USE_MBSTRING</constant>
11+
(<type>int</type>)
12+
</term>
13+
<listitem>
14+
<simpara>
15+
<link linkend="ref.mbstring">mbstring</link> etkinse bu sabitin değeri
16+
<literal>1</literal>, değilse <literal>0</literal>'dır.
17+
</simpara>
18+
</listitem>
19+
</varlistentry>
20+
</variablelist>
2321
<para>
2422
Yerleşik sabitlerin bazıları <function>exif_imagetype</function> işlevi
2523
tarafından listelenir.

reference/exif/functions/exif-imagetype.xml

Lines changed: 45 additions & 54 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<!-- EN-Revision: f40e02ff1bd0eb238dc8e542434004de9eb03a58 Maintainer: nilgun Status: ready -->
3-
<refentry xml:id="function.exif-imagetype" xmlns="http://docbook.org/ns/docbook">
2+
<!-- EN-Revision: b090c4476884e5dbce1f3cc2adf28c65b04d9de9 Maintainer: nilgun Status: ready -->
3+
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.exif-imagetype">
44
<refnamediv>
55
<refname>exif_imagetype</refname>
66
<refpurpose>Bir görüntünün türünü saptar</refpurpose>
@@ -25,18 +25,16 @@
2525
</refsect1>
2626
<refsect1 role="parameters">
2727
&reftitle.parameters;
28-
<para>
29-
<variablelist>
30-
<varlistentry>
31-
<term><parameter>dosya</parameter></term>
32-
<listitem>
33-
<simpara>
34-
İçerdiği görüntü türü saptanacak dosya.
35-
</simpara>
36-
</listitem>
37-
</varlistentry>
38-
</variablelist>
39-
</para>
28+
<variablelist>
29+
<varlistentry>
30+
<term><parameter>dosya</parameter></term>
31+
<listitem>
32+
<simpara>
33+
İçerdiği görüntü türü saptanacak dosya.
34+
</simpara>
35+
</listitem>
36+
</varlistentry>
37+
</variablelist>
4038
</refsect1>
4139
<refsect1 role="returnvalues">
4240
&reftitle.returnvalues;
@@ -160,64 +158,57 @@
160158

161159
<refsect1 role="changelog">
162160
&reftitle.changelog;
163-
<para>
164-
<informaltable>
165-
<tgroup cols="2">
166-
<thead>
167-
<row>
168-
<entry>&Version;</entry>
169-
<entry>&Description;</entry>
170-
</row>
171-
</thead>
172-
<tbody>
173-
<row>
174-
<entry>8.1.0</entry>
175-
<entry>
176-
Added desteği eklendi.
177-
</entry>
178-
</row>
179-
<row>
180-
<entry>7.1.0</entry>
181-
<entry>
182-
WebP desteği eklendi.
183-
</entry>
184-
</row>
185-
</tbody>
186-
</tgroup>
187-
</informaltable>
188-
</para>
161+
<informaltable>
162+
<tgroup cols="2">
163+
<thead>
164+
<row>
165+
<entry>&Version;</entry>
166+
<entry>&Description;</entry>
167+
</row>
168+
</thead>
169+
<tbody>
170+
<row>
171+
<entry>8.1.0</entry>
172+
<entry>
173+
Added desteği eklendi.
174+
</entry>
175+
</row>
176+
<row>
177+
<entry>7.1.0</entry>
178+
<entry>
179+
WebP desteği eklendi.
180+
</entry>
181+
</row>
182+
</tbody>
183+
</tgroup>
184+
</informaltable>
189185
</refsect1>
190186

191187
<refsect1 role="examples">
192188
&reftitle.examples;
193-
<para>
194-
<example>
195-
<title>- <function>exif_imagetype</function> örneği</title>
196-
<programlisting role="php">
189+
<example>
190+
<title>- <function>exif_imagetype</function> örneği</title>
191+
<programlisting role="php">
197192
<![CDATA[
198193
<?php
199194
if (exif_imagetype('image.gif') != IMAGETYPE_GIF) {
200195
echo 'Bu bir GIF değil.';
201196
}
202197
?>
203198
]]>
204-
</programlisting>
205-
</example>
206-
</para>
199+
</programlisting>
200+
</example>
207201
</refsect1>
208202

209203
<refsect1 role="seealso">
210204
&reftitle.seealso;
211-
<para>
212-
<simplelist>
213-
<member><function>image_type_to_mime_type</function></member>
214-
<member><function>getimagesize</function></member>
215-
</simplelist>
216-
</para>
205+
<simplelist>
206+
<member><function>image_type_to_mime_type</function></member>
207+
<member><function>getimagesize</function></member>
208+
</simplelist>
217209
</refsect1>
218210

219211
</refentry>
220-
221212
<!-- Keep this comment at the end of the file
222213
Local variables:
223214
mode: sgml

0 commit comments

Comments
 (0)