upgraded to yui 0.12.0

upgraded to yui-ext 0.33 rc2
This commit is contained in:
JT Smith 2006-11-28 02:23:34 +00:00
parent 62b3d90db7
commit cfd09a5cb6
1271 changed files with 539033 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 834 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 945 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.6 KiB

File diff suppressed because one or more lines are too long

View file

@ -0,0 +1,87 @@
.pkg h3 {
padding-left:34px;
font:normal 11px verdana,helvetica,tahoma,sans-serif;
height:18px;
cursor:pointer;
}
h3.collapser-expanded{
background: #fff url(pkg-open.gif) no-repeat 0px -1px;
}
h3.collapser-collapsed {
background: #fff url(pkg-closed.gif) no-repeat 0px -1px;
}
.pkg-body{
margin-left:16px;
font:normal 11px verdana,helvetica,tahoma,sans-serif;
}
#classes a{
font:normal 11px verdana,helvetica,tahoma,sans-serif;
display:block;
text-decoration:none;
height:18px;
color:black;
background: #fff url(class.gif) no-repeat 16px -1px;
padding-left:34px;
-moz-outline:none;
outline:none;
white-space: nowrap;
}
#classes a:hover{
text-decoration: underline;
}
#classes a.ex{
background: #fff url(example.gif) no-repeat 16px -1px;
}
#classes{
overflow:auto;
padding:5px;
}
#class .loading-indicator{
font-size:12px;
height:18px;
}
#docs .ylayout-panel-north{
border:0px none;
background:#0000aa url(../../resources/images/basic-dialog/hd-sprite.gif) repeat-x 0px -83px;
padding-top:3px;
padding-left:3px;
}
#docs .ylayout-collapsed-west{
background-image: url(collapse-bg.gif);
background-repeat:no-repeat;
background-position:center;
}
#header {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
color:white;
}
.loading-indicator {
font-size:8pt;
background-image:url('../../resources/images/grid/loading.gif');
background-repeat: no-repeat;
background-position:top left;
padding-left:20px;
height:18px;
text-align:left;
}
a#welcome-link{
background:#fff url(docs.gif) no-repeat 0px 0px;
padding-left:18px;
}
a#help-forums{
background:#fff url(forum.gif) no-repeat 16px 0px;
padding-left:34px;
display:block
}
#loading{
position:absolute;
left:45%;
top:40%;
border:3px solid #B2D0F7;
background:white url(block-bg.gif) repeat-x;
padding:10px;
font:bold 14px verdana,tahoma,helvetica;
color:#003366;
width:150px;
text-align:center;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,016 B

View file

@ -0,0 +1,114 @@
YAHOO.ext.Element.selectorFunction = cssQuery;
var Docs = function(){
var layout, center;
var classClicked = function(e){
// find the "a" element that was clicked
var a = e.findTarget(null, 'a');
if(a){
e.preventDefault();
Docs.loadDoc(a.href);
}
};
return {
init : function(){
getEl('loading').remove();
// initialize state manager, we will use cookies
YAHOO.ext.state.Manager.setProvider(new YAHOO.ext.state.CookieProvider());
// create the main layout
layout = new YAHOO.ext.BorderLayout(document.body, {
north: {
split:false,
initialSize: 32,
titlebar: false
},
west: {
split:true,
initialSize: 250,
minSize: 175,
maxSize: 400,
titlebar: true,
collapsible: true,
animate: true,
useShim:true,
cmargins: {top:2,bottom:2,right:2,left:2}
},
center: {
titlebar: true,
title: 'View Documentation',
autoScroll:false,
tabPosition: 'top',
closeOnTab: true,
//alwaysShowTabs: true,
resizeTabs: true
}
});
// tell the layout not to perform layouts until we're done adding everything
layout.beginUpdate();
layout.add('north', new YAHOO.ext.ContentPanel('header'));
layout.add('west', new YAHOO.ext.ContentPanel('classes', {title: 'Documentation Explorer', fitToFrame:true}));
center = layout.getRegion('center');
center.add(new YAHOO.ext.ContentPanel('main', {fitToFrame:true}));
layout.restoreState();
layout.endUpdate();
var classes = getEl('classes');
classes.mon('click', classClicked);
classes.select('h3').each(function(el){
var c = new NavNode(el);
if(!/^(?:YAHOO|API Reference|Examples and Demos)$/.test(el.innerHTML)){
c.collapse();
}
});
var page = window.location.href.split('#')[1];
if(!page){
page = 'welcome.html';
}
this.loadDoc(page);
},
loadDoc : function(url){
getEl('main').dom.src = url;
}
};
}();
YAHOO.ext.EventManager.onDocumentReady(Docs.init, Docs, true);
/**
* Simple tree node class based on Collapser and predetermined markup.
*/
var NavNode = function(clickEl, collapseEl){
this.clickEl = getEl(clickEl);
if(!collapseEl){
collapseEl = this.clickEl.dom.nextSibling;
while(collapseEl.nodeType != 1){
collapseEl = collapseEl.nextSibling;
}
}
this.collapseEl = getEl(collapseEl);
this.clickEl.addClass('collapser-expanded');
this.clickEl.mon('click', function(){
this.collapsed === true ?
this.expand() : this.collapse();
}, this, true);
};
NavNode.prototype = {
collapse : function(){
this.collapsed = true;
this.collapseEl.setDisplayed(false);
this.clickEl.replaceClass('collapser-expanded','collapser-collapsed');
},
expand : function(){
this.collapseEl.setDisplayed(true);
this.collapsed = false;
this.collapseEl.setStyle('height', '');
this.clickEl.replaceClass('collapser-collapsed','collapser-expanded');
}
};

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,008 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1,003 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 997 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 881 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 904 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 912 B

