[Owncloud] Mimetype bug

2012-07-19 Thread Vincent
Hi all, owncloud 4.0.4 I couldn't see preview of picture, pdf, .., picture app was breaked, ... All mimetype from mimetypes.list.php aren't writing in db->oc_fscache. In lib/helper.php line 460, strncmp function is used. If i replace : | 1. if (!strncmp(PHP_OS, "WIN", 3)) { | by : | 1.

[Owncloud] share as a zip feature

2012-07-19 Thread Alessandro Cosentino
Hi, I have a user question (speaking of which, does owncloud.shapado still exists?). Maybe I am missing something, but I can't find this feature: I want to share an entire folder as a zip file via private link. Now when I share a folder via private link, the person that open the link will see a pag

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Thomas Müller
Hi, the basic idea is to have one (or multiple) dedicated machines, which sole responsibility is to monitor source code repositories and in case of change perform build actions, run unit tests, prepare installer packages, generate nice reports and many more. What is the goal of this all: As so

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Evert Pot
On Jul 19, 2012, at 10:19 PM, Evert Pot wrote: >> >> Now look at the method I describe above using tokens (not RFC6578). >> So, instead of using checksums we use server generated tokens. Now >> there is no checksum overhead. So why is a checksum needed? Is it >> because WebDAV does not have a wa

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Evert Pot
> > Now look at the method I describe above using tokens (not RFC6578). > So, instead of using checksums we use server generated tokens. Now > there is no checksum overhead. So why is a checksum needed? Is it > because WebDAV does not have a way to manage these types of tokens? I think you're not

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Jono
On Thu, Jul 19, 2012 at 7:50 AM, Brad McEvoy wrote: > I think the suggestion was to use timestamps locally just to determine > whether a local change has occured, and not the order of changes relative to > the server, which would be cool. Yes. > However, that approach still misses the point of s

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Jono
On Thu, Jul 19, 2012 at 7:49 AM, Evert Pot wrote: > On Jul 19, 2012, at 1:09 PM, Jono wrote: >> In the client and server database we maintain a sync-token for each >> file. The token can just be a random generated value that will be >> regenerated on the server every time the file is in a new sta

Re: [Owncloud] Bug in stable4: File size appended to download via GET

2012-07-19 Thread Robin Appelman
On Thursday 19 July 2012 18:02:56 Klaas Freitag wrote: > Hi, > > we have a bug in the stable4 branch that appends to every download of a > file the size of the actual download in bytes. That changes the original > file. > > You can reproduce it by downloading a file from your ownCloud: > curl -u

[Owncloud] Bug in stable4: File size appended to download via GET

2012-07-19 Thread Klaas Freitag
Hi, we have a bug in the stable4 branch that appends to every download of a file the size of the actual download in bytes. That changes the original file. You can reproduce it by downloading a file from your ownCloud: curl -u user:pwd http://localhost/oc/files/webdav.php/testdir/test.txt Who

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Thomas Müller
Am Donnerstag, dem 19.07.2012 um 11:49 schrieb Klaas Freitag: > On 19.07.2012 11:20, Thomas Müller wrote: > Hi, > > > > > with pleasure and honor I'd like to officially announce that we have a > > continuous integration server for ownCloud now: > > > > http://ci.tmit.eu > Thanks Thomas for bringi

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Thomas Müller
Am Donnerstag, dem 19.07.2012 um 16:51 schrieb Victor Dubiniuk: > Hi Tom, > > with pleasure and honor I'd like to officially announce that we have a > > continuous integration server for ownCloud now: > > http://ci.tmit.eu > > That's really great! If I wasn't about to leave for vacations I would

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Victor Dubiniuk
Hi Tom, with pleasure and honor I'd like to officially announce that we have a > continuous integration server for ownCloud now: > http://ci.tmit.eu That's really great! If I wasn't about to leave for vacations I would help on this. - jslint doesn't like our code ;-/ - is it us or jslint. I'

[Owncloud] Feature Request - IMAP Auth

2012-07-19 Thread Simon Brereton
Hi I know there's an add-on available, but a) until now I couldn't get it to install and b) I think this is a basic enough feature that version 5 should be supporting it, but would it be possible to set an IMAP server as the authentication backend as a feature please? I'm prevented from doing a s

Re: [Owncloud] excessive php session files created in temp

