]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
9 years agoshareType and permissions are integers
Bjoern Schiessle [Wed, 7 Jan 2015 15:34:51 +0000 (16:34 +0100)]
shareType and permissions are integers

9 years agodon't delete share table entries for the unique name if re-share permission was removed
Bjoern Schiessle [Tue, 23 Dec 2014 16:10:05 +0000 (17:10 +0100)]
don't delete share table entries for the unique name if re-share permission was removed

9 years agoMerge pull request #12830 from owncloud/intelligent-container
Thomas Müller [Tue, 23 Dec 2014 14:36:55 +0000 (15:36 +0100)]
Merge pull request #12830 from owncloud/intelligent-container

Intelligent container

9 years agoMerge pull request #13008 from owncloud/db-connection-test-cleanup
Morris Jobke [Tue, 23 Dec 2014 12:55:51 +0000 (13:55 +0100)]
Merge pull request #13008 from owncloud/db-connection-test-cleanup

Clean up test table in Connection Test to prevent unnecessary failures.

9 years agoMerge pull request #10292 from owncloud/external-share-delete
Morris Jobke [Tue, 23 Dec 2014 10:21:06 +0000 (11:21 +0100)]
Merge pull request #10292 from owncloud/external-share-delete

Fix trashbin when deleting a file over an external share

9 years agoIntelligent container
Bernhard Posselt [Sat, 13 Dec 2014 18:28:20 +0000 (19:28 +0100)]
Intelligent container

* resolves dependencies by type hint or variable name
* simpler route.php
* implementation of https://github.com/owncloud/core/issues/12829

Generates and injects parameters automatically. You can now build full classes like

    $c->query('MyClassName')

without having to register it as a service. The resolved object's instance will be saved by using registerService. If a constructor parameter is not type hinted, the parameter name will be taken.

Therefore the following two implementations are identical:

    class Class1 { function __construct(MyClassName $class)
    class Class1 { function __construct($MyClassName)

This makes it possible to also inject primitive values such as strings, arrays etc.

In addition if the query could not be resolved, a `QueryException` is now thrown

Routes can now be returned as an array from `routes.php` and an `appinfo/application.php` is optional

Old commit messages:

make it possible to return the routes instead of having to intialize the application
try to get the controller by convention
add first implementation of automatic resolve
add another test just to be sure
store the resolved object
more tests
add phpdoc to public app.php method
use the same variable for the public app.php method
deprecate old methods and add services for public interfaces
deprecated getServer method
disallow private api injection for apps other than core or settings (settings should be an app goddamnit :D)
register userid because its such an often used variable
fix indention and leading slash
use test namespace
add deprecation reasons, remove private api usage checks and remove deprecation from getServer()
add additional public interfaces
add public interface for rootfolder
fix syntax error
remove deprecation from methods where no alternative is there yet
remove deprecated from method which has no alternative
add timezone public service for #12881
add another deprecation hint
move deprecation into separate branch
remove dead comment
first try to get the namespace from the info.xml, if it does not exist, just uppercase the first letter
also trim the namespace name
add an interface for timefactory
move timefactory to public and add icontrollermethodreflector
keep core interface
fix copyright date in headers

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Tue, 23 Dec 2014 06:55:23 +0000 (01:55 -0500)]
[tx-robot] updated from transifex

9 years agoClean up test table in Connection Test to prevent unnecessary failures.
Andreas Fischer [Tue, 23 Dec 2014 00:01:58 +0000 (01:01 +0100)]
Clean up test table in Connection Test to prevent unnecessary failures.

9 years agoMerge pull request #12997 from owncloud/sharing_activities
Björn Schießle [Mon, 22 Dec 2014 22:31:07 +0000 (23:31 +0100)]
Merge pull request #12997 from owncloud/sharing_activities

add activity if public shared file/folder was downloaded

9 years agoMerge pull request #13003 from owncloud/remove-skip-to-content
Morris Jobke [Mon, 22 Dec 2014 18:37:52 +0000 (19:37 +0100)]
Merge pull request #13003 from owncloud/remove-skip-to-content

remove skip to content for now, see #12999

9 years agoMake sure the path passed to the activity manager is normalized
Robin Appelman [Mon, 22 Dec 2014 14:04:59 +0000 (15:04 +0100)]
Make sure the path passed to the activity manager is normalized

9 years agoadd activity if public shared file/folder was downloaded
Bjoern Schiessle [Mon, 22 Dec 2014 11:35:50 +0000 (12:35 +0100)]
add activity if public shared file/folder was downloaded

9 years agoremove skip to content for now, see #12999
Jan-Christoph Borchardt [Mon, 22 Dec 2014 15:02:45 +0000 (16:02 +0100)]
remove skip to content for now, see #12999

9 years agoMerge pull request #12860 from owncloud/remove-apparently-unused-file
Thomas Müller [Mon, 22 Dec 2014 13:47:14 +0000 (14:47 +0100)]
Merge pull request #12860 from owncloud/remove-apparently-unused-file

Remove unused file

9 years agoMerge pull request #11810 from owncloud/hhvm-autotest
Thomas Müller [Mon, 22 Dec 2014 13:12:03 +0000 (14:12 +0100)]
Merge pull request #11810 from owncloud/hhvm-autotest

Adding autotest-hhvm.sh [WIP]

9 years agoMerge pull request #12969 from owncloud/clarify-docs
Morris Jobke [Mon, 22 Dec 2014 09:01:39 +0000 (10:01 +0100)]
Merge pull request #12969 from owncloud/clarify-docs

Clarify return values

9 years agoMerge pull request #12961 from owncloud/try_to_cache_keys
Morris Jobke [Mon, 22 Dec 2014 08:50:29 +0000 (09:50 +0100)]
Merge pull request #12961 from owncloud/try_to_cache_keys

cache keys to read them only once from the hard disc

9 years agoMerge pull request #12983 from owncloud/root-iface
Morris Jobke [Mon, 22 Dec 2014 08:05:23 +0000 (09:05 +0100)]
Merge pull request #12983 from owncloud/root-iface

Add an interface for the root folder so apps have an interface to deal with storage

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Mon, 22 Dec 2014 06:54:49 +0000 (01:54 -0500)]
[tx-robot] updated from transifex

