ucslib 0.1.7 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. checksums.yaml +7 -0
  2. data/README.md +151 -0
  3. data/README.rdoc +88 -101
  4. data/lib/ucslib/Gemfile +4 -0
  5. data/lib/ucslib/{destroy.rb → service/ucs/destroy.rb} +3 -12
  6. data/lib/ucslib/{inventory.rb → service/ucs/inventory.rb} +34 -31
  7. data/lib/ucslib/{manage.rb → service/ucs/manage.rb} +14 -22
  8. data/lib/ucslib/{parser.rb → service/ucs/parser.rb} +19 -19
  9. data/lib/ucslib/{provision.rb → service/ucs/provision.rb} +59 -66
  10. data/lib/ucslib/service/ucs/session.rb +110 -0
  11. data/lib/ucslib/{stats.rb → service/ucs/stats.rb} +21 -1
  12. data/lib/ucslib/service/ucs/ucs.rb +70 -0
  13. data/lib/ucslib/{update.rb → service/ucs/update.rb} +9 -17
  14. data/lib/ucslib/version.rb +2 -1
  15. data/lib/ucslib.rb +3 -8
  16. metadata +26 -71
  17. data/.gitignore +0 -4
  18. data/Gemfile +0 -4
  19. data/html/README_rdoc.html +0 -226
  20. data/html/UCSInventory.html +0 -533
  21. data/html/UCSProvision.html +0 -1914
  22. data/html/UCSToken.html +0 -338
  23. data/html/Ucslib.html +0 -173
  24. data/html/created.rid +0 -7
  25. data/html/images/brick.png +0 -0
  26. data/html/images/brick_link.png +0 -0
  27. data/html/images/bug.png +0 -0
  28. data/html/images/bullet_black.png +0 -0
  29. data/html/images/bullet_toggle_minus.png +0 -0
  30. data/html/images/bullet_toggle_plus.png +0 -0
  31. data/html/images/date.png +0 -0
  32. data/html/images/find.png +0 -0
  33. data/html/images/loadingAnimation.gif +0 -0
  34. data/html/images/macFFBgHack.png +0 -0
  35. data/html/images/package.png +0 -0
  36. data/html/images/page_green.png +0 -0
  37. data/html/images/page_white_text.png +0 -0
  38. data/html/images/page_white_width.png +0 -0
  39. data/html/images/plugin.png +0 -0
  40. data/html/images/ruby.png +0 -0
  41. data/html/images/tag_green.png +0 -0
  42. data/html/images/wrench.png +0 -0
  43. data/html/images/wrench_orange.png +0 -0
  44. data/html/images/zoom.png +0 -0
  45. data/html/index.html +0 -273
  46. data/html/js/darkfish.js +0 -116
  47. data/html/js/jquery.js +0 -32
  48. data/html/js/quicksearch.js +0 -114
  49. data/html/js/thickbox-compressed.js +0 -10
  50. data/html/lib/ucslib/inventory_rb.html +0 -75
  51. data/html/lib/ucslib/provision_rb.html +0 -75
  52. data/html/lib/ucslib/session_rb.html +0 -75
  53. data/html/lib/ucslib/version_rb.html +0 -75
  54. data/html/lib/ucslib_rb.html +0 -89
  55. data/html/rdoc.css +0 -763
  56. data/lib/ucslib/session.rb +0 -108
  57. data/ucslib.gemspec +0 -45