2012-07-19 Thread Bart Visscher
On Wed, Jul 18, 2012 at 09:25:28AM -0400, B Walker wrote: > On Wed, 18 Jul 2012 15:08:00 +0200 Bart Visscher wrote: > > On Tue, Jul 17, 2012 at 08:22:58AM -0400, B Walker wrote: > > > If I access /files/webdav.php (via https://) I end up with several > > > new php session files in my server temp d

[Owncloud] Sharing of pictures / galleries

2012-07-19 Thread Sam Tuke
Is it possible to share a picture gallery in OC4? Sharing a folder via private link isn't the same thing. Four users in the forums are asking about this, and I'm also curious as a friend of mine has the same issue. Forum thread link: http://forum.owncloud.org/viewtopic.php?f=3&t=3082 Forum th

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Brad McEvoy
I think the suggestion was to use timestamps locally just to determine whether a local change has occured, and not the order of changes relative to the server, which would be cool. However, that approach still misses the point of state token based sync. The idea is to maintain a tree of direct

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Evert Pot
On Jul 19, 2012, at 1:09 PM, Jono wrote: > I have to be honest, I dont understand either of these cases. > > 1. "mass overwriting"? Are you referring to modifying many timestamps? What happens if I move a local directory to a new location? What if some application on a users' system touches fil

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Klaas Freitag
On 19.07.2012 13:09, Jono wrote: Hi, I know we are steering away from using timestamps over the network, but is it ok to use it locally? I can see problems with this when the user decides to change their system clock, but maybe that is a different issue. As long as both sides or repositories ar

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Jono
I have to be honest, I dont understand either of these cases. 1. "mass overwriting"? Are you referring to modifying many timestamps? 2. Directory structures do not have non sequential branches like git repos. Maybe you are referring to something else? If this is a 'solved problem', can you direct

[Owncloud] SabreDAV property namespaces (clark notation)

2012-07-19 Thread Bjoern Schiessle
Hi, I discovered a problem with the property handling on our SabreDAV server. We are looking for the property "lastmodified" in connector/sabre/node.php (line 154) but what we get is "{}lastmodified". After digging into SabreDAV I found out that the curly bracket are used for the namespace (3rdpa

Re: [Owncloud] Android app and email addresses

2012-07-19 Thread Arthur Schiwon
On 07/19/2012 11:25 AM, Bartek Przybylski wrote: honestly i would prefer to see this bug here https://github.com/bartoszprzybylski/owncloud-android Why would we want to have separate bug trackers? Esp. confusing for users, isn't it? 2012/7/19 Arthur Schiwon : There is also a bug report on

Re: [Owncloud] Android app and email addresses

2012-07-19 Thread Holger Angenent
Ok, I created an issue. Cheers, Holger Am 19.07.2012 11:25, schrieb Bartek Przybylski: > honestly i would prefer to see this bug here > https://github.com/bartoszprzybylski/owncloud-android > > 2012/7/19 Arthur Schiwon : >> There is also a bug report on this: >> http://bugs.owncloud.org/thebugge

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Klaas Freitag
On 19.07.2012 11:20, Thomas Müller wrote: Hi, with pleasure and honor I'd like to officially announce that we have a continuous integration server for ownCloud now: http://ci.tmit.eu Thanks Thomas for bringing up and actually doing it. Great! I assume you already know how ci works - if not

Re: [Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Deepak Mittal
I would like to know more about CI. I went through wikipedia page but it doesn't explain much working. On Thu, Jul 19, 2012 at 2:50 PM, Thomas Müller wrote: > Dear ownCloud developers, > > with pleasure and honor I'd like to officially announce that we have a > continuous integration server for o

Re: [Owncloud] Android app and email addresses

2012-07-19 Thread Bartek Przybylski
honestly i would prefer to see this bug here https://github.com/bartoszprzybylski/owncloud-android 2012/7/19 Arthur Schiwon : > There is also a bug report on this: > http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-941 > > Cheers > Arthur > > > On 07/19/2012 10:39 AM, Steffen Lindner wrote:

Re: [Owncloud] Android app and email addresses

2012-07-19 Thread Arthur Schiwon
There is also a bug report on this: http://bugs.owncloud.org/thebuggenie/owncloud/issues/oc-941 Cheers Arthur On 07/19/2012 10:39 AM, Steffen Lindner wrote: Hi, same here. Greets Steffen Am 19.07.2012 10:08, schrieb Holger Angenent: Hi, did anybody of you try to use an email address (or a

[Owncloud] Continuous Integration Server for ownCloud projects

2012-07-19 Thread Thomas Müller
Dear ownCloud developers, with pleasure and honor I'd like to officially announce that we have a continuous integration server for ownCloud now: http://ci.tmit.eu I assume you already know how ci works - if not speak up, I'll happily describe it in a second email. Let me quickly describe which

Re: [Owncloud] Android app and email addresses

2012-07-19 Thread Steffen Lindner
Hi, same here. Greets Steffen Am 19.07.2012 10:08, schrieb Holger Angenent: Hi, did anybody of you try to use an email address (or any username containing @) as a username in ownCloud and connect with the android app to this account? In my case, no files are shown and uploading files is no

Re: [Owncloud] Syncing and Time Synchronization

2012-07-19 Thread Klaas Freitag
On 18.07.2012 20:21, Jono wrote: Hi Guys, Also naive question, since I am new to this... shouldnt this be solved at the csync level instead of in the owncloud client? All what was discussed in this thread will happen in csync of course, consider me a csync dev ;-) First I started with a csync

[Owncloud] Android app and email addresses

2012-07-19 Thread Holger Angenent
Hi, did anybody of you try to use an email address (or any username containing @) as a username in ownCloud and connect with the android app to this account? In my case, no files are shown and uploading files is not possible. With other accounts, it works correctly. Can anybody confirm this? For