-
Notifications
You must be signed in to change notification settings - Fork 14
/
README.txt
86 lines (54 loc) · 1.28 KB
/
README.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
Introduction
============
Since version 2, this package aims to be a backport of the Plone 5 folder
contents implementation.
Features
--------
- better drag and drop implementation
- Shortcuts to move items to the top or bottom of folder
- Multi-file upload
- shift-click selection
- drag drop files from desktop to upload
- change workflow
- change tags
- properties
- rename
- add menu
Installation
------------
I'm aiming to support Plone versions 4.1 through 4.3. Each version requires
that you pin a few newer versions of a few plone packages.
Plone 4.2
~~~~~~~~~
version pins::
[versions]
plone.app.querystring = 1.1.1
plone.app.vocabularies = 2.1.16
Plone 4.1
~~~~~~~~~
version pins::
[versions]
plone.app.querystring = 1.1.1
plone.app.registry = 1.1
plone.app.vocabularies = 2.1.16
tus support
-----------
`tus`_ is a protocol aimed at supporting resumable file uploads on the web.
add egg::
eggs =
...
wildcard.foldercontents
tus
...
Or::
eggs =
...
wildcard.foldercontents[tus]
...
Then, settings for tus::
environment-vars =
TUS_ENABLED true
TUS_TMP_FILE_DIR ${buildout:directory}/var/tmp
make tus directory::
mkdir var/tmp
.. _`tus`: http://tus.io/