1 |
3132
|
perry
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2 |
|
|
<!DOCTYPE html
|
3 |
|
|
PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
4 |
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
5 |
|
|
|
6 |
|
|
<html>
|
7 |
|
|
<head>
|
8 |
|
|
<title>logout (Metacat)</title>
|
9 |
|
|
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
10 |
|
|
<link rel="stylesheet" href="../.././rdoc-style.css" type="text/css" media="screen" />
|
11 |
|
|
</head>
|
12 |
|
|
<body class="standalone-code">
|
13 |
|
|
<pre><span class="ruby-comment cmt"># File lib/metacat.rb, line 161</span>
|
14 |
|
|
<span class="ruby-keyword kw">def</span> <span class="ruby-identifier">logout</span>
|
15 |
|
|
<span class="ruby-identifier">response</span> = <span class="ruby-identifier">metacat_get</span>({
|
16 |
|
|
<span class="ruby-value str">'action'</span> =<span class="ruby-operator">></span> <span class="ruby-value str">'logout'</span>,
|
17 |
|
|
<span class="ruby-value str">'qformat'</span> =<span class="ruby-operator">></span> <span class="ruby-value str">'xml'</span>
|
18 |
|
|
})
|
19 |
|
|
<span class="ruby-keyword kw">if</span>(<span class="ruby-identifier">response</span>.<span class="ruby-identifier">content_type</span> <span class="ruby-operator">==</span> <span class="ruby-value str">'text/xml'</span>)
|
20 |
|
|
<span class="ruby-identifier">doc</span> = <span class="ruby-constant">REXML</span><span class="ruby-operator">::</span><span class="ruby-constant">Document</span>.<span class="ruby-identifier">new</span>(<span class="ruby-identifier">response</span>.<span class="ruby-identifier">read_body</span>)
|
21 |
|
|
<span class="ruby-keyword kw">if</span> <span class="ruby-identifier">doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">name</span> = <span class="ruby-value str">'logout'</span>
|
22 |
|
|
<span class="ruby-ivar">@cookie</span> = <span class="ruby-keyword kw">false</span>
|
23 |
|
|
<span class="ruby-keyword kw">return</span> <span class="ruby-keyword kw">true</span>
|
24 |
|
|
<span class="ruby-keyword kw">else</span>
|
25 |
|
|
<span class="ruby-identifier">raise</span> <span class="ruby-value str">'Failed to logout: '</span><span class="ruby-operator">+</span><span class="ruby-identifier">doc</span>.<span class="ruby-identifier">root</span>.<span class="ruby-identifier">text</span>
|
26 |
|
|
<span class="ruby-keyword kw">end</span>
|
27 |
|
|
<span class="ruby-keyword kw">else</span>
|
28 |
|
|
<span class="ruby-identifier">raise</span> <span class="ruby-constant">MetacatResponseError</span>
|
29 |
|
|
<span class="ruby-keyword kw">end</span>
|
30 |
|
|
<span class="ruby-keyword kw">end</span></pre>
|
31 |
|
|
</body>
|
32 |
|
|
</html>
|