This section can be used to manage queues. Queues are a mechanism to group patches.
Every logged in user can create queues. One must be the owner of a patch (or an administrator user) to move a patch to a queue. A queue can not be discarded (removed) when it contains open patches.
Use the 'Patches' section to list the patches in a queue.
: INSERT INTO : queue : SET : queue_title = ${mysql::cgi.param.mkqueue_title}, : queue_text = ${mysql::cgi.param.mkqueue_text}, : user_id_owner = $userid ); } } var queue_list = sql(db, <:SQL> : SELECT : queue_id AS id : FROM : queue : WHERE : queue_discarded = 0 ); ?> ${html_queue(q.id, 0)}
Title: