preparing for 2.6 yui upgrade

This commit is contained in:
JT Smith 2008-10-22 18:36:26 +00:00
parent eea207b3ec
commit a041e93da8
1632 changed files with 0 additions and 812103 deletions

View file

@ -1,3 +0,0 @@
#container .module {
background-color:#dedede;
}

View file

@ -1,3 +0,0 @@
#container .module {
border:1px dashed #999999;
}

View file

@ -1,118 +0,0 @@
//create a namespace for this example:
YAHOO.namespace("example.GetNews");
//This example uses the "Module Pattern"; a full explanation of
//this pattern can be found on yuiblog:
// http://yuiblog.com/blog/2007/06/12/module-pattern
YAHOO.example.GetNews = function() {
//set up some shortcuts in case our typing fingers
//get lazy:
var Event = YAHOO.util.Event,
Dom = YAHOO.util.Dom,
JSON = YAHOO.lang.JSON,
Button = YAHOO.widget.Button,
Get = YAHOO.util.Get,
elResults = Dom.get("results");
//we won't use the Get Utility's success handler in this example
//because the web service we're using has a built-in callback
//mechanism. But we'll stub it out here and use it to simply
//log a message to the logger:
var onGetNewsSuccess = function() {
YAHOO.log("The Get Utility has fired the success handler indicating that the requested script has loaded and is ready for use.", "info", "example");
}
//function to retrieve data from Yahoo! News Search web service --
//http://developer.yahoo.com/search/news/V1/newsSearch.html
var getNewsData = function() {
YAHOO.log("Button clicked; getGetNewsData firing.", "info", "example");
//Load the transitional state of the results section:
elResults.innerHTML = "<h3>Retrieving news search results for for " +
Dom.get("p").value + ":</h3>" +
"<img src='http://l.yimg.com/us.yimg.com/i/nt/ic/ut/bsc/busybar_1.gif' " +
"alt='Please wait...'>";
//prepare the URL for the Yahoo Site Explorer API:
var sURL = "http://search.yahooapis.com/NewsSearchService/V1/newsSearch?" +
"appid=3wEDxLHV34HvAU2lMnI51S4Qra5m.baugqoSv4gcRllqqVZm3UrMDZWToMivf5BJ3Mom" +
"&results=10&output=json&" +
"&callback=YAHOO.example.GetNews.callback" +
"&query=" + encodeURIComponent(Dom.get("p").value);
//This simple line is the call to the Get Utility; we pass
//in the URL and the configuration object, which in this case
//consists merely of our success and failure callbacks:
var transactionObj = Get.script(sURL, {
onSuccess: onGetNewsSuccess,
scope : this
});
//The script method returns a single-field object containing the
//tranaction id:
YAHOO.log("Get Utility transaction started; transaction object: " + YAHOO.lang.dump(transactionObj), "info", "example");
}
return {
init: function() {
//suppress default form behavior
Event.on("newsSearch", "submit", function(e) {
Event.preventDefault(e);
getNewsData();
}, this, true);
//instantiate Button:
var oButton = new Button("getNewsData");
YAHOO.log("GetNews Button instantiated.", "info", "example");
getNewsData();
},
callback: function(results) {
YAHOO.log("Web service returned data to YAHOO.example.GetNews.callback; beginning to process.", "info", "example");
//work with the returned data to extract meaningful fields:
var aResults = results.ResultSet.Result;
var totalLinks = results.ResultSet.totalResultsAvailable;
var returnedLinkCount = results.ResultSet.totalResultsReturned;
if(returnedLinkCount) {//there are inbound links; process and display them:
//write header and open list of inbound links:
var html = "<h3>There are " +
totalLinks +
" news items on this topic; here are the first " +
returnedLinkCount +
":</h3><ol>";
//process list of inbound links:
for (var i=0; i < aResults.length; i++) {
html += "<li><strong><a href='" +
aResults[i].Url +
"'>" + aResults[i].Title +
"</a>:</strong> " + aResults[i].Summary +
"</li>";
}
//close list of inbound links
html += "</ol>";
} else {//no inbound links exist for this page:
var html = "<h3>There are no news items available for the topic specified.</h3";
}
//insert string into DOM:
elResults.innerHTML = html;
}
}
}();
//Initialize the example when the DOM is completely loaded:
YAHOO.util.Event.onDOMReady(
YAHOO.example.GetNews.init,
YAHOO.example.GetNews, //pass this object to init and...
true); //...run init in the passed object's
//scope

