pithos
12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Thu, 13 Oct 2011 15:33:02 +0000 (18:33 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoAdd account policy. Set default policy from settings. Must change settings.py.
Antony Chazapis [Thu, 13 Oct 2011 15:32:25 +0000 (18:32 +0300)]
Add account policy. Set default policy from settings. Must change settings.py.

Refs #1165
Refs #1167

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Sofia Papagiannaki [Thu, 13 Oct 2011 14:55:52 +0000 (17:55 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoinclude milliseconds in mtime - specify decimal precision
Sofia Papagiannaki [Thu, 13 Oct 2011 14:50:15 +0000 (17:50 +0300)]
include milliseconds in mtime - specify decimal precision

Refs #1458

12 years agoMerge policy into node. Needs database reset, or the following commands:
Antony Chazapis [Thu, 13 Oct 2011 13:41:47 +0000 (16:41 +0300)]
Merge policy into node. Needs database reset, or the following commands:

alter table policy rename to pre_policy;
create table if not exists policy
                          ( node   integer,
                            key    text,
                            value  text,
                            primary key (node, key)
                            foreign key (node)
                            references nodes(node)
                            on update cascade
                            on delete cascade );

insert into policy select n.node, p.key, p.value from nodes n, pre_policy p where n.path = p.path;
drop table pre_policy;

Refs #1165
Refs #1167

12 years agoBug fixes by NOC.
Antony Chazapis [Wed, 12 Oct 2011 19:10:32 +0000 (22:10 +0300)]
Bug fixes by NOC.

12 years agoUse environmental variable for the sync container in psync.
Antony Chazapis [Tue, 11 Oct 2011 23:37:11 +0000 (02:37 +0300)]
Use environmental variable for the sync container in psync.

Refs #1315

12 years agoFix wrong autoincrement column. Make mysql tables use UTF-8 pithos/v0.7.8.1
Antony Chazapis [Tue, 11 Oct 2011 22:28:25 +0000 (01:28 +0300)]
Fix wrong autoincrement column. Make mysql tables use UTF-8

Refs #1458

12 years agospecify mysql engine = innodb while creating tables & allow 0s in AUTO_INCREMENT...
Sofia Papagiannaki [Tue, 11 Oct 2011 16:07:52 +0000 (19:07 +0300)]
specify mysql engine = innodb while creating tables & allow 0s in AUTO_INCREMENT column (requires new db after restarting mysqld)

Refs #1458

12 years agoFixed look 'n feel to be like okeanos (except menus)
Christos Stathis [Tue, 11 Oct 2011 15:13:02 +0000 (18:13 +0300)]
Fixed look 'n feel to be like okeanos (except menus)

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Tue, 11 Oct 2011 15:12:08 +0000 (18:12 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Tue, 11 Oct 2011 14:01:24 +0000 (17:01 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoChange middleware for quota.
Antony Chazapis [Tue, 11 Oct 2011 14:01:13 +0000 (17:01 +0300)]
Change middleware for quota.

Refs #1165

12 years agoAdd python module for mysql in admin guide.
root [Tue, 11 Oct 2011 13:57:48 +0000 (16:57 +0300)]
Add python module for mysql in admin guide.

12 years agoAdmin guide change.
Antony Chazapis [Tue, 11 Oct 2011 13:44:43 +0000 (16:44 +0300)]
Admin guide change.

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Tue, 11 Oct 2011 13:15:56 +0000 (16:15 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoReport remaining bytes. Enforce account quota when setting container limits.
Antony Chazapis [Tue, 11 Oct 2011 13:15:42 +0000 (16:15 +0300)]
Report remaining bytes. Enforce account quota when setting container limits.

Refs #1165

12 years agoperform case sensitive varchar ordering, handle correctly utf8 columns and decimals
Sofia Papagiannaki [Tue, 11 Oct 2011 12:25:33 +0000 (15:25 +0300)]
perform case sensitive varchar ordering, handle correctly utf8 columns and decimals

Refs #1458

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Tue, 11 Oct 2011 11:10:23 +0000 (14:10 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Sofia Papagiannaki [Tue, 11 Oct 2011 08:41:04 +0000 (11:41 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoAdd text file for keeping upgrade notes.
Antony Chazapis [Tue, 11 Oct 2011 07:24:37 +0000 (10:24 +0300)]
Add text file for keeping upgrade notes.

12 years agoAdd support for nested directories
Giorgos Verigakis [Mon, 10 Oct 2011 19:14:26 +0000 (22:14 +0300)]
Add support for nested directories

Refs #1315

12 years agoBugfix
Giorgos Verigakis [Mon, 10 Oct 2011 19:09:31 +0000 (22:09 +0300)]
Bugfix

HashMap.load requires a file object, not a path.
Renamed variable 'file' to avoid confusion.

12 years agoAdd a convenience method to just return the hash
Giorgos Verigakis [Mon, 10 Oct 2011 19:08:30 +0000 (22:08 +0300)]
Add a convenience method to just return the hash

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Sofia Papagiannaki [Mon, 10 Oct 2011 18:19:53 +0000 (21:19 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoAdded menu items for invitations and feedback in the user menu
Christos Stathis [Mon, 10 Oct 2011 14:27:09 +0000 (17:27 +0300)]
Added menu items for invitations and feedback in the user menu

12 years agoremove path from primary key mysql
Sofia Papagiannaki [Mon, 10 Oct 2011 09:00:04 +0000 (12:00 +0300)]
remove path from primary key
handle issue with inf

Refs #1458

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
root [Mon, 10 Oct 2011 08:24:45 +0000 (11:24 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoFix imports.
Antony Chazapis [Mon, 10 Oct 2011 08:23:25 +0000 (11:23 +0300)]
Fix imports.

12 years agoMake sure version identifier is integer.
Antony Chazapis [Mon, 10 Oct 2011 08:22:22 +0000 (11:22 +0300)]
Make sure version identifier is integer.

Fixes #1435

12 years agoCSS and aesthetic changes
Christos Stathis [Fri, 7 Oct 2011 12:00:40 +0000 (15:00 +0300)]
CSS and aesthetic changes

12 years agoAdded a down arrow in the user menu
Christos Stathis [Fri, 7 Oct 2011 09:36:04 +0000 (12:36 +0300)]
Added a down arrow in the user menu

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Thu, 6 Oct 2011 17:00:03 +0000 (20:00 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoFix group parsing.
Antony Chazapis [Thu, 6 Oct 2011 16:59:42 +0000 (19:59 +0300)]
Fix group parsing.

12 years agoAdded an option for user credentials on user menu
Christos Stathis [Thu, 6 Oct 2011 16:05:17 +0000 (19:05 +0300)]
Added an option for user credentials on user menu

12 years agoAdded log out option in user menu
Christos Stathis [Thu, 6 Oct 2011 15:30:47 +0000 (18:30 +0300)]
Added log out option in user menu

12 years agoAdded logoff option to username menu pithos/v0.7.8
Christos Stathis [Wed, 5 Oct 2011 15:15:43 +0000 (18:15 +0300)]
Added logoff option to username menu

12 years agoFixed date parsing in versions
Christos Stathis [Wed, 5 Oct 2011 13:58:43 +0000 (16:58 +0300)]
Fixed date parsing in versions

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Wed, 5 Oct 2011 13:04:01 +0000 (16:04 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoWhen multiple files are selected the download option downloads all of them in multipl...
Christos Stathis [Tue, 4 Oct 2011 14:15:08 +0000 (17:15 +0300)]
When multiple files are selected the download option downloads all of them in multiple tabs

12 years agoRemove maps migration utility.
Antony Chazapis [Tue, 4 Oct 2011 14:13:26 +0000 (17:13 +0300)]
Remove maps migration utility.

Refs #1169

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Tue, 4 Oct 2011 14:05:03 +0000 (17:05 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoMigration utility for transferring maps to new storage format.
Antony Chazapis [Tue, 4 Oct 2011 14:04:23 +0000 (17:04 +0300)]
Migration utility for transferring maps to new storage format.

Refs #1169

12 years agoSave hash maps like blocks - based on their hash.
Antony Chazapis [Tue, 4 Oct 2011 14:03:00 +0000 (17:03 +0300)]
Save hash maps like blocks - based on their hash.

Refs #1169

12 years agoRefs #1171
Sofia Papagiannaki [Tue, 4 Oct 2011 11:07:47 +0000 (14:07 +0300)]
Refs #1171

12 years agoMigration Tools: Progess III
Sofia Papagiannaki [Tue, 4 Oct 2011 10:57:21 +0000 (13:57 +0300)]
Migration Tools: Progess III

Refs #1171

12 years agoMerge admin branch.
Antony Chazapis [Tue, 4 Oct 2011 07:36:32 +0000 (10:36 +0300)]
Merge admin branch.

Fixes #1237

12 years agoMerge branch 'admin'
Antony Chazapis [Tue, 4 Oct 2011 07:29:28 +0000 (10:29 +0300)]
Merge branch 'admin'

12 years agoFix some imports.
Antony Chazapis [Tue, 4 Oct 2011 07:22:40 +0000 (10:22 +0300)]
Fix some imports.

Refs #1415

12 years agoAdd license.
Antony Chazapis [Tue, 4 Oct 2011 07:14:46 +0000 (10:14 +0300)]
Add license.

Refs #1315

12 years agoRemove backend filesystem driver for FUSE.
Antony Chazapis [Tue, 4 Oct 2011 07:10:52 +0000 (10:10 +0300)]
Remove backend filesystem driver for FUSE.

12 years agoRemove simple backend.
Antony Chazapis [Tue, 4 Oct 2011 07:08:54 +0000 (10:08 +0300)]
Remove simple backend.

Fixes #1333

12 years agoRemove unecessary imports.
Antony Chazapis [Tue, 4 Oct 2011 07:05:23 +0000 (10:05 +0300)]
Remove unecessary imports.

12 years agoContainer-level block upload documentation and integration with tools.
Antony Chazapis [Tue, 4 Oct 2011 06:57:59 +0000 (09:57 +0300)]
Container-level block upload documentation and integration with tools.

Fixes #1371

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Mon, 3 Oct 2011 15:21:24 +0000 (18:21 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoFixed empty headers error in IE
Christos Stathis [Mon, 3 Oct 2011 15:21:20 +0000 (18:21 +0300)]
Fixed empty headers error in IE

12 years agoFix 'Content-Type' parsing in container POST request.
Antony Chazapis [Fri, 30 Sep 2011 10:49:41 +0000 (13:49 +0300)]
Fix 'Content-Type' parsing in container POST request.

Refs #1371

12 years agoAllow cross-account object from object update.
Antony Chazapis [Fri, 30 Sep 2011 09:44:25 +0000 (12:44 +0300)]
Allow cross-account object from object update.

Fixes #1379

12 years agoUse a more sane pagination default admin
Giorgos Verigakis [Fri, 30 Sep 2011 09:17:28 +0000 (12:17 +0300)]
Use a more sane pagination default

Refs #1237

12 years agoAdd search by uniq support
Giorgos Verigakis [Fri, 30 Sep 2011 09:16:43 +0000 (12:16 +0300)]
Add search by uniq support

Use a - prefix to exclude instead of filter.

Refs #1237

12 years agoUse the non-minified version of bootstrap
Giorgos Verigakis [Fri, 30 Sep 2011 09:06:11 +0000 (12:06 +0300)]
Use the non-minified version of bootstrap

So that the version is visible inside the file.

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Fri, 30 Sep 2011 08:39:56 +0000 (11:39 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoCommit to merge.
Antony Chazapis [Fri, 30 Sep 2011 08:39:50 +0000 (11:39 +0300)]
Commit to merge.

12 years agoContainer-level block upload.
Antony Chazapis [Fri, 30 Sep 2011 08:39:12 +0000 (11:39 +0300)]
Container-level block upload.

Refs #1371

12 years agoEnabled copy between users
Christos Stathis [Thu, 29 Sep 2011 15:18:22 +0000 (18:18 +0300)]
Enabled copy between users

12 years agoAdd paging support
Giorgos Verigakis [Thu, 29 Sep 2011 15:01:12 +0000 (18:01 +0300)]
Add paging support

New entry added in settings.

Refs #1237

12 years agoFixed initialization and display of shared trees
Christos Stathis [Thu, 29 Sep 2011 15:01:02 +0000 (18:01 +0300)]
Fixed initialization and display of shared trees

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Thu, 29 Sep 2011 14:01:09 +0000 (17:01 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoMigration Tools: Progess II
Sofia Papagiannaki [Thu, 29 Sep 2011 12:15:20 +0000 (15:15 +0300)]
Migration Tools: Progess II

Refs #1171

12 years agoFix 403 error name.
Antony Chazapis [Thu, 29 Sep 2011 09:10:37 +0000 (12:10 +0300)]
Fix 403 error name.

12 years agoFix 'Content-Type' header in GET replies.
Antony Chazapis [Thu, 29 Sep 2011 08:04:40 +0000 (11:04 +0300)]
Fix 'Content-Type' header in GET replies.

Fixes #1239

12 years agoFix conflict response when copying/moving.
Antony Chazapis [Thu, 29 Sep 2011 06:54:07 +0000 (09:54 +0300)]
Fix conflict response when copying/moving.

12 years agoData migration tool - initial version. Handles uploading of blocks.
Antony Chazapis [Thu, 29 Sep 2011 06:53:31 +0000 (09:53 +0300)]
Data migration tool - initial version. Handles uploading of blocks.

Refs #1171

12 years agoAdd hashmap-based download in lib and store utility.
Antony Chazapis [Wed, 28 Sep 2011 21:05:12 +0000 (00:05 +0300)]
Add hashmap-based download in lib and store utility.

12 years agoMerge spend with store.
Antony Chazapis [Wed, 28 Sep 2011 19:09:09 +0000 (22:09 +0300)]
Merge spend with store.

12 years agoFixed tag removal
Christos Stathis [Wed, 28 Sep 2011 14:42:34 +0000 (17:42 +0300)]
Fixed tag removal

12 years agoFixed view link for images
Christos Stathis [Wed, 28 Sep 2011 14:27:14 +0000 (17:27 +0300)]
Fixed view link for images

12 years agoAdjust page size in filelist as the list increases
Christos Stathis [Wed, 28 Sep 2011 13:46:59 +0000 (16:46 +0300)]
Adjust page size in filelist as the list increases

12 years agoLast-Modified is at last in iso 8601 format
Christos Stathis [Wed, 28 Sep 2011 13:37:25 +0000 (16:37 +0300)]
Last-Modified is at last in iso 8601 format

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Antony Chazapis [Wed, 28 Sep 2011 12:19:51 +0000 (15:19 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoSupport cross-account copy and move.
Antony Chazapis [Wed, 28 Sep 2011 12:19:33 +0000 (15:19 +0300)]
Support cross-account copy and move.

Fixes #1241

12 years agoclient library: display objects with space for name
Sofia Papagiannaki [Wed, 28 Sep 2011 11:29:32 +0000 (14:29 +0300)]
client library: display objects with space for name

12 years agoclient library: ururllib.quote request paths & display objects with space for name
Sofia Papagiannaki [Wed, 28 Sep 2011 11:06:16 +0000 (14:06 +0300)]
client library: ururllib.quote request paths & display objects with space for name

12 years agoUpdate README.
Antony Chazapis [Wed, 28 Sep 2011 10:24:29 +0000 (13:24 +0300)]
Update README.

12 years agoAllow spaces in XML replies.
Antony Chazapis [Wed, 28 Sep 2011 09:43:37 +0000 (12:43 +0300)]
Allow spaces in XML replies.

Fixes #1283

12 years agoInclude susecond precision in RFC8601 times returned in extended listings.
Antony Chazapis [Wed, 28 Sep 2011 09:08:04 +0000 (12:08 +0300)]
Include susecond precision in RFC8601 times returned in extended listings.

12 years agoDocument syncing algorithm.
Antony Chazapis [Wed, 28 Sep 2011 08:26:24 +0000 (11:26 +0300)]
Document syncing algorithm.

Refs #1315

12 years agocommand line client: bug fix clear sharing in update object
Sofia Papagiannaki [Mon, 26 Sep 2011 13:57:38 +0000 (16:57 +0300)]
command line client: bug fix clear sharing in update object

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Mon, 26 Sep 2011 13:07:52 +0000 (16:07 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos

12 years agoFixed bug when emptying a trash with a very deep tree
Christos Stathis [Mon, 26 Sep 2011 13:07:22 +0000 (16:07 +0300)]
Fixed bug when emptying a trash with a very deep tree

12 years agoFixed permission update on folder to show error message when deep children have alrea...
Christos Stathis [Mon, 26 Sep 2011 12:00:31 +0000 (15:00 +0300)]
Fixed permission update on folder to show error message when deep children have already permissions set

12 years agoFixed bug in restore-from-trash where very deep trees were not restored
Christos Stathis [Mon, 26 Sep 2011 11:24:33 +0000 (14:24 +0300)]
Fixed bug in restore-from-trash where very deep trees were not restored

12 years agoModularBackend list_containers returns ordered list of shared containers
Sofia Papagiannaki [Mon, 26 Sep 2011 11:24:13 +0000 (14:24 +0300)]
ModularBackend list_containers returns ordered list of shared containers

12 years agoclient lib create_object appends hashmap parameter incase of detailed (json/xml)...
Sofia Papagiannaki [Mon, 26 Sep 2011 11:04:31 +0000 (14:04 +0300)]
client lib create_object appends hashmap parameter incase of detailed (json/xml) resquest

12 years agoModularBackend list_containers returns unique list of shared containers
Sofia Papagiannaki [Mon, 26 Sep 2011 11:01:45 +0000 (14:01 +0300)]
ModularBackend list_containers returns unique list of shared containers

12 years agoModularBackend list_containers returns unique list of shared containers
Sofia Papagiannaki [Mon, 26 Sep 2011 10:53:24 +0000 (13:53 +0300)]
ModularBackend list_containers returns unique list of shared containers

12 years agoFixed bug in move-to-trash where very deep trees were not trashed
Christos Stathis [Mon, 26 Sep 2011 10:41:49 +0000 (13:41 +0300)]
Fixed bug in move-to-trash where very deep trees were not trashed

12 years agoDisable paste option if the target folder is a child of the folder to-be-copied
Christos Stathis [Mon, 26 Sep 2011 09:46:01 +0000 (12:46 +0300)]
Disable paste option if the target folder is a child of the folder to-be-copied

12 years agoFixed parsing of dates to include timezone according to iso8601 format
Christos Stathis [Mon, 26 Sep 2011 09:43:44 +0000 (12:43 +0300)]
Fixed parsing of dates to include timezone according to iso8601 format

12 years agoMerge branch 'master' of https://code.grnet.gr/git/pithos
Christos Stathis [Fri, 23 Sep 2011 15:13:10 +0000 (18:13 +0300)]
Merge branch 'master' of https://code.grnet.gr/git/pithos