Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix deleting of external shares | Robin Appelman | 2014-06-14 | 1 | -0/+1 |
| | |||||
* | Properly set read permissions for webdav storages | Robin Appelman | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | generate better storage ids | Robin Appelman | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | Use the movable mount system for external shares | Robin Appelman | 2014-06-14 | 3 | -39/+66 |
| | |||||
* | Fix check for shared files inside shares | Robin Appelman | 2014-06-14 | 2 | -4/+5 |
| | |||||
* | Fix checking for external share in encryption | Robin Appelman | 2014-06-14 | 1 | -1/+4 |
| | |||||
* | if file doesn't exist, check parent folder | Bjoern Schiessle | 2014-06-14 | 2 | -0/+6 |
| | |||||
* | Fix prompting for password | Robin Appelman | 2014-06-14 | 3 | -16/+18 |
| | |||||
* | Save mountpoints relative to the user | Robin Appelman | 2014-06-14 | 1 | -6/+15 |
| | |||||
* | Generate a unique name | Robin Appelman | 2014-06-14 | 1 | -0/+2 |
| | |||||
* | Update for changes in master | Robin Appelman | 2014-06-14 | 1 | -1/+0 |
| | |||||
* | exclude mounted server-to-server shares from encryption | Bjoern Schiessle | 2014-06-14 | 1 | -4/+28 |
| | |||||
* | make sure to enable incognito mode when mounting a public link and update ↵ | Bjoern Schiessle | 2014-06-14 | 2 | -0/+3 |
| | | | | init status of the encryption app | ||||
* | Scan the entire remote share at once by requesting the full file tree from ↵ | Robin Appelman | 2014-06-14 | 4 | -1/+147 |
| | | | | the remote server | ||||
* | Improve detection of whether we're in the files app | Robin Appelman | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | Dont return false for internalPath | Robin Appelman | 2014-06-14 | 1 | -0/+3 |
| | |||||
* | Fix removing remote shares | Robin Appelman | 2014-06-14 | 1 | -0/+18 |
| | |||||
* | Support path lengths up to 4000 chars | Robin Appelman | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | Fix exposing single files over webdav | Robin Appelman | 2014-06-14 | 2 | -3/+7 |
| | |||||
* | Add interface for adding a public share to a different ownCloud instance | Robin Appelman | 2014-06-14 | 6 | -6/+84 |
| | |||||
* | Add interface for accpeting external shares | Robin Appelman | 2014-06-14 | 5 | -0/+87 |
| | |||||
* | Add coments to database and dont use sql keywords as table names | Robin Appelman | 2014-06-14 | 2 | -5/+14 |
| | |||||
* | add remote/add external shares to manager | Robin Appelman | 2014-06-14 | 1 | -0/+27 |
| | |||||
* | Add server<->server sharing backend | Robin Appelman | 2014-06-14 | 13 | -17/+351 |
| | |||||
* | [tx-robot] updated from transifex | Jenkins for ownCloud | 2014-06-14 | 358 | -5450/+1627 |
| | |||||
* | remove double space | Morris Jobke | 2014-06-14 | 1 | -1/+1 |
| | |||||
* | Merge pull request #8978 from owncloud/movie_preview_improvements | Morris Jobke | 2014-06-14 | 1 | -8/+17 |
|\ | | | | | movie previews: use file directly when it's stored locally and encryption is not enabled | ||||
| * | movie previews: use file directly when it's stored locally and encryption is ↵ | Georg Ehrke | 2014-06-10 | 1 | -8/+17 |
| | | | | | | | | not enabled, fixes #7756 | ||||
* | | Merge pull request #9025 from owncloud/fix-mail-settings | Volkan Gezer | 2014-06-13 | 1 | -2/+2 |
|\ \ | | | | | | | fix mail settings save function - ref #8854 | ||||
| * | | fix mail settings save function - ref #8854 | Morris Jobke | 2014-06-13 | 1 | -2/+2 |
| | | | |||||
* | | | Merge pull request #9018 from owncloud/dbms-socket-support | Frank Karlitschek | 2014-06-13 | 2 | -26/+20 |
|\ \ \ | |/ / |/| | | Refactor OC_DB::connect() to properly support sockets. | ||||
| * | | Don't specify host when using a socket. | Andreas Fischer | 2014-06-12 | 1 | -1/+1 |
| | | | |||||
| * | | Rename variable to indicate that it can be port and socket. | Andreas Fischer | 2014-06-12 | 1 | -4/+4 |
| | | | |||||
| * | | No need to check the port number as this will fail anyway. | Andreas Fischer | 2014-06-12 | 1 | -1/+1 |
| | | | |||||
| * | | Move getValue() to where required. This actually is not required "global data". | Andreas Fischer | 2014-06-12 | 1 | -9/+5 |
| | | | |||||
| * | | Move check for : to where it belongs, getting rid of $socket = false; | Andreas Fischer | 2014-06-12 | 1 | -8/+5 |
| | | | |||||
| * | | Extract common variables of $connectionParams. | Andreas Fischer | 2014-06-12 | 1 | -11/+8 |
| | | | |||||
| * | | Inline $port expression, getting rid of $port variable. | Andreas Fischer | 2014-06-12 | 1 | -2/+1 |
| | | | |||||
| * | | Fixes based on suggestions | josh4trunks | 2014-06-11 | 1 | -11/+7 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I use the term socket for any extension, either unix socket, or internet socket (port). I check if the socket is all digits * only integers 0 and larger would pass this test. I then check if the string is less than or equal to the maximum port number. By using "if($socket)" I make sure socket isn't false, empty, or the string '0'. I don't believe I need to initialize $port because $port will always be set if $socket is true. Please show me if I am wrong here. Thanks | ||||
| * | | Update notes on dbhost | josh4trunks | 2014-06-05 | 1 | -1/+1 |
| | | | |||||
| * | | Fix variable not always being defined. | josh4trunks | 2014-06-04 | 1 | -0/+2 |
| | | | |||||
| * | | Work with MySQL Sockets | josh4trunks | 2014-06-04 | 1 | -1/+8 |
| | | | | | | | | | | | | | | | | | | | | | This passes anything that is not a valid port (0<int<65535) as a unix socket. I tested this with unix sockets; this needs to be tested with a non-standard mysql port as well but I don't foresee any issues. To use a unix socket, even one different than PHP's mysql.default_socket.. * Database Host = localhost:/path/to/socket | ||||
* | | | Merge pull request #9010 from owncloud/fix_8941_admin_settings_message | Morris Jobke | 2014-06-13 | 10 | -457/+0 |
|\ \ \ | | | | | | | | | move mail template settings to templateeditor repo | ||||
| * | | | move mail template editor from core to standalone templateeditor repo | Jörn Friedrich Dreyer | 2014-06-13 | 10 | -457/+0 |
| | | | | |||||
| * | | | access admin settings result message correctly | Jörn Friedrich Dreyer | 2014-06-13 | 1 | -1/+1 |
|/ / / | |||||
* | | | Merge pull request #8714 from owncloud/minor-fixes | Morris Jobke | 2014-06-13 | 2 | -4/+4 |
|\ \ \ | | | | | | | | | fix some minor issues | ||||
| * | | | fix some minor issues | Volkan Gezer | 2014-06-13 | 2 | -4/+4 |
| | | | | |||||
* | | | | [tx-robot] updated from transifex | Jenkins for ownCloud | 2014-06-13 | 42 | -186/+263 |
| | | | | |||||
* | | | | Merge pull request #9017 from owncloud/maxheartbeatinterval | Morris Jobke | 2014-06-13 | 2 | -1/+28 |
|\ \ \ \ | |/ / / |/| | | | Added max heartbeat interval to prevent integer overflow | ||||
| * | | | Added unit tests for heartbeat interval min/max values | Vincent Petry | 2014-06-12 | 1 | -1/+23 |
| | | | |