9 years agoadd an interface for the root folder so apps have an interface to deal with storage
Bernhard Posselt [Sat, 20 Dec 2014 14:59:31 +0000 (15:59 +0100)]
add an interface for the root folder so apps have an interface to deal with storage

fix comments and newline

add newline

9 years agoMerge pull request #12978 from owncloud/fix-support-claim
Thomas Müller [Sun, 21 Dec 2014 19:30:43 +0000 (20:30 +0100)]
Merge pull request #12978 from owncloud/fix-support-claim

Change support message to be more explicit about the enterprise edition

9 years agoMerge pull request #12981 from owncloud/MDB2SchemaManager-tearDown-Oracle
Thomas Müller [Sun, 21 Dec 2014 19:29:03 +0000 (20:29 +0100)]
Merge pull request #12981 from owncloud/MDB2SchemaManager-tearDown-Oracle

Properly call parent::tearDown() in MDB2SchemaManager::tearDown().

9 years agoMerge pull request #12982 from owncloud/timefac-iface
Thomas Müller [Sun, 21 Dec 2014 19:27:53 +0000 (20:27 +0100)]
Merge pull request #12982 from owncloud/timefac-iface

Add an interface for the timefactory class

9 years agoMerge pull request #12942 from owncloud/favs-missingsharedsubdirs
Morris Jobke [Sun, 21 Dec 2014 09:38:34 +0000 (10:38 +0100)]
Merge pull request #12942 from owncloud/favs-missingsharedsubdirs

Fix issues with searchByTag in shared storage

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Sun, 21 Dec 2014 06:54:36 +0000 (01:54 -0500)]
[tx-robot] updated from transifex

9 years agoadd an interface for the timefactory class
Bernhard Posselt [Sat, 20 Dec 2014 14:52:25 +0000 (15:52 +0100)]
add an interface for the timefactory class

fix indention

9 years agoProperly call parent::tearDown() in MDB2SchemaManager::tearDown().
Andreas Fischer [Sat, 20 Dec 2014 14:30:02 +0000 (15:30 +0100)]
Properly call parent::tearDown() in MDB2SchemaManager::tearDown().

The early return introduced by 04c982a96e19f2254739c24ee8c6b568edcb4190
prevents parent::tearDown() being called on Oracle.

9 years agoMerge pull request #12974 from owncloud/documents-typeface
Morris Jobke [Sat, 20 Dec 2014 11:00:27 +0000 (12:00 +0100)]
Merge pull request #12974 from owncloud/documents-typeface

change Documents default typeface from serif to sans-serif

9 years agoChange support message to be more explicit about the enterprise edition
Morris Jobke [Fri, 19 Dec 2014 20:05:39 +0000 (21:05 +0100)]
Change support message to be more explicit about the enterprise edition

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Sat, 20 Dec 2014 06:56:24 +0000 (01:56 -0500)]
[tx-robot] updated from transifex

9 years agoMerge pull request #12972 from owncloud/use-https-where-possible
Tom Needham [Fri, 19 Dec 2014 23:34:18 +0000 (23:34 +0000)]
Merge pull request #12972 from owncloud/use-https-where-possible

Link to HTTPS page

9 years agoFix Undefined variable: result at tags.php#231
derkostka [Fri, 19 Dec 2014 11:09:46 +0000 (12:09 +0100)]
Fix Undefined variable: result at tags.php#231

Fix app":"PHP","message":"Undefined variable: result at \/var\/www\/owncloud\/lib\/private\/tags.php#231" by moving the function call into the respective loop

Adjust indentation

Do it right - indentation

sorry, this is my first one

9 years agoMerge pull request #12749 from owncloud/server2server-sharing-ng
Björn Schießle [Fri, 19 Dec 2014 18:04:44 +0000 (19:04 +0100)]
Merge pull request #12749 from owncloud/server2server-sharing-ng

server to server sharing next generation

9 years agoMerge pull request #12101 from owncloud/ldap_split_mapping
blizzz [Fri, 19 Dec 2014 17:52:30 +0000 (18:52 +0100)]
Merge pull request #12101 from owncloud/ldap_split_mapping

Ldap split mapping from Access superclass

9 years agoSplit mapping from Access and Helper classes into it's own. Fully test them, too.
Arthur Schiwon [Wed, 5 Nov 2014 12:05:07 +0000 (13:05 +0100)]
Split mapping from Access and Helper classes into it's own. Fully test them, too.

remove unused methods

split mapping methods off from Access class

fix DB query handling

move 'clear mapping' methods from static helper to new mapping class

add tests

test directly with DB

finishing tests and fix return value from setDNbyUUID

add corresponding class for groups and make abstract test class neutral. helper tests is now obsolete as the tested functions were moved to the new mapper class.

add missing info to PHPDoc

add unmap method

fix namespaces

fix test inheritance

PHPDoc and a small code restructure for scrutinizer, no effective changes

PostgreSQL does not accept LIMIT in DELETE queries

phpdoc fixes, no code changes

9 years agochange Documents default typeface from serif to sans-serif
Jan-Christoph Borchardt [Fri, 19 Dec 2014 17:16:46 +0000 (18:16 +0100)]
change Documents default typeface from serif to sans-serif

9 years agocache keys to read them only once from the hard disc
Bjoern Schiessle [Fri, 19 Dec 2014 10:32:02 +0000 (11:32 +0100)]
cache keys to read them only once from the hard disc

9 years agoLink to HTTPS page
Lukas Reschke [Fri, 19 Dec 2014 14:53:56 +0000 (15:53 +0100)]
Link to HTTPS page

Those domains are now accessible via HTTPS

9 years agoNext step in server-to-server sharing next generation, see #12285
Bjoern Schiessle [Thu, 4 Dec 2014 18:51:04 +0000 (19:51 +0100)]
Next step in server-to-server sharing next generation, see #12285

Beside some small improvements and bug fixes this will probably the final state for OC8.

To test this you need to set up two ownCloud instances. Let's say:

