~ubuntu-branches/debian/sid/pgadmin3/sid

« back to all changes in this revision

Viewing changes to docs/cs_CZ/sample-xml.html

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2009-07-30 12:27:16 UTC
  • mfrom: (1.1.6 upstream)
  • Revision ID: james.westby@ubuntu.com-20090730122716-fddbh42on721bbs2
Tags: 1.10.0-1
* New upstream release.
* Adjusted watch file to match release candidates.
* Updated to Standards-Version 3.8.2:
  - Moved to Section: database.
  - Add DEB_BUILD_OPTIONS support for parallel building.
  - Move from findstring to filter suggestion for DEB_BUILD_OPTIONS parsing.
* pgagent got split into its own separate source package by upstream.
* Exclude Docs.vcproj from installation.
* Move doc-base.enus from pgadmin3 to pgadmin3-data package, the files are
  in there too.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<html>
 
2
 
 
3
<head>
 
4
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 
5
<link rel="STYLESHEET" type="text/css" href="pgadmin3.css">
 
6
<title>Ukázka dat XML z reportu</title>
 
7
</head>
 
8
 
 
9
<body>
 
10
 
 
11
<h3>Ukázka dat XML z reportu</h3>
 
12
 
 
13
<p>
 
14
Ukázkový report demonstruje formát XML, který produkuje <a href="reports.html">reportovací nástroj</a> v pgAdminu.
 
15
</p>
 
16
 
 
17
<pre style="background-color: #dddddd;">
 
18
&#60;?xml version=&#34;1.0&#34; encoding=&#34;UTF-8&#34;?&#62;
 
19
&#60;?xml-stylesheet type=&#34;text/xsl&#34; href=&#34;C:\stylesheet.xsl&#34; ?&#62;
 
20
 
 
21
&#60;report&#62;
 
22
 
 
23
  &#60;header&#62;
 
24
 
 
25
    &#60;!-- All the values in the header section are optional, apart from the title. --&#62;
 
26
 
 
27
    &#60;title&#62;Sample XML file&#60;/title&#62;
 
28
    &#60;notes&#62;This is a sample XML file.&#60;/notes&#62;
 
29
    &#60;generated&#62;10/05/2006 11:21:23&#60;/generated&#62;
 
30
    &#60;server&#62;localhost:5432&#60;/database&#62;
 
31
    &#60;database&#62;postgres&#60;/database&#62;
 
32
    &#60;schema&#62;public&#60;/schema&#62;
 
33
    &#60;table&#62;pg_ts_cfg&#60;/table&#62;
 
34
    &#60;job&#62;&#60;/job&#62;
 
35
  &#60;/header&#62;
 
36
 
 
37
  &#60;!-- Multiple report sections may be present, and must have a name --&#62;
 
38
 
 
39
  &#60;section id=&#34;s1&#34; number=&#34;1&#34; name=&#34;Query results&#34;&#62;
 
40
  
 
41
    &#60;!-- A table is optional within a section. If present, the number --&#62;
 
42
    &#60;!-- of columns should be appropriate for the attributes specified --&#62;
 
43
    &#60;!-- in each row. A row needn't specify every value however. --&#62;
 
44
 
 
45
    &#60;table&#62;
 
46
      &#60;columns&#62;
 
47
        &#60;column id=&#34;c1&#34; number=&#34;1&#34; name=&#34;oid&#34; /&#62;
 
48
        &#60;column id=&#34;c2&#34; number=&#34;2&#34; name=&#34;ts_name&#34; /&#62;
 
49
        &#60;column id=&#34;c3&#34; number=&#34;3&#34; name=&#34;prs_name&#34; /&#62;
 
50
        &#60;column id=&#34;c4&#34; number=&#34;4&#34; name=&#34;locale&#34; /&#62;
 
51
      &#60;/columns&#62;
 
52
      &#60;rows&#62;
 
53
        &#60;row id=&#34;r1&#34; number=&#34;1&#34; c1=&#34;17108&#34; c2=&#34;default&#34; c3=&#34;default&#34; c4=&#34;C&#34; /&#62;
 
54
        &#60;row id=&#34;r2&#34; number=&#34;2&#34; c1=&#34;17109&#34; c2=&#34;default_russian&#34; c3=&#34;default&#34; c4=&#34;ru_RU.KOI8-R&#34; /&#62;
 
55
        &#60;row id=&#34;r3&#34; number=&#34;3&#34; c1=&#34;17110&#34; c2=&#34;simple&#34; c3=&#34;default&#34; c4=&#34;&#34; /&#62;
 
56
      &#60;/rows&#62;
 
57
      
 
58
      &#60;!-- Additional section specific info may be supplied. --&#62;
 
59
 
 
60
      &#60;info&#62;3 rows with 4 columns retrieved.&#60;/info&#62;
 
61
 
 
62
    &#60;/table&#62;
 
63
    
 
64
    &#60;!-- Each section may also contain some related SQL. --&#62;
 
65
 
 
66
    &#60;sql&#62;SELECT oid, * FROM pg_ts_cfg&#60;/sql&#62;
 
67
 
 
68
  &#60;/section&#62;
 
69
 
 
70
&#60;/report&#62;
 
71
</pre>
 
72
 
 
73
</body>
 
74
</html>