~ubuntu-branches/debian/squeeze/redland-bindings/squeeze

« back to all changes in this revision

Viewing changes to docs/pod/RDF/Redland/URI.html

  • Committer: Bazaar Package Importer
  • Author(s): Dave Beckett
  • Date: 2009-04-07 00:24:21 UTC
  • mfrom: (0.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20090407002421-dce2r4otm5vqtheg
Tags: 1.0.8.1-2
* Use new sections ruby, php for librdf-ruby and php5-librdf respectively.
* Merge features from ubuntu packaging.  Thanks to Matthias Klose
  (not taking linker -Wl,--as-needed since that makes dyloading fail
  to pull in raptor symbols):
  debian/rules:
  - get python lib dir from distutils
  - make dh_pycentral use symlinks
  debian/python-librdf.examples:
  - add data/dc.rdf to examples dir and adjust example.py
    to point to it (Closes: #402612)
* Patch python/Makefile.in so it can allow the include dir to be
  overridden by the particular python version build in debian/rules
  using PYTHON_INCLUDES

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
<?xml version="1.0" encoding="iso-8859-1"?>
2
2
<?xml version="1.0"?>
3
 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
4
 
    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5
3
<html xmlns="http://www.w3.org/1999/xhtml">
6
4
<head>
7
5
<title>Redland RDF Application Framework - Perl RDF::Redland::URI Class</title>
11
9
<h1 style="text-align:center">Redland RDF Application Framework - Perl RDF::Redland::URI Class</h1>
12
10
 
13
11
 
 
12
<!-- INDEX BEGIN -->
 
13
<div name="index">
14
14
<p><a name="__index__"></a></p>
15
 
<!-- INDEX BEGIN -->
16
15
<!--
17
16
 
18
17
<ul>
26
25
        <li><a href="#see_also">SEE ALSO</a></li>
27
26
        <li><a href="#author">AUTHOR</a></li>
28
27
</ul>
29
 
-->
 
28
 
 
29
--></div>
30
30
<!-- INDEX END -->
31
31
 
32
 
<h2><a name="name" id="name">NAME</a></h2>
 
32
<h2><a name="name">NAME</a></h2>
33
33
<p>RDF::Redland::URI - Redland RDF URI Class</p>
34
34
 
35
 
<h2><a name="synopsis" id="synopsis">SYNOPSIS</a></h2>
 
35
<h2><a name="synopsis">SYNOPSIS</a></h2>
36
36
<pre>
37
37
  use RDF::Redland;
38
38
</pre>
46
46
  print $uri2-&gt;as_string,"\n";
47
47
</pre>
48
48
 
49
 
<h2><a name="description" id="description">DESCRIPTION</a></h2>
 
49
<h2><a name="description">DESCRIPTION</a></h2>
50
50
<p>Represents a URI as a mostly-opaque object for identifying things in the RDF world. The URIs are also used for identifying features for the RDF::Redland::Parser and RDF::Redland::Serializer classes.</p>
51
51
 
52
 
<h2><a name="constructors" id="constructors">CONSTRUCTORS</a></h2>
 
52
<h2><a name="constructors">CONSTRUCTORS</a></h2>
53
53
<dl>
54
 
<dt><strong><a name="item_new" id="item_new">new STRING</a></strong></dt>
 
54
<dt><strong><a name="new" class="item">new STRING</a></strong></dt>
55
55
<dd>
56
56
<p>Create a new RDF::Redland::URI object from a URI string.</p>
57
57
</dd>
58
 
</dl>
59
 
<div style="margin-left: 2em">
60
 
<dl>
61
 
<dt><strong><a name="item_clone" id="item_clone">clone URI</a></strong></dt>
62
 
</dl>
63
 
</div>
 
58
<dt><strong><a name="clone" class="item">clone URI</a></strong></dt>
 
59
<dd>
64
60
<p>Copy a RDF::Redland::URI</p>
 
61
</dd>
 
62
</dl>
65
63
 
66
 
<h2><a name="methods" id="methods">METHODS</a></h2>
 
64
<h2><a name="methods">METHODS</a></h2>
67
65
<dl>
68
 
<dt><strong><a name="item_as_string" id="item_as_string">as_string</a></strong></dt>
 
66
<dt><strong><a name="as_string" class="item">as_string</a></strong></dt>
69
67
<dd>
70
68
<p>Return the statement formatted as a string (UTF-8 encoded).</p>
71
69
</dd>
72
 
</dl>
73
 
<div style="margin-left: 2em">
74
 
<dl>
75
 
<dt><strong><a name="item_equals" id="item_equals">equals URI</a></strong></dt>
76
 
</dl>
77
 
</div>
 
70
<dt><strong><a name="equals" class="item">equals URI</a></strong></dt>
 
71
<dd>
78
72
<p>Return non zero if this uri is equal to URI</p>
 
73
</dd>
 
74
</dl>
79
75
 
80
 
<h2><a name="old_methods" id="old_methods">OLD METHODS</a></h2>
 
76
<h2><a name="old_methods">OLD METHODS</a></h2>
81
77
<dl>
82
 
<dt><strong><a name="item_new_from_uri" id="item_new_from_uri">new_from_uri URI</a></strong></dt>
 
78
<dt><strong><a name="new_from_uri" class="item">new_from_uri URI</a></strong></dt>
83
79
<dd>
84
80
<p>Create a new RDF::Redland::URI object from RDF::Redland::URI <em>URI</em> (copy constructor). Instead use:</p>
85
 
</dd>
86
 
<dd>
87
81
<pre>
88
82
  $u=$uri-&gt;clone
89
83
</pre></dd>
90
84
</dl>
91
85
 
92
 
<h2><a name="see_also" id="see_also">SEE ALSO</a></h2>
 
86
<h2><a name="see_also">SEE ALSO</a></h2>
93
87
<p><a href="Parser.html">the RDF::Redland::Parser manpage</a></p>
94
88
 
95
 
<h2><a name="author" id="author">AUTHOR</a></h2>
96
 
<p>Dave Beckett - <a href="http://purl.org/net/dajobe/">http://purl.org/net/dajobe/</a></p>
 
89
<h2><a name="author">AUTHOR</a></h2>
 
90
<p>Dave Beckett - <a href="http://www.dajobe.org/">http://www.dajobe.org/</a></p>
97
91
<hr />
98
92
 
99
 
<p>(C) Copyright 2000-2007 <a href="http://purl.org/net/dajobe/">Dave Beckett</a>, (C) Copyright 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a></p>
 
93
<p>(C) Copyright 2000-2008 <a href="http://www.dajobe.org/">Dave Beckett</a>, (C) Copyright 2000-2005 <a href="http://www.bristol.ac.uk/">University of Bristol</a></p>
100
94
 
101
95
</body>
102
96
</html>