URL: myPC/firstOwnCloud user: user1
URL: myPC/secondOwnCloud user: user2
Now user1 can share a file with user2 by entering the username and the URL to the second ownCloud to the share-drop-down, in this case "user2@myPC/secondOwnCloud".

The next time user2 login he will get a notification that he received a server-to-server share with the option to accept/decline it. If he accept it the share will be mounted. In both cases a event will be send back to user1 and add a notification to the activity stream that the share was accepted/declined.

If user1 decides to unshare the file again from user2 the share will automatically be removed from the second ownCloud server and user2 will see a notification in his activity stream that user1@myPC/firstOwnCloud has unshared the file/folder from him.

9 years agoMerge pull request #12923 from owncloud/ultra-slim-version-of-incognito-mode
Lukas Reschke [Fri, 19 Dec 2014 13:54:11 +0000 (14:54 +0100)]
Merge pull request #12923 from owncloud/ultra-slim-version-of-incognito-mode

Add ultra-slim hack for incognito mode

9 years agoFix typo
Lukas Reschke [Fri, 19 Dec 2014 13:36:00 +0000 (14:36 +0100)]
Fix typo

9 years agoClarify return values
Lukas Reschke [Fri, 19 Dec 2014 13:14:38 +0000 (14:14 +0100)]
Clarify return values

This function returns `null` when no user is logged-in.

9 years agoMerge pull request #12956 from owncloud/jenkins-user-backend-names
Thomas Müller [Fri, 19 Dec 2014 12:15:50 +0000 (13:15 +0100)]
Merge pull request #12956 from owncloud/jenkins-user-backend-names

[jenkins only] introduce names for user backends - IUserBackend

9 years agoMerge pull request #12935 from owncloud/public-tagsmanagerissue
Morris Jobke [Fri, 19 Dec 2014 11:48:20 +0000 (12:48 +0100)]
Merge pull request #12935 from owncloud/public-tagsmanagerissue

Only populate tags in main file list

9 years agoAlso add secret
Lukas Reschke [Fri, 19 Dec 2014 09:57:46 +0000 (10:57 +0100)]
Also add secret

9 years agoMerge pull request #12954 from owncloud/hhvm-apc-clear
Lukas Reschke [Fri, 19 Dec 2014 09:46:20 +0000 (10:46 +0100)]
Merge pull request #12954 from owncloud/hhvm-apc-clear

HHVM: In APC cache clear, only request the cache key in APCIterator.

9 years agoMerge pull request #12918 from owncloud/use-uid-instead-of-login-name
Morris Jobke [Fri, 19 Dec 2014 09:24:52 +0000 (10:24 +0100)]
Merge pull request #12918 from owncloud/use-uid-instead-of-login-name

Return UID instead of login name

9 years agointroduce names for user backends - IUserBackend
Morris Jobke [Fri, 12 Dec 2014 16:25:03 +0000 (17:25 +0100)]
introduce names for user backends - IUserBackend

* LDAP with multiple servers also proved backendName

9 years agoMerge pull request #12926 from owncloud/master-pear5
Thomas Müller [Fri, 19 Dec 2014 08:58:29 +0000 (09:58 +0100)]
Merge pull request #12926 from owncloud/master-pear5

Update 3rdparty submodule to restore PEAR5.php

9 years agoMerge pull request #12906 from owncloud/keyboardnav-feedback
Thomas Müller [Fri, 19 Dec 2014 08:54:28 +0000 (09:54 +0100)]
Merge pull request #12906 from owncloud/keyboardnav-feedback

Accessibility: Keyboard navigation feedback

9 years agoMerge pull request #12921 from owncloud/user-mail-user-management
Thomas Müller [Fri, 19 Dec 2014 08:51:18 +0000 (09:51 +0100)]
Merge pull request #12921 from owncloud/user-mail-user-management

Mail address of users is now changable in the user management

9 years agoMerge pull request #12948 from owncloud/wording
Jörn Friedrich Dreyer [Fri, 19 Dec 2014 08:48:19 +0000 (09:48 +0100)]
Merge pull request #12948 from owncloud/wording

Wording fixes for sharing dialog

9 years agoMerge pull request #12865 from owncloud/files-tags-webdav
Morris Jobke [Fri, 19 Dec 2014 08:33:28 +0000 (09:33 +0100)]
Merge pull request #12865 from owncloud/files-tags-webdav

Returns tags through WebDAV

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Fri, 19 Dec 2014 06:56:51 +0000 (01:56 -0500)]
[tx-robot] updated from transifex

9 years agoHHVM: In APC cache clear, only request the cache key in APCIterator.
Andreas Fischer [Fri, 19 Dec 2014 02:24:00 +0000 (03:24 +0100)]
HHVM: In APC cache clear, only request the cache key in APCIterator.

The default value of the $format parameter of the APCIterator constructur is
APC_ITER_ALL which instructs the iterator to provide all available information
on cache values being iterated over. Only the key value is necessary for
matching and deletion via apc_delete(), though.

This prevents a "Format values FILENAME, DEVICE, INODE, MD5, NUM_HITS, MTIME,
CTIME, DTIME, ATIME, REFCOUNT not supported yet." notice on HHVM.

9 years agoHHVM sets stream meta datum wrapper_type to 'File' instead of 'user-space'.
Andreas Fischer [Thu, 18 Dec 2014 23:54:33 +0000 (00:54 +0100)]
HHVM sets stream meta datum wrapper_type to 'File' instead of 'user-space'.

9 years agoproper feedback for breadcrumbs when tabbing with keyboard
Jan-Christoph Borchardt [Wed, 17 Dec 2014 15:07:44 +0000 (16:07 +0100)]
proper feedback for breadcrumbs when tabbing with keyboard

9 years agoimprove keyboard navigation feedback for certain buttons
Jan-Christoph Borchardt [Wed, 17 Dec 2014 15:06:41 +0000 (16:06 +0100)]
improve keyboard navigation feedback for certain buttons

9 years agointroduce first 'Skip to content' button
Jan-Christoph Borchardt [Wed, 17 Dec 2014 15:05:01 +0000 (16:05 +0100)]
introduce first 'Skip to content' button

9 years agofirst part of fixing feedback for file list when using keyboard
Jan-Christoph Borchardt [Wed, 17 Dec 2014 14:43:29 +0000 (15:43 +0100)]
first part of fixing feedback for file list when using keyboard

9 years agofix feedback for apps menu when using keyboard
Jan-Christoph Borchardt [Wed, 17 Dec 2014 14:01:15 +0000 (15:01 +0100)]
fix feedback for apps menu when using keyboard

9 years agofix feedback for app navigation when using keyboard
Jan-Christoph Borchardt [Wed, 17 Dec 2014 14:00:57 +0000 (15:00 +0100)]
fix feedback for app navigation when using keyboard

9 years agoMerge pull request #12941 from owncloud/wave-accessibility-compliance
Morris Jobke [Thu, 18 Dec 2014 23:30:56 +0000 (00:30 +0100)]
Merge pull request #12941 from owncloud/wave-accessibility-compliance

Wave accessibility compliance

9 years agoMerge pull request #12748 from owncloud/redis_cache
Morris Jobke [Thu, 18 Dec 2014 23:26:25 +0000 (00:26 +0100)]
Merge pull request #12748 from owncloud/redis_cache

Add Redis cache implementation, prefer over memcached, tests & config sample doc

9 years agoMerge pull request #12887 from owncloud/logged-in
Thomas Müller [Thu, 18 Dec 2014 23:14:05 +0000 (00:14 +0100)]
Merge pull request #12887 from owncloud/logged-in

Add a isLoggedIn method to the usersession and deprecate the isLoggedIn ...

9 years agoMerge pull request #12879 from owncloud/mountconfig
Morris Jobke [Thu, 18 Dec 2014 22:38:14 +0000 (23:38 +0100)]
Merge pull request #12879 from owncloud/mountconfig

Add mount specific options

9 years agoMerge pull request #12759 from owncloud/core-reduce-js-and-css
Jörn Friedrich Dreyer [Thu, 18 Dec 2014 22:18:37 +0000 (23:18 +0100)]
Merge pull request #12759 from owncloud/core-reduce-js-and-css

make sure styles and scripts are only loaded once

9 years agoMerge pull request #12896 from owncloud/drop-deprecated
Jörn Friedrich Dreyer [Thu, 18 Dec 2014 22:01:49 +0000 (23:01 +0100)]
Merge pull request #12896 from owncloud/drop-deprecated

first step to drop \OCP\Config:: in favour of IConfig

9 years agoMail address of users is now changable in the user management
Morris Jobke [Mon, 15 Dec 2014 11:43:42 +0000 (12:43 +0100)]
Mail address of users is now changable in the user management

* introduced new route settings/users/{id}/mailAddress
* kept old responses
* better error messages
* dropped lostpassword.php from settings/ajax
* cleaned up the UserList.add() and hand in user object instead of
  each attribute as another parameter
* check for change permission of mail address
* proper response messages

9 years agochange 'Allow Public Upload' to more understandable 'Allow editing', fix #10438
Jan-Christoph Borchardt [Thu, 18 Dec 2014 21:39:32 +0000 (22:39 +0100)]
change 'Allow Public Upload' to more understandable 'Allow editing', fix #10438

9 years agochange 'update' to more understandable 'change', fix #10408
Jan-Christoph Borchardt [Thu, 18 Dec 2014 21:35:34 +0000 (22:35 +0100)]
change 'update' to more understandable 'change', fix #10408

9 years agoMerge pull request #12870 from owncloud/send-mail-new-user
Thomas Müller [Thu, 18 Dec 2014 21:32:37 +0000 (22:32 +0100)]
Merge pull request #12870 from owncloud/send-mail-new-user

Send mail for new users

9 years agoMerge pull request #12947 from owncloud/fix-spinner-file-upload-ie89
Jan-Christoph Borchardt [Thu, 18 Dec 2014 21:27:36 +0000 (22:27 +0100)]
Merge pull request #12947 from owncloud/fix-spinner-file-upload-ie89

show spinner on file upload in IE8, 9

9 years agoshow spinner on file upload in IE8, 9
Morris Jobke [Thu, 18 Dec 2014 20:33:08 +0000 (21:33 +0100)]
show spinner on file upload in IE8, 9

9 years agoMerge pull request #12945 from owncloud/hhvm-image
Morris Jobke [Thu, 18 Dec 2014 21:20:56 +0000 (22:20 +0100)]
Merge pull request #12945 from owncloud/hhvm-image

HHVM: Do not call filesize(null), this function expects a string.

9 years agoDo not call filesize(null), this function expects a string.
Andreas Fischer [Thu, 18 Dec 2014 19:42:35 +0000 (20:42 +0100)]
Do not call filesize(null), this function expects a string.

filesize(null) yields an int on HHVM and thus exif_imagetype(null) is called.

9 years agoMerge pull request #12940 from drarko/master
Morris Jobke [Thu, 18 Dec 2014 17:44:44 +0000 (18:44 +0100)]
Merge pull request #12940 from drarko/master

Fix extra quotes in custom tags in header

9 years agoFix issues with searchByTag in shared storage
Vincent Petry [Thu, 18 Dec 2014 16:27:56 +0000 (17:27 +0100)]
Fix issues with searchByTag in shared storage

9 years agoproperly escape variable
Jan-Christoph Borchardt [Thu, 18 Dec 2014 16:19:23 +0000 (17:19 +0100)]
properly escape variable

9 years agoget rid of unnecessary alt and title attributes
Jan-Christoph Borchardt [Thu, 18 Dec 2014 16:05:27 +0000 (17:05 +0100)]
get rid of unnecessary alt and title attributes

9 years agofix accessibility for deleted files
Jan-Christoph Borchardt [Thu, 18 Dec 2014 15:54:39 +0000 (16:54 +0100)]
fix accessibility for deleted files

9 years agoFix code style issues for tags plugin
Vincent Petry [Thu, 18 Dec 2014 15:43:00 +0000 (16:43 +0100)]
Fix code style issues for tags plugin

