perkeep/server/camlistored
Aaron Boodman 2acf13c702 Fix FOPA (flash of permanode aspect) when clicking permanodes with children.
We were waiting to show the container aspect until the child search session
returned. This meant that we temporarily showed the permanode aspect then
swapped to the container aspect shortly thereafter (because the container
aspect is higher priority).

The right solution to this is to change the search protocol so that clients
can know how many children a permanode has without getting the entire list
of them. But for now, it just so happens that search returns the entire
list, so we can use that instead.

Change-Id: Iaf93f689e965a1dc9ef73d834d46c57026c100cd
2014-09-03 00:30:46 -07:00
..
ui Fix FOPA (flash of permanode aspect) when clicking permanodes with children. 2014-09-03 00:30:46 -07:00
.gitignore
README
camlistored.go Since GCE only links to the HTTP url, redirect HTTP requests to https. 2014-08-15 23:17:14 -07:00
run_test.go camlistored, serverinit: allow server config from URLs. 2014-08-02 16:53:58 -07:00
setup.go

README

This is the main Camlistore server.

See also:
 - The storage interface is in <root>/pkg/blobserver
 - The storage implementations are under that e.g. <root>/pkg/blobserver/localdisk
 - The HTTP handlers are implemented in <root>/pkg/blobserver/handlers
 - The UI code is in <root>/server/camlistored/ui