- Official Infomation: YUIConf 2011, Conference Schedule, Workshops
- Date: 2011-11-03/04
- Videos: YUIConf 2011 Trailer, YUI Stories, The Matt Taylor Interview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
/* | |
* This patch fixes an issue with Y.Get in 3.2.0 & 3.3.0 | |
* where it fails to know when a CSS file is loaded in FF 9+. | |
* Since it fails to know when the load of the CSS file | |
* has completed, it creates a race condition that | |
* forces the scripts to be attached again. | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var utils = {}, | |
decodeEl; | |
/** | |
* Returns a version of the specified string with all HTML entities | |
* decoded. DO NOT use the output of this function with innerHTML if you're | |
* working with user-supplied content! | |
* | |
* @method decodeEntities | |
* @param {String} string string to decode |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt-get install unzip | |
wget https://github.com/downloads/elasticsearch/elasticsearch/elasticsearch-0.17.4.zip | |
unzip elasticsearch-0.17.4.zip | |
sudo apt-get install python-software-properties | |
sudo add-apt-repository "deb http://archive.canonical.com/ lucid partner" | |
sudo apt-get update | |
sudo apt-get install sun-java6-jre sun-java6-plugin | |
sudo mv elasticsearch-0.17.4 /usr/local/share | |
cd elasticsearch-servicewrapper | |
sudo mv service /usr/local/share/elasticsearch-0.17.4/bin |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<script src="http://fuji.jetpants.com/yui/combo/yui3?build/yui/yui-min.js"></script> | |
<script> | |
var Y = YUI({ | |
comboBase: 'http://fuji.jetpants.com/yui/combo/yui3?', | |
combine : true, | |
root : 'build/' | |
}).use('node', function (Y) { | |
// YUI will now automatically load modules from the custom fuji.jetpants.com | |
// combohandler, which pulls the latest YUI 3 code from git master every 15 | |
// minutes. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# ElasticSearch Service | |
description "ElasticSearch" | |
start on (net-device-up | |
and local-filesystems | |
and runlevel [2345]) | |
stop on runlevel [016] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
Loads different versions of YUI in sandboxed iframes and makes them available | |
for use in the parent frame by exposing them as properties on a `Y.Multi` | |
instance. | |
The included `sandbox.html` file must be present at a URL with the same origin | |
as the current page, or the universe will explode. | |
This is primarily intended to be used for testing. You probably shouldn't use it | |
for anything real. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Load a YUI Gallery module locally for testing. | |
* | |
* Assumes you've built your module with ant and have a local copy of the | |
* yui3-gallery repo. | |
* | |
* This will override Loader's Gallery configuration. Existing Gallery modules | |
* will load locally, and your new module should load locally as well. | |
* | |
* Props to Caridy for helping piece this together. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Loader is a wrapper around LazyLoad that resolves a requested library, loads it, and then when loaded it | |
* fires a callback with the object exported by the library. | |
* | |
* Copyright (c) 2011 Scott Wilson <[email protected]> | |
* | |
* All rights reserved. | |
* | |
* Redistribution and use in source and binary forms, with or without | |
* modification, are permitted provided that the following conditions are met: |