View file

@ -0,0 +1,206 @@
body {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
color: #000000;
background-color:#FFFFFF;
margin: 0px;
padding: 10px;
}
.body-wrap{
width:95%;
}
.list {list-style:inside square;margin-bottom:10px;}
.list li{padding:2px;}
body, td, th {
font-size: 13px;
}
code {
font-family: "Lucida Console", "Courier New", Courier, monospace;
font-size: 12px;
}
pre {
font-family: "Lucida Console", "Courier New", Courier, monospace;
font-size: 12px;
}
th {
text-align: left;
font-weight: bold;
vertical-align: bottom;
color:black;
padding:3px;
font-weight:bold;
border:1px solid #cccccc;
border-collapse: collapse;
}
.top-tools{
display:none;
}
table {
background-color: white;
}
a {
color: #083772;
}
a:link {
color: #083772;
text-decoration: none;
}
a:visited {
color: #1e4e8f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0000CC;
}
a:active {
text-decoration: none;
color: #1e4e8f;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Trebuchet MS", "Bitstream Vera Sans", verdana, lucida, arial, helvetica, sans-serif;
font-weight: bold;
margin-top: 3px;
margin-bottom: 3px;
letter-spacing: 1px;
width: 90%;
}
h1 {
font-size: 18px;
}
h2 {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
padding-top: 20px;
padding-bottom: 5px;
}
h3 {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 16px;
}
h4 {
font-size: 12px;
color: #666666;
}
h5 {
font-size: 11px;
}
.label {
font-weight: bold;
padding-right: 15px;
}
.description{
margin: 10px 0px;
}
.member-table{
width:100%;
margin-bottom:10px;
}
.member-table td{
padding:2px;
vertical-align:top;
padding-right:15px;
}
body .alt{
background:#f1f1f1;
}
.member-table td.micon{
width:20px;
padding:0px;
border-left:1px solid #bbbbbb;
}
.member-table td.msource{
border-right:1px solid #bbbbbb;
width:100px;
}
.mlink{
font-weight:bold;
}
.member-table td.inherited{
background-image: url(inherited.gif);
background-position:2px 2px;
background-repeat: no-repeat;
}
.member-table td.mdesc{
padding-top:0px;
}
.member-table td.micon,.member-table td.mdesc,.member-table td.msource{
border-bottom:1px solid #bbbbbb;
}
.optional{
color:#555555;
}
pre {
background: #F8F8F8;
border: 1px solid #e8e8e8;
border-left-width: 8px;
padding: 0.8em;
margin: 1em ;
margin-right: 0;
}
pre {
font-size: 12px !important;
line-height:14px !important;
padding:5px;
margin-left:0;
}
.detail-wrap{
border:1px solid #bbbbbb;
border-bottom:0px none;
}
.mdetail-head{
margin-top:10px;
}
.mdetail{
padding:7px;
border-bottom:1px solid #bbbbbb;
}
.mdetail h3{
margin: 5px 0px;
font-size:14px;
color:#083772;
}
.mdetail-desc{
margin:8px;
}
.mdetail-def{
font-style: italic;
font-size: 12px;
margin-top:10px;
margin-left:8px;
display:block;
}
.sub-desc{
margin:5px;
margin-left:16px;
}
.mdetail-params{
margin-top:10px;
}
.mdetail-params strong{
font-weight:bold;
display: block;
margin-bottom:3px;
}
.mdetail-params ul{
list-style: inside;
list-style-type: disc;
margin-left:12px;
}
.mdetail-params li{
list-style: inside;
list-style-type: disc;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1 KiB

View file

@ -0,0 +1,7 @@
/*
Copyright (c) 2006, Yahoo! Inc. All rights reserved.
Code licensed under the BSD License:
http://developer.yahoo.net/yui/license.txt
version: 0.11.0
*/
body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,fieldset,input,p,blockquote,th,td{margin:0;padding:0;}fieldset,img{border:0;}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}ol,ul {list-style:none;}caption,th {text-align:left;}h1,h2,h3,h4,h5,h6{font-size:100%;}q:before,q:after{content:'';}

View file

