So I said, narrow the focus.
Your "use case" should be, there's a 22 year old college student
living in the dorms.
How will this software get him laid? - jwz
Here are two little trac tricks I cooked up this morning: ticketsed - sed out trac ticket numbers in a block of text
#!/bin/bash sed -rne 's/.*(#[0-9]+).*/\1/gp'ticketwiki - turn a list of tickets into a wiki query
#!/bin/sh TICKETQUERY=$(sed -rne 's/#*([0-9]+)/\1/p' | uniq | tr '\n' '|') cat Need an example? how about this:$ cat <<END | ticketsed | ticketwiki nic - I'll do #5419 otu - taking 5422 seb - I can't do 5430 because I'm busy on something else allan - I'll do 5430 END [[TicketQuery(id=5419|5422|5430,order=id,desc=0,format=table,col=summary|owner|ticket_status|type|status)]]Neat eh?