@@ -1,114 +0,0 @@
1
- /**
2
- *
3
- * JQuery QuickSearch - Hook up a form field to hide non-matching elements.
4
- * $Id: quicksearch.js 53 2009-01-07 02:52:03Z deveiant $
5
- *
6
- * Author: Michael Granger <mgranger@laika.com>
7
- *
8
- */
9
- jQuery.fn.quicksearch = function( target, searchElems, options ) {
10
- // console.debug( "Quicksearch fn" );
11
-
12
- var settings = {
13
- delay: 250,
14
- clearButton: false,
15
- highlightMatches: false,
16
- focusOnLoad: false,
17
- noSearchResultsIndicator: null
18
- };
19
- if ( options ) $.extend( settings, options );
20
-
21
- return jQuery(this).each( function() {
22
- // console.debug( "Creating a new quicksearch on %o for %o", this, searchElems );
23
- new jQuery.quicksearch( this, searchElems, settings );
24
- });
25
- };
26
-
27
-
28
- jQuery.quicksearch = function( searchBox, searchElems, settings ) {
29
- var timeout;
30
- var boxdiv = $(searchBox).parents('div').eq(0);
31
-
32
- function init() {
33
- setupKeyEventHandlers();
34
- focusOnLoad();
35
- };
36
-
37
- function setupKeyEventHandlers() {
38
- // console.debug( "Hooking up the 'keypress' event to %o", searchBox );
39
- $(searchBox).
40
- unbind( 'keyup' ).
41
- keyup( function(e) { return onSearchKey( e.keyCode ); });
42
- $(searchBox).
43
- unbind( 'keypress' ).
44
- keypress( function(e) {
45
- switch( e.which ) {
46
- // Execute the search on Enter, Tab, or Newline
47
- case 9:
48
- case 13:
49
- case 10:
50
- clearTimeout( timeout );
51
- e.preventDefault();
52
- doQuickSearch();
53
- break;
54
-
55
- // Allow backspace
56
- case 8:
57
- return true;
58
- break;
59
-
60
- // Only allow valid search characters
61
- default:
62
- return validQSChar( e.charCode );
63
- }
64
- });
65
- };
66
-
67
- function focusOnLoad() {
68
- if ( !settings.focusOnLoad ) return false;
69
- $(searchBox).focus();
70
- };
71
-
72
- function onSearchKey ( code ) {
73
- clearTimeout( timeout );
74
- // console.debug( "...scheduling search." );
75
- timeout = setTimeout( doQuickSearch, settings.delay );
76
- };
77
-
78
- function validQSChar( code ) {
79
- var c = String.fromCharCode( code );
80
- return (
81
- (c == ':') ||
82
- (c >= 'a' && c <= 'z') ||
83
- (c >= 'A' && c <= 'Z')
84
- );
85
- };
86
-
87
- function doQuickSearch() {
88
- var searchText = searchBox.value;
89
- var pat = new RegExp( searchText, "im" );
90
- var shownCount = 0;
91
-
92
- if ( settings.noSearchResultsIndicator ) {
93
- $('#' + settings.noSearchResultsIndicator).hide();
94
- }
95
-
96
- // All elements start out hidden
97
- $(searchElems).each( function(index) {
98
- var str = $(this).text();
99
-
100
- if ( pat.test(str) ) {
101
- shownCount += 1;
102
- $(this).fadeIn();
103
- } else {
104
- $(this).hide();
105
- }
106
- });
107
-
108
- if ( shownCount == 0 && settings.noSearchResultsIndicator ) {
109
- $('#' + settings.noSearchResultsIndicator).slideDown();
110
- }
111
- };
112
-
113
- init();
114
- };
@@ -1,10 +0,0 @@
1
- /*
2
- * Thickbox 3 - One Box To Rule Them All.
3
- * By Cody Lindley (http://www.codylindley.com)
4
- * Copyright (c) 2007 cody lindley
5
- * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
6
- */
7
-
8
- var tb_pathToImage = "../images/loadingAnimation.gif";
9
-
10
- eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('$(o).2S(9(){1u(\'a.18, 3n.18, 3i.18\');1w=1p 1t();1w.L=2H});9 1u(b){$(b).s(9(){6 t=X.Q||X.1v||M;6 a=X.u||X.23;6 g=X.1N||P;19(t,a,g);X.2E();H P})}9 19(d,f,g){3m{3(2t o.v.J.2i==="2g"){$("v","11").r({A:"28%",z:"28%"});$("11").r("22","2Z");3(o.1Y("1F")===M){$("v").q("<U 5=\'1F\'></U><4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}n{3(o.1Y("B")===M){$("v").q("<4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}3(1K()){$("#B").1J("2B")}n{$("#B").1J("2z")}3(d===M){d=""}$("v").q("<4 5=\'K\'><1I L=\'"+1w.L+"\' /></4>");$(\'#K\').2y();6 h;3(f.O("?")!==-1){h=f.3l(0,f.O("?"))}n{h=f}6 i=/\\.2s$|\\.2q$|\\.2m$|\\.2l$|\\.2k$/;6 j=h.1C().2h(i);3(j==\'.2s\'||j==\'.2q\'||j==\'.2m\'||j==\'.2l\'||j==\'.2k\'){1D="";1G="";14="";1z="";1x="";R="";1n="";1r=P;3(g){E=$("a[@1N="+g+"]").36();25(D=0;((D<E.1c)&&(R===""));D++){6 k=E[D].u.1C().2h(i);3(!(E[D].u==f)){3(1r){1z=E[D].Q;1x=E[D].u;R="<1e 5=\'1X\'>&1d;&1d;<a u=\'#\'>2T &2R;</a></1e>"}n{1D=E[D].Q;1G=E[D].u;14="<1e 5=\'1U\'>&1d;&1d;<a u=\'#\'>&2O; 2N</a></1e>"}}n{1r=1b;1n="1t "+(D+1)+" 2L "+(E.1c)}}}S=1p 1t();S.1g=9(){S.1g=M;6 a=2x();6 x=a[0]-1M;6 y=a[1]-1M;6 b=S.z;6 c=S.A;3(b>x){c=c*(x/b);b=x;3(c>y){b=b*(y/c);c=y}}n 3(c>y){b=b*(y/c);c=y;3(b>x){c=c*(x/b);b=x}}13=b+30;1a=c+2G;$("#8").q("<a u=\'\' 5=\'1L\' Q=\'1o\'><1I 5=\'2F\' L=\'"+f+"\' z=\'"+b+"\' A=\'"+c+"\' 23=\'"+d+"\'/></a>"+"<4 5=\'2D\'>"+d+"<4 5=\'2C\'>"+1n+14+R+"</4></4><4 5=\'2A\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4>");$("#Z").s(G);3(!(14==="")){9 12(){3($(o).N("s",12)){$(o).N("s",12)}$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1D,1G,g);H P}$("#1U").s(12)}3(!(R==="")){9 1i(){$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1z,1x,g);H P}$("#1X").s(1i)}o.1h=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}n 3(I==3k){3(!(R=="")){o.1h="";1i()}}n 3(I==3j){3(!(14=="")){o.1h="";12()}}};16();$("#K").C();$("#1L").s(G);$("#8").r({Y:"T"})};S.L=f}n{6 l=f.2r(/^[^\\?]+\\??/,\'\');6 m=2p(l);13=(m[\'z\']*1)+30||3h;1a=(m[\'A\']*1)+3g||3f;W=13-30;V=1a-3e;3(f.O(\'2j\')!=-1){1E=f.1B(\'3d\');$("#15").C();3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4></4><U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\' > </U>")}n{$("#B").N();$("#8").q("<U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\'> </U>")}}n{3($("#8").r("Y")!="T"){3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\'>1l</a> 1k 1j 1s</4></4><4 5=\'F\' J=\'z:"+W+"p;A:"+V+"p\'></4>")}n{$("#B").N();$("#8").q("<4 5=\'F\' 3c=\'3b\' J=\'z:"+W+"p;A:"+V+"p;\'></4>")}}n{$("#F")[0].J.z=W+"p";$("#F")[0].J.A=V+"p";$("#F")[0].3a=0;$("#1H").11(d)}}$("#Z").s(G);3(f.O(\'37\')!=-1){$("#F").q($(\'#\'+m[\'26\']).1T());$("#8").24(9(){$(\'#\'+m[\'26\']).q($("#F").1T())});16();$("#K").C();$("#8").r({Y:"T"})}n 3(f.O(\'2j\')!=-1){16();3($.1q.35){$("#K").C();$("#8").r({Y:"T"})}}n{$("#F").34(f+="&1y="+(1p 33().32()),9(){16();$("#K").C();1u("#F a.18");$("#8").r({Y:"T"})})}}3(!m[\'1A\']){o.21=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}}}}31(e){}}9 1m(){$("#K").C();$("#8").r({Y:"T"})}9 G(){$("#2Y").N("s");$("#Z").N("s");$("#8").2X("2W",9(){$(\'#8,#B,#1F\').2V("24").N().C()});$("#K").C();3(2t o.v.J.2i=="2g"){$("v","11").r({A:"1Z",z:"1Z"});$("11").r("22","")}o.1h="";o.21="";H P}9 16(){$("#8").r({2U:\'-\'+20((13/2),10)+\'p\',z:13+\'p\'});3(!(1V.1q.2Q&&1V.1q.2P<7)){$("#8").r({38:\'-\'+20((1a/2),10)+\'p\'})}}9 2p(a){6 b={};3(!a){H b}6 c=a.1B(/[;&]/);25(6 i=0;i<c.1c;i++){6 d=c[i].1B(\'=\');3(!d||d.1c!=2){39}6 e=2a(d[0]);6 f=2a(d[1]);f=f.2r(/\\+/g,\' \');b[e]=f}H b}9 2x(){6 a=o.2M;6 w=1S.2o||1R.2o||(a&&a.1Q)||o.v.1Q;6 h=1S.1P||1R.1P||(a&&a.2n)||o.v.2n;1O=[w,h];H 1O}9 1K(){6 a=2K.2J.1C();3(a.O(\'2I\')!=-1&&a.O(\'3o\')!=-1){H 1b}}',62,211,'|||if|div|id|var||TB_window|function||||||||||||||else|document|px|append|css|click||href|body||||width|height|TB_overlay|remove|TB_Counter|TB_TempArray|TB_ajaxContent|tb_remove|return|keycode|style|TB_load|src|null|unbind|indexOf|false|title|TB_NextHTML|imgPreloader|block|iframe|ajaxContentH|ajaxContentW|this|display|TB_closeWindowButton||html|goPrev|TB_WIDTH|TB_PrevHTML|TB_iframeContent|tb_position||thickbox|tb_show|TB_HEIGHT|true|length|nbsp|span|Math|onload|onkeydown|goNext|Esc|or|close|tb_showIframe|TB_imageCount|Close|new|browser|TB_FoundURL|Key|Image|tb_init|name|imgLoader|TB_NextURL|random|TB_NextCaption|modal|split|toLowerCase|TB_PrevCaption|urlNoQuery|TB_HideSelect|TB_PrevURL|TB_ajaxWindowTitle|img|addClass|tb_detectMacXFF|TB_ImageOff|150|rel|arrayPageSize|innerHeight|clientWidth|self|window|children|TB_prev|jQuery|frameborder|TB_next|getElementById|auto|parseInt|onkeyup|overflow|alt|unload|for|inlineId||100||unescape|1000|round|hspace|TB_closeAjaxWindow|TB_title|undefined|match|maxHeight|TB_iframe|bmp|gif|png|clientHeight|innerWidth|tb_parseQuery|jpeg|replace|jpg|typeof|which|keyCode|event|tb_getPageSize|show|TB_overlayBG|TB_closeWindow|TB_overlayMacFFBGHack|TB_secondLine|TB_caption|blur|TB_Image|60|tb_pathToImage|mac|userAgent|navigator|of|documentElement|Prev|lt|version|msie|gt|ready|Next|marginLeft|trigger|fast|fadeOut|TB_imageOff|hidden||catch|getTime|Date|load|safari|get|TB_inline|marginTop|continue|scrollTop|TB_modal|class|TB_|45|440|40|630|input|188|190|substr|try|area|firefox'.split('|'),0,{}))
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
-
9
- <title>File: inventory.rb [ucslib]</title>
10
-
11
- <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
-
13
- <script src="../../js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="../../js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="../../js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file file-popup">
24
- <div id="metadata">
25
- <dl>
26
- <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2012-05-13 13:23:45 -0400</dd>
28
-
29
-
30
- <dt class="requires">Requires</dt>
31
- <dd class="requires">
32
- <ul>
33
-
34
- </ul>
35
- </dd>
36
-
37
-
38
-
39
- </dl>
40
- </div>
41
-
42
- <div id="documentation">
43
-
44
- <div class="description">
45
- <h2>Description</h2>
46
- <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
- <td>
48
- <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
- </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
- <td>
51
- <p>Copyright © 2012 Murali Raju.</p>
52
- </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
- <td>
54
- <p>Apache License, Version 2.0</p>
55
- </td></tr></table>
56
-
57
- <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
- use this file except in compliance with the License. You may obtain a copy
59
- of the License at</p>
60
-
61
- <p><a
62
- href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
-
64
- <p>Unless required by applicable law or agreed to in writing, software
65
- distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
- License for the specific language governing permissions and limitations
68
- under the License.</p>
69
-
70
- </div>
71
-
72
- </div>
73
- </body>
74
- </html>
75
-
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
-
9
- <title>File: provision.rb [ucslib]</title>
10
-
11
- <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
-
13
- <script src="../../js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="../../js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="../../js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file file-popup">
24
- <div id="metadata">
25
- <dl>
26
- <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2012-05-13 16:19:41 -0400</dd>
28
-
29
-
30
- <dt class="requires">Requires</dt>
31
- <dd class="requires">
32
- <ul>
33
-
34
- </ul>
35
- </dd>
36
-
37
-
38
-
39
- </dl>
40
- </div>
41
-
42
- <div id="documentation">
43
-
44
- <div class="description">
45
- <h2>Description</h2>
46
- <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
- <td>
48
- <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
- </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
- <td>
51
- <p>Copyright © 2012 Murali Raju.</p>
52
- </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
- <td>
54
- <p>Apache License, Version 2.0</p>
55
- </td></tr></table>
56
-
57
- <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
- use this file except in compliance with the License. You may obtain a copy
59
- of the License at</p>
60
-
61
- <p><a
62
- href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
-
64
- <p>Unless required by applicable law or agreed to in writing, software
65
- distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
- License for the specific language governing permissions and limitations
68
- under the License.</p>
69
-
70
- </div>
71
-
72
- </div>
73
- </body>
74
- </html>
75
-
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
-
9
- <title>File: session.rb [ucslib]</title>
10
-
11
- <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
-
13
- <script src="../../js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="../../js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="../../js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file file-popup">
24
- <div id="metadata">
25
- <dl>
26
- <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2012-05-13 16:19:37 -0400</dd>
28
-
29
-
30
- <dt class="requires">Requires</dt>
31
- <dd class="requires">
32
- <ul>
33
-
34
- </ul>
35
- </dd>
36
-
37
-
38
-
39
- </dl>
40
- </div>
41
-
42
- <div id="documentation">
43
-
44
- <div class="description">
45
- <h2>Description</h2>
46
- <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
- <td>
48
- <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
- </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
- <td>
51
- <p>Copyright © 2012 Murali Raju.</p>
52
- </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
- <td>
54
- <p>Apache License, Version 2.0</p>
55
- </td></tr></table>
56
-
57
- <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
- use this file except in compliance with the License. You may obtain a copy
59
- of the License at</p>
60
-
61
- <p><a
62
- href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
-
64
- <p>Unless required by applicable law or agreed to in writing, software
65
- distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
- License for the specific language governing permissions and limitations
68
- under the License.</p>
69
-
70
- </div>
71
-
72
- </div>
73
- </body>
74
- </html>
75
-
@@ -1,75 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
-
9
- <title>File: version.rb [ucslib]</title>
10
-
11
- <link type="text/css" media="screen" href="../../rdoc.css" rel="stylesheet" />
12
-
13
- <script src="../../js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="../../js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="../../js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="../../js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file file-popup">
24
- <div id="metadata">
25
- <dl>
26
- <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2012-05-13 16:49:08 -0400</dd>
28
-
29
-
30
- <dt class="requires">Requires</dt>
31
- <dd class="requires">
32
- <ul>
33
-
34
- </ul>
35
- </dd>
36
-
37
-
38
-
39
- </dl>
40
- </div>
41
-
42
- <div id="documentation">
43
-
44
- <div class="description">
45
- <h2>Description</h2>
46
- <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
47
- <td>
48
- <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
49
- </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
50
- <td>
51
- <p>Copyright © 2012 Murali Raju.</p>
52
- </td></tr><tr><td class="rdoc-term"><p>License</p></td>
53
- <td>
54
- <p>Apache License, Version 2.0</p>
55
- </td></tr></table>
56
-
57
- <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
58
- use this file except in compliance with the License. You may obtain a copy
59
- of the License at</p>
60
-
61
- <p><a
62
- href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
63
-
64
- <p>Unless required by applicable law or agreed to in writing, software
65
- distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
66
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
67
- License for the specific language governing permissions and limitations
68
- under the License.</p>
69
-
70
- </div>
71
-
72
- </div>
73
- </body>
74
- </html>
75
-
@@ -1,89 +0,0 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
3
- "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
4
-
5
- <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
6
- <head>
7
- <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
8
-
9
- <title>File: ucslib.rb [ucslib]</title>
10
-
11
- <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet" />
12
-
13
- <script src="../js/jquery.js" type="text/javascript"
14
- charset="utf-8"></script>
15
- <script src="../js/thickbox-compressed.js" type="text/javascript"
16
- charset="utf-8"></script>
17
- <script src="../js/quicksearch.js" type="text/javascript"
18
- charset="utf-8"></script>
19
- <script src="../js/darkfish.js" type="text/javascript"
20
- charset="utf-8"></script>
21
- </head>
22
-
23
- <body class="file file-popup">
24
- <div id="metadata">
25
- <dl>
26
- <dt class="modified-date">Last Modified</dt>
27
- <dd class="modified-date">2012-05-12 15:18:22 -0400</dd>
28
-
29
-
30
- <dt class="requires">Requires</dt>
31
- <dd class="requires">
32
- <ul>
33
-
34
- <li>ucslib/version</li>
35
-
36
- <li>ucslib/session</li>
37
-
38
- <li>ucslib/provision</li>
39
-
40
- <li>ucslib/inventory</li>
41
-
42
- <li>nokogiri</li>
43
-
44
- <li>rest-client</li>
45
-
46
- <li>json</li>
47
-
48
- </ul>
49
- </dd>
50
-
51
-
52
-
53
- </dl>
54
- </div>
55
-
56
- <div id="documentation">
57
-
58
- <div class="description">
59
- <h2>Description</h2>
60
- <table class="rdoc-list"><tr><td class="rdoc-term"><p>Author</p></td>
61
- <td>
62
- <p>Murali Raju (&lt;murali.raju@appliv.com&gt;)</p>
63
- </td></tr><tr><td class="rdoc-term"><p>Copyright</p></td>
64
- <td>
65
- <p>Copyright © 2011 Murali Raju.</p>
66
- </td></tr><tr><td class="rdoc-term"><p>License</p></td>
67
- <td>
68
- <p>Apache License, Version 2.0</p>
69
- </td></tr></table>
70
-
71
- <p>Licensed under the Apache License, Version 2.0 (the “License”); you may not
72
- use this file except in compliance with the License. You may obtain a copy
73
- of the License at</p>
74
-
75
- <p><a
76
- href="http://www.apache.org/licenses/LICENSE-2.0">www.apache.org/licenses/LICENSE-2.0</a></p>
77
-
78
- <p>Unless required by applicable law or agreed to in writing, software
79
- distributed under the License is distributed on an “AS IS” BASIS, WITHOUT
80
- WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
81
- License for the specific language governing permissions and limitations
82
- under the License.</p>
83
-
84
- </div>
85
-
86
- </div>
87
- </body>
88
- </html>
89
-