@ -0,0 +1,221 @@
body {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
color: #000000;
background-color:#FFFFFF;
margin: 0px;
padding: 10px;
}
.body-wrap{
width:95%;
}
.list {list-style:inside square;margin-bottom:10px;}
.list li{padding:2px;}
body, td, th {
font-size: 13px;
}
code {
font-family: "Lucida Console", "Courier New", Courier, monospace;
font-size: 12px;
}
pre {
font-family: "Lucida Console", "Courier New", Courier, monospace;
font-size: 12px;
}
th {
text-align: left;
font-weight: bold;
vertical-align: bottom;
background:#1e4e8f url(/deploy/yui-ext/resources/images/basic-dialog/hd-sprite.gif) repeat-x 0px -83px;
color:white;
padding:3px;
}
.top-tools{
float:right;
clear:none;
}
table {
background-color: white;
}
a {
color: #083772;
}
a:link {
color: #083772;
text-decoration: none;
}
a:visited {
color: #1e4e8f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0000CC;
}
a:active {
text-decoration: none;
color: #1e4e8f;
}
/* Headings */
h1, h2, h3, h4, h5, h6 {
font-family: "Trebuchet MS", "Bitstream Vera Sans", verdana, lucida, arial, helvetica, sans-serif;
font-weight: bold;
margin-top: 3px;
margin-bottom: 3px;
letter-spacing: 1px;
width: 90%;
}
h1 {
font-size: 18px;
}
h2 {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 18px;
padding-top: 20px;
padding-bottom: 5px;
}
h3 {
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-weight: bold;
font-size: 16px;
}
h4 {
font-size: 12px;
color: #666666;
}
h5 {
font-size: 11px;
}
.label {
font-weight: bold;
padding-right: 15px;
}
.description{
margin: 10px 0px;
}
.member-table{
width:100%;
margin-bottom:10px;
}
.member-table td{
padding:2px;
vertical-align:top;
padding-right:15px;
}
body .alt{
background:#f1f1f1;
}
.member-table td.micon{
width:20px;
padding:0px;
border-left:1px solid #bbbbbb;
}
.member-table td.msource{
border-right:1px solid #bbbbbb;
width:100px;
}
.mlink{
font-weight:bold;
}
.member-table td.inherited{
background-image: url(inherited.gif);
background-position:2px 2px;
background-repeat: no-repeat;
}
.member-table td.mdesc{
padding-top:0px;
}
.member-table td.micon,.member-table td.mdesc,.member-table td.msource{
border-bottom:1px solid #bbbbbb;
}
.optional{
color:#555555;
}
pre {
background: #F8F8F8;
border: 1px solid #e8e8e8;
border-left-width: 8px;
padding: 0.8em;
margin: 1em ;
margin-right: 0;
}
pre {
font-size: 12px !important;
line-height:14px !important;
padding:5px;
margin-left:0;
}
.detail-wrap{
border:1px solid #bbbbbb;
border-bottom:0px none;
}
.mdetail-head{
margin-top:10px;
}
.mdetail{
padding:7px;
border-bottom:1px solid #bbbbbb;
}
.mdetail h3{
margin: 5px 0px;
font-size:14px;
color:#083772;
}
.mdetail-desc{
margin:8px;
}
.mdetail-def{
font-style: italic;
font-size: 12px;
margin-top:10px;
margin-left:8px;
display:block;
}
.sub-desc{
margin:5px;
margin-left:16px;
}
.mdetail-params{
margin-top:10px;
}
.mdetail-params strong{
font-weight:bold;
display: block;
margin-bottom:3px;
}
.mdetail-params ul{
list-style: inside;
list-style-type: disc;
margin-left:12px;
}
.mdetail-params li{
list-style: inside;
list-style-type: disc;
}
.hl-default { color: black; }
.hl-code { color: black; }
.hl-brackets { color: black; }
.hl-comment { color: #008000; }
.hl-quotes { color: #a31515; }
.hl-string { color: #a31515; }
.hl-identifier { color: black; }
.hl-builtin { color: darkblue; }
.hl-reserved { color: blue; }
.hl-inlinedoc { color: blue; }
.hl-var { color: black; }
.hl-url { color: blue; }
.hl-special { color: navy; }
.hl-number { color: darkgreen; }
.hl-inlinetags { color: blue; }

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

View file

@ -0,0 +1,61 @@
body{
background:url(welcome-bg.gif) top left;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
color: #000000;
margin: 0px;
font-size:13px;
padding-bottom:15px;
}
a {
color: #083772;
}
a:link {
color: #083772;
text-decoration: none;
}
a:visited {
color: #1e4e8f;
text-decoration: none;
}
a:hover {
text-decoration: underline;
color: #0000CC;
}
.col{
width:45%;
float:left;
margin-left:10px;
}
.block{
border:3px solid #B2D0F7;
background:white url(block-bg.gif) repeat-x;
margin-top:10px;
}
.block-title{
color: #083772;
font-weight: bold;
padding: 4px;
padding-left: 8px;
}
.block-body{
padding:8px;
padding-top:2px;
}
.block-body b{
color:#333333;
font-size:11px;
}
.block-body em {
display:block;
margin-top:5px;
font-size:11px;
color:gray;
text-align:right;
}
.list{
list-style: square;
padding-left:20px;
margin-top:5px;
}