View file

@ -1,3 +0,0 @@
/* neutral CSS file forces browser to repaint;
necessary in some A-Grade browsers when purging
CSS style sheets */

View file

@ -1,13 +0,0 @@
#container .module {
font-family:times;
}
#container .module h2 {
font-size:146.5%;
color:#330033;
}
#container .module h3 {
font-size:131%;
color:#336600;
}

File diff suppressed because one or more lines are too long

View file

@ -1,232 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Getting CSS Style Sheets</title>
<style type="text/css">
/*margin and padding on body element
can introduce errors in determining
element position and are not recommended;
we turn them off as a foundation for YUI
CSS treatments. */
body {
margin:0;
padding:0;
}
</style>
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="../../build/button/assets/skins/sam/button.css" />
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="../../build/element/element-beta-min.js"></script>
<script type="text/javascript" src="../../build/button/button-min.js"></script>
<script type="text/javascript" src="../../build/get/get-min.js"></script>
<!--begin custom header content for this example-->
<style type="text/css" id="styleoverrides">
#container .hd {
background-image:url(http://us.i1.yimg.com/us.yimg.com/i/us/nt/ma/ma_nws_1.gif);
background-position:top right;
background-repeat:no-repeat;
background-color:none;
}
#container h2 {
border:none;
margin-top:0;
}
#container h3 {
color:#999999;
}
#buttonContainer {
padding-bottom:.5em;
}
#container .module {
padding:.5em 1em 1em 1em;
overflow:hidden;
}
/*
When we load the new CSS files, these files will be loaded above this style block.
If we need to override any styles supplied by the new CSS files, we can do this
here. For instance, this is useful if you are loading YUI skin files dynamically,
but want to override some of the styles.
*/
</style>
<!--end custom header content for this example-->
</head>
<body class=" yui-skin-sam">
<h1>Getting CSS Style Sheets</h1>
<div class="exampleIntro">
<p><a href="http://developer.yahoo.com/yui/get">The YUI Get Utility</a> can be
used to fetch CSS stylesheets after the page has loaded. This allows you to
reduce the size of your "main" stylesheet by segregating the style rules for
specific modules that may not be displayed when the page is first rendered.
Once the module is needed, you can bring in the CSS (and JavaScript)
dynamically using the Get Utility.</p>
<p>The example below demonstrates the dynamic addition and removal of three
stylesheets that change the appearance of the News module. By clicking on the
buttons (which make use of the <a
href="http://developer.yahoo.com/yui/button/">YUI Button Control</a>), you can
add/remove border, background, and font treatments for the module.
(<strong>Note:</strong> The News module itself is built using the Get Utility
to fetch JSON data from the <a
href="http://developer.yahoo.com/search/news/V1/newsSearch.html">Yahoo! News
Search web service</a>; it follows the same code pattern described in the <a
href="get-script-basic.html">"Getting a Script Node with JSON Data"</a>
example.) </p>
</div>
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
<div id="container">
<div id="buttonContainer">
<!--YUI Button instances, created from script, will go here.-->
</div>
<div class="module">
<div class="hd"><h2>In the News:</h2></div>
<div class="bd" id="results">
<!--News stories will be displayed here.-->
</div>
<div class="ft">
<div id="searchControls">
<!--Use a real form that works without JavaScript:-->
<form method="GET" action="http://search.yahooapis.com/NewsSearchService/V1/newsSearch" id="newsSearch">
<label for="p">Search Yahoo! News:</label> <input type="text" name="p" id="p" value="San Francisco" size="40">
<input type="submit" id="getNewsData" value="Search Yahoo! News">
</form>
</div>
</div>
</div>
</div>
<script language="javascript">
// Encapsulating our code in a self-executing anonymous function
// is one way to create a namespace:
(function() {
// shortcuts and other variables:
var Button = YAHOO.widget.Button,
Event = YAHOO.util.Event,
Dom = YAHOO.util.Dom,
Get = YAHOO.util.Get,
elContainer = Dom.get("container"),
tIds = {};
// YUI Buttons are attractive and effective for "call to action"
// tasks like the one here. We'll create buttons purely from
// JavaScript; there's no need for this style-change functionality
// to be "accessible"; in fact, it's purely cosmetic, so keeping
// these buttons out of the page's initial DOM is preferable. We'll
// use the "name" property of the button to determine what CSS to
// load when each button is clicked:
var borderButton = new Button({
id: "borderButton",
type: "checkbox",
name: "border",
label: "Border CSS",
container: "buttonContainer"
});
var backgroundButton = new Button({
id: "backgroundButton",
type: "checkbox",
name: "background",
label: "Background CSS",
container: "buttonContainer"
});
var textButton = new Button({
id: "textButton",
type: "checkbox",
name: "text",
label: "Text CSS",
container: "buttonContainer"
});
// Making available outside the anonymous function so these can be
// introspected in FireBug if desired:
YAHOO.example.buttons = [borderButton, backgroundButton, textButton];
// Checkbox buttons are either checked or unchecked; when their state
// changes, their "onCheckedChange" event fires. We'll use that
// event to trigger the loading and unloading of CSS using the Get
// Utility.
var onCheckedChange = function() {
//Which button was actuated?
var name = this.get("name");
//The button's checked state has already been updated, so if
//true we load the necessary CSS:
if(this.get("checked")) {
// We'll use the 'data' parameter to pass through the name
// of the CSS file to our onSuccess handler. This allows
// us to have access to the purge method when we want
// to remove the CSS.
//
// In addition, we use the 'insertBefore' property to specify
// the id of a style block we want to insert the new nodes
// before. By doing this, we can ensure that any style overrides
// for the dynamically loaded CSS will be applied in the correct
// order.
Get.css("../get/assets/" + name + ".css", {
data: name,
insertBefore: "styleoverrides",
onSuccess: onSuccess
});
} else {
// In onSuccess, we save a reference to the callback object
// in an associative array (tIds) indexed by the CSS name. That
// allows us here, when the CSS needs to be removed, to simply
// call the purge method corresponding to the item we want to
// remove. Purge clears all the link nodes that were created
// as part of the transaction (in this case, just a single
// link node).
tIds[this.get("name")].purge();
YAHOO.log("CSS was successfully purged; our object containing transaction ids now looks like this: " + YAHOO.lang.dump(tIds, 1), "info", "example");
// Some A-Grade browsers won't repaint automatically when CSS link nodes
// are removed. You can nudge these browsers to repaint by adding
// a blank CSS stylesheet to the page:
Get.css("../get/assets/neutral.css");
}
};
// Now we can subscribe our onCheckedChange function to each
// of our three YUI Buttons' "checkedChange" event:
borderButton.on("checkedChange", onCheckedChange);
backgroundButton.on("checkedChange", onCheckedChange);
textButton.on("checkedChange", onCheckedChange);
// As noted above, in onSuccess we want to save the callback
// object in an associative array indexed by CSS file name so that
// we can purge the link nodes later if the CSS file needs to be
// removed.
var onSuccess = function(o) {
tIds[o.data] = o;
YAHOO.log("CSS was successfully returned; our object containing transaction ids now looks like this: " + YAHOO.lang.dump(tIds, 1), "info", "example");
}
})();
</script>
<script src="../get/assets/getNews.js" type="text/javascript"></script>
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
</body>
</html>

