Let's publish files
Bug #1484699 reported by
Facundo Batista
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
magicicada server |
In Progress
|
Undecided
|
Unassigned |
Bug Description
We need to serve public files.
We could do it in the simplest way, because in the future we may have the full website and serve it there: just make the server to listen HTTP on some port, receive the GET for the file, return the bytes.
Related branches
lp:~facundo/magicicada-server/publicfiles
- Natalia Bidart: Approve
-
Diff: 781 lines (+418/-18)16 files modifiedconfig-manager.txt (+2/-2)
magicicada/filesync/services.py (+1/-0)
magicicada/filesync/utilities/make_abundant_files.py (+1/-0)
magicicada/rpcdb/backend.py (+19/-2)
magicicada/rpcdb/tests/test_backend.py (+124/-4)
magicicada/server/content.py (+22/-0)
magicicada/server/integration/integtests_udf.py (+2/-0)
magicicada/server/integtests/test_sync.py (+0/-1)
magicicada/server/server.py (+78/-0)
magicicada/server/testing/aq_helpers.py (+1/-0)
magicicada/server/testing/testcase.py (+1/-0)
magicicada/server/tests/test_content.py (+39/-7)
magicicada/server/tests/test_fileops.py (+88/-1)
magicicada/server/tests/test_server.py (+33/-0)
magicicada/settings/__init__.py (+1/-0)
test (+6/-1)
Changed in magicicada-server: | |
assignee: | nobody → Facundo Batista (facundo) |
status: | New → Triaged |
Changed in magicicada-server: | |
assignee: | Facundo Batista (facundo) → nobody |
To post a comment you must log in.
The linked branch has all the infrastructure to list/flag publish files, that is the previous step to actually *serve* them.