--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/src/cm/media/js/lib/yui/yui_3.0.0b1/releasenotes/README.queue Mon Nov 23 15:14:29 2009 +0100
@@ -0,0 +1,22 @@
+Queue
+ The Queue module in its simplest form is just that: a simple queuing mechanism. Items added to the Queue are removed via next(). With all additional functionality included, it allows you to create a chain of function callbacks executed in order via setTimeout. It also supports timeout chained iterations for each item in the Queue.
+
+ There are three submodules available for Queue:
+ * queue-base - a simple queue with add(..) and next()
+ * queue-promote - adds promote(c) and delete(c) to queue-base
+ * queue-run - Adds a new fully featured queue class AsyncQueue with autorun
+ asynchronous callback execution, timeout chaining, event
+ broadcasting
+
+ See the user guide and API docs for more detail.
+
+3.0.0 beta1
+ * Overhaul. Broken into queue-base, queue-promote, and queue-run.
+
+ See the user guide and API docs for more detail.
+
+3.0.0pr2
+ No changes
+
+3.0.0pr1
+ Initial release