2013-01-21 00:53:57 +00:00
|
|
|
-- newui: add a Makefile rule (like "make embeds") to actually run the
|
|
|
|
Closure Compiler on the newui code, and show errors/warnings, and
|
|
|
|
generate new z*_embed.js file(s). (we can do rolling checksum splits
|
|
|
|
of it later. TODO also: figure out if we can compile in non-minifying
|
|
|
|
mode for now, to increase chances of rolling checksums splitting
|
|
|
|
predictably)
|
|
|
|
|
2013-01-21 00:28:00 +00:00
|
|
|
-- sharing: make camget work with permanode sets too, not just
|
|
|
|
"directory" and "file" things.
|
|
|
|
|
|
|
|
-- sharing: when hitting e.g. http://myserver/share/sha1-xxxxx, if
|
|
|
|
a web browser and not a smart client (Accept header? User-Agent?)
|
|
|
|
then redirect or render a cutesy gallery or file browser instead,
|
|
|
|
still with machine-readable data for slurping.
|
|
|
|
|
2013-01-20 23:58:34 +00:00
|
|
|
-- rethink the directory schema so it can a) represent directories
|
|
|
|
with millions of files (without making a >1MB or >16MB schema blob),
|
|
|
|
probably forming a tree, similar to files. but rather than rolling checksum,
|
2013-01-21 00:28:00 +00:00
|
|
|
just split lexically when nodes get too big.
|
2013-01-20 23:58:34 +00:00
|
|
|
|
2013-01-11 07:03:46 +00:00
|
|
|
-- delete mostly-obsolete camsigd. see big TODO in camsigd.go.
|
|
|
|
|
2013-01-09 03:43:09 +00:00
|
|
|
-- we used to be able live-edit js/css files in server/camlistored/ui when
|
|
|
|
running under the App Engine dev_appserver.py. That's now broken with my
|
|
|
|
latest efforts to revive it. The place to start looking is:
|
|
|
|
server/camlistored/ui/fileembed_appengine.go
|
|
|
|
|
2013-01-03 04:41:26 +00:00
|
|
|
-- should a "share" claim be not a claim but its own permanode, so it
|
|
|
|
can be rescinded? right now you can't really unshare a "haveref"
|
|
|
|
claim. or rather, TODO: verify we support "delete" claims to
|
|
|
|
delete any claim, and verify the share system and indexer all
|
|
|
|
support it. I think the indexer might, but not the share system.
|
|
|
|
Also TODO: "camput delete" or "rescind" subcommand.
|
|
|
|
|
2013-01-03 04:37:37 +00:00
|
|
|
-- make the -transitive flag for "camput share -transitive" be a tri-state:
|
|
|
|
unset, true, false, and unset should then mean default to true for "file"
|
|
|
|
and "directory" schema blobs, and "false" for other things.
|
|
|
|
|
2012-12-24 17:59:52 +00:00
|
|
|
-- index: static directory recursive sizes: search: ask to see biggest directories?
|
|
|
|
|
|
|
|
-- index: index dates in filenames ("yyyy-mm-dd-Foo-Trip", "yyyy-mm blah", etc).
|
2012-12-07 01:57:27 +00:00
|
|
|
|
2013-01-20 21:40:09 +00:00
|
|
|
-- get webdav server working again, for mounting on Windows. This worked before Go 1
|
|
|
|
but bitrot when we moved pkg/fs to use the rsc/fuse.
|
2012-03-23 01:21:32 +00:00
|
|
|
|
2013-01-20 23:10:15 +00:00
|
|
|
-- read/write fuse. using search / camliMember, permanode per inode
|
|
|
|
(https://github.com/hanwen/go-fuse + Go camlistore client == easy?)
|
2012-03-23 01:21:32 +00:00
|
|
|
|
2012-03-23 01:22:34 +00:00
|
|
|
-- work on runsit more, so I can start using this more often. runsit should
|
|
|
|
be able to reload itself, and also watch for binaries changing and restart
|
|
|
|
when binaries change. (or symlinks to binaries)
|
2012-03-23 01:21:32 +00:00
|
|
|
|
2012-08-21 06:09:32 +00:00
|
|
|
-- BUG: ./dev-server and hitting http://localhost:3179/ shouldn't mention
|
2012-08-21 06:08:09 +00:00
|
|
|
the /setup handler.
|
|
|
|
|
2012-08-21 06:09:32 +00:00
|
|
|
-- add gofmt check to "make presubmit". also add "make fmt" target.
|
|
|
|
|
|
|
|
-- BUG: osutil paths.go on OS X: should use Library everywhere instead of mix of
|
|
|
|
Library and ~/.camlistore?
|
|
|
|
|
2013-01-20 23:10:15 +00:00
|
|
|
-- camput: support for skipping common cache/temp files (most of the support is
|
|
|
|
there now, just need to modify cmd/camput/files.go)
|
|
|
|
|
2012-03-23 01:21:32 +00:00
|
|
|
OLD:
|
2010-11-05 04:17:22 +00:00
|
|
|
|
2011-03-06 21:22:58 +00:00
|
|
|
-- add CROS support?
|
|
|
|
http://hacks.mozilla.org/2009/07/cross-site-xmlhttprequest-with-cors/
|
|
|
|
|
|
|
|
-- brackup integration, perhaps sans GPG? (requires Perl client?)
|
|
|
|
|
|
|
|
-- blobserver test suite: flesh it out. (bs-test.pl ... it's pretty good
|
|
|
|
so far, but not done)
|
2013-01-20 23:10:15 +00:00
|
|
|
|
2011-03-06 21:22:58 +00:00
|
|
|
-- blobserver: clean up channel-closing consistency in blobserver interface
|
2011-06-13 15:49:29 +00:00
|
|
|
(most close, one doesn't. all should probably close)
|
2010-11-05 04:17:22 +00:00
|
|
|
|
2010-11-05 04:22:38 +00:00
|
|
|
Android:
|
|
|
|
|
2010-12-21 07:25:34 +00:00
|
|
|
[ ] Fix wake locks in UploadThread. need to hold CPU + WiFi whenever
|
|
|
|
something's enqueued at all and we're running. Move out of the Thread
|
|
|
|
that's uploading itself.
|
2010-11-05 04:22:38 +00:00
|
|
|
[ ] GPG signing of blobs (brad)
|
2010-12-19 23:29:42 +00:00
|
|
|
http://code.google.com/p/android-privacy-guard/
|
|
|
|
http://www.thialfihar.org/projects/apg/
|
|
|
|
(supports signing in code, but not an Intent?)
|
|
|
|
http://code.google.com/p/android-privacy-guard/wiki/UsingApgForDevelopment
|
2010-12-19 23:37:03 +00:00
|
|
|
... mailed the author.
|
|
|
|
|
2010-11-05 04:22:38 +00:00
|
|
|
Client libraries:
|
|
|
|
|
2013-01-20 23:10:15 +00:00
|
|
|
[X] Go
|
|
|
|
[X] JavaScript
|
2010-11-05 04:22:38 +00:00
|
|
|
[/] Python (Brett)
|
|
|
|
[ ] Perl
|
|
|
|
[ ] Ruby
|
|
|
|
[ ] PHP
|