File diff suppressed because one or more lines are too long

View file

@ -1,241 +0,0 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Getting a Script Node with JSON Data</title>
<style type="text/css">
/*margin and padding on body element
can introduce errors in determining
element position and are not recommended;
we turn them off as a foundation for YUI
CSS treatments. */
body {
margin:0;
padding:0;
}
</style>
<link rel="stylesheet" type="text/css" href="../../build/fonts/fonts-min.css" />
<link rel="stylesheet" type="text/css" href="../../build/button/assets/skins/sam/button.css" />
<script type="text/javascript" src="../../build/yahoo-dom-event/yahoo-dom-event.js"></script>
<script type="text/javascript" src="../../build/element/element-beta-min.js"></script>
<script type="text/javascript" src="../../build/button/button-min.js"></script>
<script type="text/javascript" src="../../build/get/get-min.js"></script>
<!--begin custom header content for this example-->
<style type="text/css">
#container ol {
/*bringing lists on to the page with breathing room */
margin-left:2em !important;
}
#container ol li {
/*giving OL's LIs generated numbers*/
list-style: decimal outside !important;
}
#container h3 {
margin-top: 1em;
}
</style>
<!--end custom header content for this example-->
</head>
<body class=" yui-skin-sam">
<h1>Getting a Script Node with JSON Data</h1>
<div class="exampleIntro">
<p>This example employs the <a href="http://developer.yahoo.com/yui/get/">YUI Get Utility</a> in a simple use case: retrieving JSON data from a cross-domain web service. While this is a relatively common usage, it's important to understand the security ramifications of this technique. Scripts loaded via the Get Utility (or any other &quot;script node&quot; solution) execute immediately once they are loaded. If you do not fully control (or fully trust) the script's source, this is not a safe technique and it can put the security of your users' data at risk. (For more information on the dangers of cross-site scripting [XSS] exploits, <a href="http://en.wikipedia.org/wiki/Cross-site_scripting">check out the Wikipedia entry on this subject</a>.)</p>
<p>Here, we will use a trusted Yahoo! Search web service called <a href="http://developer.yahoo.com/search/siteexplorer/V1/inlinkData.html">Site Explorer</a> to return a list of inbound links for a given URL. The principal difference between this example and similar examples using <a href="http://developer.yahoo.com/yui/connection/">YUI Connection Manager</a> is that this technique does not require a server-side proxy. The browser connects directly to the third-party web service without bouncing through a proxy page as is required when using the XMLHttpRequest object (on which Connection Manager relies).</p>
</div>
<!--BEGIN SOURCE CODE FOR EXAMPLE =============================== -->
<div id="container">
<!--Use a real form that works without JavaScript:-->
<form method="GET" action="http://siteexplorer.search.yahoo.com/advsearch" id="siteExplorer">
<label for="p">Site URL:</label> <input type="text" name="p" id="p" value="http://developer.yahoo.com/yui" size="40">
<input type="hidden" name="bwm" value="i">
<input type="hidden" name="bwms" value="p">
<input type="submit" id="getSiteExplorerData" value="Click here to get JSON data.">
</form>
<div id="results">
<!--JSON output will be written to the DOM here-->
</div>
</div>
<script type="text/javascript">
//create a namespace for this example:
YAHOO.namespace("example.SiteExplorer");
//This example uses the "Module Pattern"; a full explanation of
//this pattern can be found on yuiblog:
// http://yuiblog.com/blog/2007/06/12/module-pattern
YAHOO.example.SiteExplorer = function() {
//set up some shortcuts in case our typing fingers
//get lazy:
var Event = YAHOO.util.Event,
Dom = YAHOO.util.Dom,
Button = YAHOO.widget.Button,
Get = YAHOO.util.Get,
elResults = Dom.get("results"),
tIds = {},
loading = false,
current = null;
// We use the Get Utility's success handler in conjunction with
// the web service callback in order to detect bad responses
// from the web service.
var onSiteExplorerSuccess = function(o) {
// stop blocking requests
loading = false;
// A success response means the script node is inserted. However, the
// utility is unable to detect whether or not the content of the script
// node is correct, or even if there was a bad response (like a 404
// error). To get around this, we use the web service callback to
// verify that the script contents was correct.
if (o.tId in tIds) {
YAHOO.log("The Get Utility has fired the success handler indicating that the " +
"requested script has loaded and is ready for use.", "info", "example");
} else {
YAHOO.log("The Get utility has fired onSuccess but the webservice callback did not " +
"fire. We could retry the transaction here, or notify the user of the " +
"failure.", "info", "example");
}
}
var onSiteExplorerFailure = function(o) {
YAHOO.log("The Get Utility failed.", "info", "example");
}
//function to retrieve data from Yahoo! Site Explorer web service --
// http://developer.yahoo.com/search/siteexplorer/V1/inlinkData.html
var getSiteExplorerData = function() {
YAHOO.log("Button clicked; getSiteExplorerData firing.", "info", "example");
// block multiple requests
if (loading) {
return;
}
loading = true;
//Load the transitional state of the results section:
elResults.innerHTML = "<h3>Retrieving incoming links for " +
Dom.get("p").value + ":</h3>" +
"<img src='http://l.yimg.com/us.yimg.com/i/nt/ic/ut/bsc/busybar_1.gif' " +
"alt='Please wait...'>";
//prepare the URL for the Yahoo Site Explorer API:
var sURL = "http://search.yahooapis.com/SiteExplorerService/V1/inlinkData?" +
"appid=3wEDxLHV34HvAU2lMnI51S4Qra5m.baugqoSv4gcRllqqVZm3UrMDZWToMivf5BJ3Mom" +
"&results=20&output=json&omit_inlinks=domain" +
"&callback=YAHOO.example.SiteExplorer.callback" +
"&query=" + encodeURIComponent(Dom.get("p").value);
//This simple line is the call to the Get Utility; we pass
//in the URL and the configuration object, which in this case
//consists merely of our success and failure callbacks:
var transactionObj = Get.script(sURL, {
onSuccess: onSiteExplorerSuccess,
onFailure: onSiteExplorerFailure,
scope : this
});
//The script method returns a single-field object containing the
//tranaction id:
YAHOO.log("Get Utility transaction started; transaction object: " + YAHOO.lang.dump(transactionObj), "info", "example");
// keep track of the current transaction id. The transaction will be
// considered complete only if the web service callback is executed.
current = transactionObj.tId;
}
return {
init: function() {
//suppress default form behavior
Event.on("siteExplorer", "submit", function(e) {
Event.preventDefault(e);
getSiteExplorerData();
}, this, true);
//instantiate Button:
var oButton = new Button("getSiteExplorerData");
YAHOO.log("Button instantiated.", "info", "example");
},
callback: function(results) {
YAHOO.log("Web service returned data to YAHOO.example.SiteExplorer.callback; beginning to process.", "info", "example");
// Mark the transaction as complete. This will be checked by the onSuccess
// handler to determine if the transaction really succeeded.
tIds[current] = true;
//work with the returned data to extract meaningful fields:
var aResults = results.ResultSet.Result;
var totalLinks = results.ResultSet.totalResultsAvailable;
var returnedLinkCount = results.ResultSet.totalResultsReturned;
if(aResults) {//there are inbound links; process and display them:
//write header and open list of inbound links:
var html = "<h3>There are " +
totalLinks +
" inbound links for this page; here are the first " +
returnedLinkCount +
":</h3><ol>";
//process list of inbound links:
for (var i=0; i < aResults.length; i++) {
html += "<li><strong>" +
aResults[i].Title +
":</strong> <a href='" +
aResults[i].Url +
"'>" + aResults[i].Url +
"</a></li>";
}
//close list of inbound links
html += "</ol>";
} else {//no inbound links exist for this page:
var html = "<h3>There are no inbound links for the page specified.</h3";
}
//insert string into DOM:
elResults.innerHTML = html;
}
}
}();
//Initialize the example when the DOM is completely loaded:
YAHOO.util.Event.onDOMReady(
YAHOO.example.SiteExplorer.init,
YAHOO.example.SiteExplorer, //pass this object to init and...
true); //...run init in the passed object's
//scope
</script>
<!--END SOURCE CODE FOR EXAMPLE =============================== -->
</body>
</html>

File diff suppressed because one or more lines are too long