TODO 25 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531
  1. $Id$
  2. Legend:
  3. SPEC!! - Not specified
  4. SPEC - Spec not finalized
  5. N - nick claims
  6. R - arma claims
  7. P - phobos claims
  8. - Not done
  9. * Top priority
  10. . Partially done
  11. o Done
  12. d Deferrable
  13. D Deferred
  14. X Abandoned
  15. Things we'd like to do in 0.2.0.x:
  16. - See also Flyspray tasks.
  17. - See also all items marked XXXX020 and DOCDOC in the code
  18. - Bugs.
  19. - Bug reports Roger has heard along that way that don't have enough
  20. details/attention to solve them yet.
  21. - tup said that when he set FetchUselessDescriptors, after
  22. 24 or 48 hours he wasn't fetching any descriptors at all
  23. anymore. This was in 0.2.0 but worked fine in 0.1.2.
  24. - arma noticed that when his network went away and he tried
  25. a new guard node and the connect() syscall failed to it,
  26. the guard wasn't being marked as down. 0.2.0.x.
  27. - after being without network for 12 hours, arma's tor decided
  28. it couldn't fetch any network statuses, and never tried again
  29. even when the network came back and arma clicked on things.
  30. also 0.2.0.
  31. - phobos says relaybandwidth* sometimes don't do what we expect.
  32. http://interloper.org/tmp/2007-06-bw-usage.png
  33. - this notion of authorities notifying servers that they're
  34. unreachable is bunk -- it's leftover from the time when all
  35. servers ran 24/7. now it triggers every time a server goes
  36. away and then returns before the old descriptor has expired.
  37. - add a --quiet commandline option that suppresses logs. useful
  38. for --hashed-password and maybe others.
  39. - Tor logs the libevent version on startup, for debugging purposes.
  40. This is great. But it does this before configuring the logs, so
  41. it only goes to stdout and is then lost.
  42. - Proposals:
  43. . 101: Voting on the Tor Directory System (plus 103)
  44. . Finalize proposal
  45. * Describe schedule in copious detail.
  46. - Get authorities voting
  47. . Code to manage key certificates
  48. - Download as needed.
  49. . Code to generate consensus from a list of votes
  50. * Detect whether votes are really all for the same period.
  51. . Push/pull documents as appropriate.
  52. - Pull votes and signatures if we don't get them.
  53. - Cache votes and signatures on disk.
  54. o Have clients know which authorities are v3 authorities, and what
  55. their keys are.
  56. - While we're at it, let v3 authorities have fqdns lines.
  57. - Fix all XXXX020s in vote code
  58. - Validate information properly.
  59. - Warn if we get a vote with different authorities than we know.
  60. - Don't count votes with a different valid-after when generating
  61. the same consensus.
  62. - Dump certificates with the wrong time. Or just warn?
  63. - Warn authority ops when their certs are nearly invalid.
  64. - When checking a consensus, make sure that its times are plausible.
  65. - Add a function that will eventually tell us about our clock skew.
  66. For now, just require that authorities not be skewed.
  67. - Start caching consensus documents once authorities make them
  68. - Start downloading and using consensus documents once caches serve them
  69. - Controller support
  70. - GETINFO to get consensus
  71. - Event when new consensus arrives
  72. . 104: Long and Short Router Descriptors
  73. - Drop bandwidth history from router-descriptors around September 10,
  74. once torstatus and weasel have upgraded.
  75. - 105: Version negotiation for the Tor protocol
  76. . 111: Prioritize local traffic over relayed.
  77. o Implement
  78. - Merge into tor-spec.txt.
  79. - Refactoring:
  80. . Make cells get buffered on circuit, not on the or_conn.
  81. . Switch to pool-allocation for cells?
  82. - Benchmark pool-allocation vs straightforward malloc.
  83. - Adjust memory allocation logic in pools to favor a little less
  84. slack memory.
  85. . Remove socketpair-based bridges conns, and the word "bridge". (Use
  86. shared (or connected) buffers for communication, rather than sockets.)
  87. . Implement
  88. - Handle rate-limiting on directory writes to linked directory
  89. connections in a more sensible manner.
  90. - Find more ways to test this.
  91. - Have clients do TLS connection rotation less often than "every 10
  92. minutes" in the thrashy case, and more often than "once a week" in the
  93. extra-stable case.
  94. - Streamline how we pick entry nodes: Make choose_random_entry() have
  95. less magic and less control logic.
  96. - Maybe move NT services into their own module.
  97. - Refactor networkstatus generation:
  98. - Include "v" line in getinfo values.
  99. - Bridges:
  100. . Bridges users (rudimentary version)
  101. o Ability to specify bridges manually
  102. o Config option 'UseBridges' that bridge users can turn on.
  103. o uses bridges as first hop rather than entry guards.
  104. o if you don't have any routerinfos for your bridges, or you don't
  105. like the ones you have, ask a new bridge for its server/authority.
  106. . Ask all directory questions to bridge via BEGIN_DIR.
  107. - use the bridges for dir fetches even when our dirport is open.
  108. R - drop 'authority' queries if they're to our own identity key; accept
  109. them otherwise.
  110. N - Design/implement the "local-status" or something like it, from the
  111. "Descriptor purposes: how to tell them apart" section of
  112. http://archives.seul.org/or/dev/May-2007/msg00008.html
  113. - cache of bridges that we've learned about and use but aren't
  114. manually listed in the torrc.
  115. o timeout and retry schedules for fetching bridge descriptors
  116. - give extend_info_t a router_purpose again
  117. o react faster to download networkstatuses after the first bridge
  118. descriptor arrives
  119. o be more robust to bridges being marked as down and leaving us
  120. stranded without any known "running" bridges.
  121. - Bridges operators (rudimentary version)
  122. - Ability to act as dir cache without a dir port.
  123. o Bridges publish to bridge authorities
  124. o Fix BEGIN_DIR so that you connect to bridge of which you only
  125. know IP (and optionally fingerprint), and then use BEGIN_DIR to learn
  126. more about it.
  127. - look at server_mode() and decide if it always applies to bridges too.
  128. - Bridges authorities (rudimentary version)
  129. o Rudimentary "do not publish networkstatus" option for bridge
  130. authorities.
  131. - Clients can ask bridge authorities for more bridges.
  132. - Bridges
  133. o Clients can ask bridge authorities for updates on known bridges.
  134. - More TLS normalization work: make Tor less easily
  135. fingerprinted.
  136. - Directory system improvements
  137. - Misc
  138. - Make BEGIN_DIR mandatory for asking questions of bridge authorities?
  139. - Features (other than bridges):
  140. - Blocking-resistance.
  141. - Write a proposal; make this part of 105.
  142. - Audit how much RAM we're using for buffers and cell pools; try to
  143. trim down a lot.
  144. o Accept \n as end of lines in the control protocol in addition to \r\n.
  145. o Use fetch_from_buf_line_lf in control.c instead of fetch_from_buf_line.
  146. o Fix up read escaped_data to accept LF instead of CRLF, and to
  147. always translate_newlines (since that's the only way it's called).
  148. - Base relative control socket paths on datadir.
  149. - We should ship with a list of stable dir mirrors -- they're not
  150. trusted like the authorities, but they'll provide more robustness
  151. and diversity for bootstrapping clients.
  152. - Better estimates in the directory of whether servers have good uptime
  153. (high expected time to failure) or good guard qualities (high
  154. fractional uptime).
  155. - AKA Track uptime as %-of-time-up, as well as time-since-last-down
  156. - Make TrackHostExits expire TrackHostExitsExpire seconds after their
  157. *last* use, not their *first* use.
  158. - Limit to 2 dir, 2 OR, N SOCKS connections per IP.
  159. - Or maybe close connections from same IP when we get a lot from one.
  160. - Or maybe block IPs that connect too many times at once.
  161. - add an AuthDirBadexit torrc option if we decide we want one.
  162. o Add a GuardsSelectedByVersion line to the state file so we know
  163. not to drop guards we added.
  164. o Have it include the date too.
  165. - Testing
  166. N - Hack up a client that gives out weird/no certificates, so we can
  167. test to make sure that this doesn't cause servers to crash.
  168. - Deprecations:
  169. - can we deprecate 'getinfo network-status'?
  170. - can we deprecate the FastFirstHopPK config option?
  171. - Documentation
  172. - HOWTO for DNSPort.
  173. - Tell people about OSX Uninstaller
  174. - Quietly document NT Service options
  175. - More prominently, we should have a recommended apps list.
  176. - recommend gaim.
  177. - unrecommend IE because of ftp:// bug.
  178. - we should add a preamble to tor-design saying it's out of date.
  179. . Document transport and natdport in a good HOWTO.
  180. - Publicize torel. (What else?
  181. . Finish path-spec.txt
  182. P - Packaging:
  183. P - Can we switch to polipo? Please?
  184. - Make documentation realize that location of system configuration file
  185. will depend on location of system defaults, and isn't always /etc/torrc.
  186. P - If we haven't replaced privoxy, lock down its configuration in all
  187. packages, as documented in tor-doc-unix.html
  188. P - Figure out why dll's compiled in mingw don't work right in WinXP.
  189. P - Figure out why openssl 0.9.8e "make test" fails at sha256t test.
  190. P - Figure out if including RSA and IDEA are bad for Tor from a legal
  191. perspective
  192. P - Create packages for Nokia 800, requested by Chris Soghoian
  193. P - Consider creating special Tor-Polipo-Vidalia test packages,
  194. requested by Dmitri Vitalev
  195. - Get Vidalia supporting protocolinfo and using auth by default.
  196. - Try to get newer Torbuttons into the windows bundle.
  197. Nice-to-have items for 0.2.0.x, time permitting:
  198. - Proposals
  199. - 113: Simplifying directory authority administration
  200. - 110: prevent infinite-length circuits (phase one)
  201. . Robust decentralized storage for hidden service descriptors.
  202. (Karsten is working on this; proposal 114.)
  203. - 118: Listen on and advertise multiple ports:
  204. - Tor should be able to have a pool of outgoing IP addresses that it is
  205. able to rotate through. (maybe. Possible overlap with proposal 118.)
  206. - config option to publish what ports you listen on, beyond
  207. ORPort/DirPort. It should support ranges and bit prefixes (?) too.
  208. (This is very similar to proposal 118.)
  209. - 117: IPv6 Exits
  210. - Internal code support for ipv6:
  211. o Clone ipv6 functions (inet_ntop, inet_pton) where they don't exist.
  212. - Most address variables need to become tor_addr_t
  213. - Teach resolving code how to handle ipv6.
  214. - Teach exit policies about ipv6 (consider ipv4/ipv6 interaction!)
  215. - Features
  216. - Let controller set router flags for authority to transmit, and for
  217. client to use.
  218. - add an 'exit-address' line in the descriptor for servers that exit
  219. from something that isn't their published address.
  220. - Clients should estimate their skew as median of skew from servers
  221. over last N seconds.
  222. - More work on AvoidDiskWrites?
  223. - Protocol work
  224. - MAYBE kill stalled circuits rather than stalled connections. This is
  225. possible thanks to cell queues, but we need to consider the anonymity
  226. implications.
  227. - Implement TLS shutdown properly when possible.
  228. - Low-priority bugs:
  229. - we try to build 4 test circuits to break them over different
  230. servers. but sometimes our entry node is the same for multiple
  231. test circuits. this defeats the point.
  232. - If the client's clock is too far in the past, it will drop (or just not
  233. try to get) descriptors, so it'll never build circuits.
  234. - Refactoring:
  235. - Move all status info out of routerinfo into local_routerstatus. Make
  236. "who can change what" in local_routerstatus explicit. Make
  237. local_routerstatus (or equivalent) subsume all places to go for "what
  238. router is this?"
  239. - Build:
  240. - Detect correct version of libraries from autoconf script.
  241. - Documentation:
  242. - Review torrc.sample to make it more discursive.
  243. Deferred from 0.2.0.x:
  244. - Features
  245. - Make a TCP DNSPort
  246. - Refactoring
  247. - Make resolves no longer use edge_connection_t unless they are actually
  248. _on_ a socks connection: have edge_connection_t and (say)
  249. dns_request_t both extend an edge_stream_t, and have p_streams and
  250. n_streams both be linked lists of edge_stream_t.
  251. - Generate torrc.{complete|sample}.in, tor.1.in, the HTML manual, and the
  252. online config documentation from a single source.
  253. - Blocking/scanning-resistance
  254. - It would be potentially helpful to https requests on the OR port by
  255. acting like an HTTPS server.
  256. - Do we want to maintain our own set of entryguards that we use as
  257. next hop after the bridge? Open research question; let's say no
  258. for 0.2.0 unless we learn otherwise.
  259. - Should do reachability testing but only on the purpose==bridge
  260. descriptors we have.
  261. - Some mechanism for specifying that we want to stop using a cached
  262. bridge.
  263. Future versions:
  264. - See also Flyspray tasks.
  265. - See also all OPEN/ACCEPTED proposals.
  266. - See also all items marked XXXX and FFFF in the code.
  267. - Protocol:
  268. - Our current approach to block attempts to use Tor as a single-hop proxy
  269. is pretty lame; we should get a better one.
  270. - Allow small cells and large cells on the same network?
  271. - Cell buffering and resending. This will allow us to handle broken
  272. circuits as long as the endpoints don't break, plus will allow
  273. connection (tls session key) rotation.
  274. - Implement Morphmix, so we can compare its behavior, complexity,
  275. etc. But see paper breaking morphmix.
  276. - Other transport. HTTP, udp, rdp, airhook, etc. May have to do our own
  277. link crypto, unless we can bully DTLS into it.
  278. - Need a relay teardown cell, separate from one-way ends.
  279. (Pending a user who needs this)
  280. - Handle half-open connections: right now we don't support all TCP
  281. streams, at least according to the protocol. But we handle all that
  282. we've seen in the wild.
  283. (Pending a user who needs this)
  284. - Directory system
  285. - BEGIN_DIR items
  286. - turn the received socks addr:port into a digest for setting .exit
  287. - handle connect-dir streams that don't have a chosen_exit_name set.
  288. - Have a "Faster" status flag that means it. Fast2, Fast4, Fast8?
  289. - Add an option (related to AvoidDiskWrites) to disable directory
  290. caching. (Is this actually a good idea??)
  291. - Add d64 and fp64 along-side d and fp so people can paste status
  292. entries into a url. since + is a valid base64 char, only allow one
  293. at a time. Consider adding to controller as well.
  294. - Some back-out mechanism for auto-approval on authorities
  295. - a way of rolling back approvals to before a timestamp
  296. - Consider minion-like fingerprint file/log combination.
  297. - Have new people be in limbo and need to demonstrate usefulness
  298. before we approve them.
  299. - Hidden services:
  300. - Standby/hotswap/redundant hidden services.
  301. . Update the hidden service stuff for the new dir approach. (Much
  302. of this will be superseded by 114.)
  303. - switch to an ascii format, maybe sexpr?
  304. - authdirservers publish blobs of them.
  305. - other authdirservers fetch these blobs.
  306. - hidserv people have the option of not uploading their blobs.
  307. - you can insert a blob via the controller.
  308. - and there's some amount of backwards compatibility.
  309. - teach clients, intro points, and hidservs about auth mechanisms.
  310. - come up with a few more auth mechanisms.
  311. - auth mechanisms to let hidden service midpoint and responder filter
  312. connection requests.
  313. - Let each hidden service (or other thing) specify its own
  314. OutboundBindAddress?
  315. - Hidserv offerers shouldn't need to define a SocksPort
  316. - Server operation
  317. - When we notice a 'Rejected: There is already a named server with
  318. this nickname' message... or maybe instead when we see in the
  319. networkstatuses that somebody else is Named with the name we
  320. want: warn the user, send a STATUS_SERVER message, and fall back
  321. to unnamed.
  322. - If the server is spewing complaints about raising your ulimit -n,
  323. we should add a note about this to the server descriptor so other
  324. people can notice too.
  325. - When we hit a funny error from a dir request (eg 403 forbidden),
  326. but tor is working and happy otherwise, and we haven't seen many
  327. such errors recently, then don't warn about it.
  328. - Controller
  329. - A way to adjust router flags from the controller. (How do we
  330. prevent the authority from clobbering them soon afterward?)
  331. - Implement missing status events and accompanying getinfos
  332. - DIR_REACHABLE
  333. - BAD_DIR_RESPONSE (Unexpected directory response; maybe we're behind
  334. a firewall.)
  335. - BAD_PROXY (Bad http or https proxy)
  336. - UNRECOGNIZED_ROUTER (a nickname we asked for is unavailable)
  337. - Status events related to hibernation
  338. - something about failing to parse our address?
  339. from resolve_my_address() in config.c
  340. - sketchy OS, sketchy threading
  341. - too many onions queued: threading problems or slow CPU?
  342. - Implement missing status event fields:
  343. - TIMEOUT on CHECKING_REACHABILITY
  344. - GETINFO status/client, status/server, status/general: There should be
  345. some way to learn which status events are currently "in effect."
  346. We should specify which these are, what format they appear in, and so
  347. on.
  348. - More information in events:
  349. - Include bandwidth breakdown by conn->type in BW events.
  350. - Change circuit status events to give more details, like purpose,
  351. whether they're internal, when they become dirty, when they become
  352. too dirty for further circuits, etc.
  353. - Change stream status events analogously.
  354. - Expose more information via getinfo:
  355. - import and export rendezvous descriptors
  356. - Review all static fields for additional candidates
  357. - Allow EXTENDCIRCUIT to unknown server.
  358. - We need some way to adjust server status, and to tell tor not to
  359. download directories/network-status, and a way to force a download.
  360. - Make everything work with hidden services
  361. - Performance/resources
  362. - per-conn write buckets
  363. - separate config options for read vs write limiting
  364. (It's hard to support read > write, since we need better
  365. congestion control to avoid overfull buffers there. So,
  366. defer the whole thing.)
  367. - Investigate RAM use in directory authorities.
  368. - Look into pulling serverdescs off buffers as they arrive.
  369. - Rate limit exit connections to a given destination -- this helps
  370. us play nice with websites when Tor users want to crawl them; it
  371. also introduces DoS opportunities.
  372. - Consider truncating rather than destroying failed circuits,
  373. in order to save the effort of restarting. There are security
  374. issues here that need thinking, though.
  375. - Handle full buffers without totally borking
  376. - Rate-limit OR and directory connections overall and per-IP and
  377. maybe per subnet.
  378. - Misc
  379. - Hold-open-until-flushed now works by accident; it should work by
  380. design.
  381. - Display the reasons in 'destroy' and 'truncated' cells under
  382. some circumstances?
  383. - Make router_is_general_exit() a bit smarter once we're sure what
  384. it's for.
  385. - Automatically determine what ports are reachable and start using
  386. those, if circuits aren't working and it's a pattern we
  387. recognize ("port 443 worked once and port 9001 keeps not
  388. working").
  389. - Security
  390. - don't do dns hijacking tests if we're reject *:* exit policy?
  391. (deferred until 0.1.1.x is less common)
  392. - Directory guards
  393. - Mini-SoaT:
  394. - Servers might check certs for known-good ssl websites, and if
  395. they come back self-signed, declare themselves to be
  396. non-exits. Similar to how we test for broken/evil dns now.
  397. - Authorities should try using exits for http to connect to some
  398. URLS (specified in a configuration file, so as not to make the
  399. List Of Things Not To Censor completely obvious) and ask them
  400. for results. Exits that don't give good answers should have
  401. the BadExit flag set.
  402. - Alternatively, authorities should be able to import opinions
  403. from Snakes on a Tor.
  404. - More consistent error checking in router_parse_entry_from_string().
  405. I can say "banana" as my bandwidthcapacity, and it won't even squeak.
  406. - Bind to random port when making outgoing connections to Tor servers,
  407. to reduce remote sniping attacks.
  408. - Audit everything to make sure rend and intro points are just as
  409. likely to be us as not.
  410. - Do something to prevent spurious EXTEND cells from making
  411. middleman nodes connect all over. Rate-limit failed
  412. connections, perhaps?
  413. - DoS protection: TLS puzzles, public key ops, bandwidth exhaustion.
  414. - Bridges
  415. - Tolerate clock skew on bridge relays.
  416. - Needs thinking
  417. - Now that we're avoiding exits when picking non-exit positions,
  418. we need to consider how to pick nodes for internal circuits. If
  419. we avoid exits for all positions, we skew the load balancing. If
  420. we accept exits for all positions, we leak whether it's an
  421. internal circuit at every step. If we accept exits only at the
  422. last hop, we reintroduce Lasse's attacks from the Oakland paper.
  423. - Windows server usability
  424. - Solve the ENOBUFS problem.
  425. - make tor's use of openssl operate on buffers rather than sockets,
  426. so we can make use of libevent's buffer paradigm once it has one.
  427. - make tor's use of libevent tolerate either the socket or the
  428. buffer paradigm; includes unifying the functions in connect.c.
  429. - We need a getrlimit equivalent on Windows so we can reserve some
  430. file descriptors for saving files, etc. Otherwise we'll trigger
  431. asserts when we're out of file descriptors and crash.
  432. - Merge code from Urz into libevent
  433. - Make Tor use evbuffers.
  434. - Documentation
  435. - a way to generate the website diagrams from source, so we can
  436. translate them as utf-8 text rather than with gimp.
  437. . Flesh out options_description array in src/or/config.c
  438. . multiple sample torrc files
  439. . figure out how to make nt service stuff work?
  440. . Document it.
  441. - Refactor tor man page to divide generally useful options from
  442. less useful ones?
  443. - Add a doxygen style checker to make check-spaces so nick doesn't drift
  444. too far from arma's undocumented styleguide. Also, document that
  445. styleguide in HACKING. (See r9634 for example.)
  446. - exactly one space at beginning and at end of comments, except i
  447. guess when there's line-length pressure.
  448. - if we refer to a function name, put a () after it.
  449. - only write <b>foo</b> when foo is an argument to this function.
  450. - doxygen comments must always end in some form of punctuation.
  451. - capitalize the first sentence in the doxygen comment, except
  452. when you shouldn't.
  453. - avoid spelling errors and incorrect comments. ;)
  454. - Packaging
  455. - The Debian package now uses --verify-config when (re)starting,
  456. to distinguish configuration errors from other errors. Perhaps
  457. the RPM and other startup scripts should too?
  458. - add a "default.action" file to the tor/vidalia bundle so we can
  459. fix the https thing in the default configuration:
  460. http://wiki.noreply.org/noreply/TheOnionRouter/TorFAQ#PrivoxyWeirdSSLPort
  461. - Related tools
  462. - Patch privoxy and socks protocol to pass strings to the browser.
  463. Documentation, non-version-specific.
  464. - Specs
  465. - Mark up spec; note unclear points about servers
  466. NR - write a spec appendix for 'being nice with tor'
  467. - Specify the keys and key rotation schedules and stuff
  468. - Mention controller libs someplace.
  469. - Remove need for HACKING file.
  470. P - document http://wiki.noreply.org/noreply/TheOnionRouter/TransparentProxy on freebsd and osx
  471. P - figure out why x86_64 won't build rpms from tor.spec
  472. P - figure out spec files for bundles of vidalia-tor-polipo
  473. P - figure out polipo install scripts for bundles of vidalia-tor-polipo on osx, win32
  474. P - evaluate https://sourceforge.net/projects/kleanup/
  475. P - evaluate TorK
  476. P - figure out selinux policy for tor
  477. P - change packaging system to more automated and specific for each
  478. platform, suggested by Paul Wouter
  479. Website:
  480. - tor-in-the-media page
  481. . more pictures from ren. he wants to describe the tor handshake
  482. - Figure out licenses for website material.
  483. - and remove home and make the "Tor" picture be the link to home.
  484. - put the logo on the website, in source form, so people can put it on
  485. stickers directly, etc.
  486. - put the source image for the stickers on the website, so people can
  487. print their own
  488. R - make a page with the hidden service diagrams.
  489. - ask Jan to be the translation coordinator? add to volunteer page.
  490. - add a page for localizing all tor's components.
  491. - It would be neat if we had a single place that described _all_ the
  492. tor-related tools you can use, and what they give you, and how well they
  493. work. Right now, we don't give a lot of guidance wrt
  494. torbutton/foxproxy/privoxy/polipo in any consistent place.