9 years agoFix extra quotes in custom tags in header
drarko [Thu, 18 Dec 2014 15:40:08 +0000 (12:40 -0300)]
Fix extra quotes in custom tags in header

Fix #12939

9 years agoMerge pull request #12907 from owncloud/delete-invalid-external-share
Robin Appelman [Thu, 18 Dec 2014 15:38:13 +0000 (16:38 +0100)]
Merge pull request #12907 from owncloud/delete-invalid-external-share

Fix deleting invalid s2s shares

9 years agomore alt text and label fixes in Personal settings
Jan-Christoph Borchardt [Thu, 18 Dec 2014 15:11:25 +0000 (16:11 +0100)]
more alt text and label fixes in Personal settings

9 years agoRemove obsolete method
Vincent Petry [Thu, 18 Dec 2014 15:04:36 +0000 (16:04 +0100)]
Remove obsolete method

9 years agoadd empty alt text to decorative preview of public share image
Jan-Christoph Borchardt [Thu, 18 Dec 2014 15:00:55 +0000 (16:00 +0100)]
add empty alt text to decorative preview of public share image

9 years agobetter color contrast for focused buttons
Jan-Christoph Borchardt [Thu, 18 Dec 2014 15:00:26 +0000 (16:00 +0100)]
better color contrast for focused buttons

9 years agofix accessibility for 'New' file inputs
Jan-Christoph Borchardt [Thu, 18 Dec 2014 14:52:42 +0000 (15:52 +0100)]
fix accessibility for 'New' file inputs

9 years agoadd missing input labels for Share dialog
Jan-Christoph Borchardt [Thu, 18 Dec 2014 14:37:46 +0000 (15:37 +0100)]
add missing input labels for Share dialog

9 years agoOnly populate tags in main file list
Vincent Petry [Thu, 18 Dec 2014 14:36:18 +0000 (15:36 +0100)]
Only populate tags in main file list

Moved populateTags to be done on the main file list.
This prevents the public file list to go through the same code and cause
an error when there is no user.

9 years agofix accessibility of file upload
Jan-Christoph Borchardt [Thu, 18 Dec 2014 13:09:17 +0000 (14:09 +0100)]
fix accessibility of file upload

9 years agofix searchbox label
Jan-Christoph Borchardt [Thu, 18 Dec 2014 12:34:48 +0000 (13:34 +0100)]
fix searchbox label

9 years agoMerge pull request #12925 from owncloud/fix-js-unit-tests
Vincent Petry [Thu, 18 Dec 2014 11:10:11 +0000 (12:10 +0100)]
Merge pull request #12925 from owncloud/fix-js-unit-tests

be more explicit in JS unit tests - caused by accessibility issues

9 years agofix accessibility of logos
Jan-Christoph Borchardt [Thu, 18 Dec 2014 09:50:05 +0000 (10:50 +0100)]
fix accessibility of logos

9 years agoAdding autotest-hhvm.sh
Thomas Müller [Tue, 28 Oct 2014 13:38:10 +0000 (14:38 +0100)]
Adding autotest-hhvm.sh

9 years ago[tx-robot] updated from transifex
Jenkins for ownCloud [Thu, 18 Dec 2014 06:56:40 +0000 (01:56 -0500)]
[tx-robot] updated from transifex

9 years agoMerge pull request #12820 from owncloud/user-management-on-large-screens
Robin McCorkell [Thu, 18 Dec 2014 00:47:17 +0000 (00:47 +0000)]
Merge pull request #12820 from owncloud/user-management-on-large-screens

fix initial loading limit of user management on large screens

9 years agoUpdate 3rdparty submodule to restore PEAR5.php
Andreas Fischer [Thu, 18 Dec 2014 00:30:01 +0000 (01:30 +0100)]
Update 3rdparty submodule to restore PEAR5.php

9 years agoMerge pull request #12901 from owncloud/move-ldap-check-to-manager
Robin McCorkell [Thu, 18 Dec 2014 00:28:00 +0000 (00:28 +0000)]
Merge pull request #12901 from owncloud/move-ldap-check-to-manager

Move the Null-Byte LDAP check to the user manager