Fri Feb 17 16:40:23 2012 UTC ()
Update to 3.0.0

* Fix MESSAGE.
* Sort DEPENDS.

Changelog:
* Add some features (online text editing, PDF viewer, and Photo Gallery etc.).
* Some improvements.

See http://owncloud.org/owncloud-3-release/


(ryoon)
diff -r1.2 -r1.3 pkgsrc/www/php-owncloud/MESSAGE
diff -r1.3 -r1.4 pkgsrc/www/php-owncloud/Makefile
diff -r1.1.1.1 -r1.2 pkgsrc/www/php-owncloud/PLIST
diff -r1.1.1.1 -r1.2 pkgsrc/www/php-owncloud/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/www/php-owncloud/MESSAGE (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/MESSAGE 2011/12/18 08:38:14 1.2
+++ pkgsrc/www/php-owncloud/MESSAGE 2012/02/17 16:40:23 1.3
@@ -1,32 +1,34 @@ @@ -1,32 +1,34 @@
1=========================================================================== 1===========================================================================
2$NetBSD: MESSAGE,v 1.2 2011/12/18 08:38:14 ryoon Exp $ 2$NetBSD: MESSAGE,v 1.3 2012/02/17 16:40:23 ryoon Exp $
3 3
4To use ownCloud, you will need to perform the following steps. 4To use ownCloud, you will need to perform the following steps.
5 5
61. If you want to use with MySQL server, install databases/mysql51-* 61. If you want to use with MySQL server, install databases/mysql51-*
7 and enable it, then create database. 7 and enable it, then create database.
8 8
92. Install apache httpd server, for example www/apache22 and www/ap-php. 92. Install apache httpd server, for example www/apache22 and www/ap-php.
10 10
113. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf 113. Be sure to have the following lines in ${PREFIX}/etc/httpd/httpd.conf
12 12
13 DocumentRoot "${PREFIX}/share/ownloud" 13 DocumentRoot "${PREFIX}/share/owncloud"
14 LoadModule php5_module lib/httpd/mod_php5.so 14 LoadModule php5_module lib/httpd/mod_php5.so
15 AddType application/x-httpd-php .php 15 AddType application/x-httpd-php .php
16 <Directory ${PREFIX}/share/owncloud> 16 <Directory ${PREFIX}/share/owncloud>
17 Options All 17 Options All
18 Allow from All 18 Allow from All
19 </Directory> 19 </Directory>
20 20
214. Be sure to have the following lines in ${PREFIX}/etc/php.ini. 214. Be sure to have the following lines in ${PREFIX}/etc/php.ini.
22 22
23 extension=zip.so 23 extension=dom.so
24 extension=mbstring.so 24 extension=gd.so
25 extension=json.so 25 extension=json.so
 26 extension=mbstring.so
 27 extension=zip.so
26 extension=sqlite.so ;if you select sqlite backend. 28 extension=sqlite.so ;if you select sqlite backend.
27 extension=mysql.so ;if you select MySQL backend. 29 extension=mysql.so ;if you select MySQL backend.
28 30
295. Start apache httpd. 315. Start apache httpd.
30 32
316. Access http://localhost/index.php and setup. 336. Access http://localhost/index.php and setup.
32=========================================================================== 34===========================================================================

cvs diff -r1.3 -r1.4 pkgsrc/www/php-owncloud/Makefile (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/Makefile 2011/12/20 01:59:44 1.3
+++ pkgsrc/www/php-owncloud/Makefile 2012/02/17 16:40:23 1.4
@@ -1,34 +1,34 @@ @@ -1,34 +1,34 @@
1# $NetBSD: Makefile,v 1.3 2011/12/20 01:59:44 gdt Exp $ 1# $NetBSD: Makefile,v 1.4 2012/02/17 16:40:23 ryoon Exp $
2# 2#
3 3
4DISTNAME= owncloud-2.0.1 4DISTNAME= owncloud-3.0.0
5PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME} 5PKGNAME= ${PHP_PKG_PREFIX}-${DISTNAME}
6PKGREVISION= 2 
7CATEGORIES= www 6CATEGORIES= www
8MASTER_SITES= http://owncloud.org/releases/ 7MASTER_SITES= http://owncloud.org/releases/
9EXTRACT_SUFX= .tar.bz2 8EXTRACT_SUFX= .tar.bz2
10 9
11MAINTAINER= ryoon@NetBSD.org 10MAINTAINER= ryoon@NetBSD.org
12HOMEPAGE= http://owncloud.org/ 11HOMEPAGE= http://owncloud.org/
13COMMENT= Web services under your control 12COMMENT= Web services under your control
14LICENSE= gnu-agpl-v3 13LICENSE= gnu-agpl-v3
15 14
16PKG_DESTDIR_SUPPORT= user-destdir 15PKG_DESTDIR_SUPPORT= user-destdir
17 16
18DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.2.0:../../archivers/php-zip 17DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.2.0:../../textproc/php-dom
 18DEPENDS+= ${PHP_PKG_PREFIX}-gd>=5.2.0:../../graphics/php-gd
19DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.2.0:../../textproc/php-json 19DEPENDS+= ${PHP_PKG_PREFIX}-json>=5.2.0:../../textproc/php-json
20DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring 20DEPENDS+= ${PHP_PKG_PREFIX}-mbstring>=5.2.0:../../converters/php-mbstring
21DEPENDS+= ${PHP_PKG_PREFIX}-dom>=5.2.0:../../textproc/php-dom 21DEPENDS+= ${PHP_PKG_PREFIX}-zip>=5.2.0:../../archivers/php-zip
22.include "options.mk" 22.include "options.mk"
23 23
24WRKSRC= ${WRKDIR}/owncloud 24WRKSRC= ${WRKDIR}/owncloud
25USE_LANGUAGES= # none 25USE_LANGUAGES= # none
26 26
27NO_BUILD= yes 27NO_BUILD= yes
28 28
29USE_TOOLS+= pax 29USE_TOOLS+= pax
30 30
31OC_DIR= share/owncloud 31OC_DIR= share/owncloud
32INSTALLATION_DIRS= ${OC_DIR} 32INSTALLATION_DIRS= ${OC_DIR}
33 33
34BUILD_DEFS+= APACHE_GROUP APACHE_USER 34BUILD_DEFS+= APACHE_GROUP APACHE_USER

cvs diff -r1.1.1.1 -r1.2 pkgsrc/www/php-owncloud/PLIST (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/PLIST 2011/12/11 14:29:21 1.1.1.1
+++ pkgsrc/www/php-owncloud/PLIST 2012/02/17 16:40:23 1.2
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1@comment $NetBSD: PLIST,v 1.1.1.1 2011/12/11 14:29:21 ryoon Exp $ 1@comment $NetBSD: PLIST,v 1.2 2012/02/17 16:40:23 ryoon Exp $
2share/owncloud/3rdparty/Console/Getopt.php 2share/owncloud/3rdparty/Console/Getopt.php
3share/owncloud/3rdparty/Crypt_Blowfish/Blowfish.php 3share/owncloud/3rdparty/Crypt_Blowfish/Blowfish.php
4share/owncloud/3rdparty/Crypt_Blowfish/Blowfish/DefaultKey.php 4share/owncloud/3rdparty/Crypt_Blowfish/Blowfish/DefaultKey.php
5share/owncloud/3rdparty/MDB2.php 5share/owncloud/3rdparty/MDB2.php
6share/owncloud/3rdparty/MDB2/Date.php 6share/owncloud/3rdparty/MDB2/Date.php
7share/owncloud/3rdparty/MDB2/Driver/Datatype/Common.php 7share/owncloud/3rdparty/MDB2/Driver/Datatype/Common.php
8share/owncloud/3rdparty/MDB2/Driver/Datatype/mysql.php 8share/owncloud/3rdparty/MDB2/Driver/Datatype/mysql.php
9share/owncloud/3rdparty/MDB2/Driver/Datatype/pgsql.php 9share/owncloud/3rdparty/MDB2/Driver/Datatype/pgsql.php
10share/owncloud/3rdparty/MDB2/Driver/Datatype/sqlite.php 10share/owncloud/3rdparty/MDB2/Driver/Datatype/sqlite.php
11share/owncloud/3rdparty/MDB2/Driver/Function/Common.php 11share/owncloud/3rdparty/MDB2/Driver/Function/Common.php
12share/owncloud/3rdparty/MDB2/Driver/Function/mysql.php 12share/owncloud/3rdparty/MDB2/Driver/Function/mysql.php
13share/owncloud/3rdparty/MDB2/Driver/Function/pgsql.php 13share/owncloud/3rdparty/MDB2/Driver/Function/pgsql.php
14share/owncloud/3rdparty/MDB2/Driver/Function/sqlite.php 14share/owncloud/3rdparty/MDB2/Driver/Function/sqlite.php
@@ -196,56 +196,115 @@ share/owncloud/3rdparty/Sabre/DAVACL/Pri @@ -196,56 +196,115 @@ share/owncloud/3rdparty/Sabre/DAVACL/Pri
196share/owncloud/3rdparty/Sabre/DAVACL/Property/Acl.php 196share/owncloud/3rdparty/Sabre/DAVACL/Property/Acl.php
197share/owncloud/3rdparty/Sabre/DAVACL/Property/CurrentUserPrivilegeSet.php 197share/owncloud/3rdparty/Sabre/DAVACL/Property/CurrentUserPrivilegeSet.php
198share/owncloud/3rdparty/Sabre/DAVACL/Property/Principal.php 198share/owncloud/3rdparty/Sabre/DAVACL/Property/Principal.php
199share/owncloud/3rdparty/Sabre/DAVACL/Property/SupportedPrivilegeSet.php 199share/owncloud/3rdparty/Sabre/DAVACL/Property/SupportedPrivilegeSet.php
200share/owncloud/3rdparty/Sabre/DAVACL/Version.php 200share/owncloud/3rdparty/Sabre/DAVACL/Version.php
201share/owncloud/3rdparty/Sabre/HTTP/AWSAuth.php 201share/owncloud/3rdparty/Sabre/HTTP/AWSAuth.php
202share/owncloud/3rdparty/Sabre/HTTP/AbstractAuth.php 202share/owncloud/3rdparty/Sabre/HTTP/AbstractAuth.php
203share/owncloud/3rdparty/Sabre/HTTP/BasicAuth.php 203share/owncloud/3rdparty/Sabre/HTTP/BasicAuth.php
204share/owncloud/3rdparty/Sabre/HTTP/DigestAuth.php 204share/owncloud/3rdparty/Sabre/HTTP/DigestAuth.php
205share/owncloud/3rdparty/Sabre/HTTP/Request.php 205share/owncloud/3rdparty/Sabre/HTTP/Request.php
206share/owncloud/3rdparty/Sabre/HTTP/Response.php 206share/owncloud/3rdparty/Sabre/HTTP/Response.php
207share/owncloud/3rdparty/Sabre/HTTP/Util.php 207share/owncloud/3rdparty/Sabre/HTTP/Util.php
208share/owncloud/3rdparty/Sabre/HTTP/Version.php 208share/owncloud/3rdparty/Sabre/HTTP/Version.php
 209share/owncloud/3rdparty/Sabre/LICENCE
209share/owncloud/3rdparty/Sabre/VObject/Component.php 210share/owncloud/3rdparty/Sabre/VObject/Component.php
210share/owncloud/3rdparty/Sabre/VObject/Element.php 211share/owncloud/3rdparty/Sabre/VObject/Element.php
211share/owncloud/3rdparty/Sabre/VObject/Element/DateTime.php 212share/owncloud/3rdparty/Sabre/VObject/Element/DateTime.php
212share/owncloud/3rdparty/Sabre/VObject/Element/MultiDateTime.php 213share/owncloud/3rdparty/Sabre/VObject/Element/MultiDateTime.php
213share/owncloud/3rdparty/Sabre/VObject/ElementList.php 214share/owncloud/3rdparty/Sabre/VObject/ElementList.php
214share/owncloud/3rdparty/Sabre/VObject/Node.php 215share/owncloud/3rdparty/Sabre/VObject/Node.php
215share/owncloud/3rdparty/Sabre/VObject/Parameter.php 216share/owncloud/3rdparty/Sabre/VObject/Parameter.php
216share/owncloud/3rdparty/Sabre/VObject/ParseException.php 217share/owncloud/3rdparty/Sabre/VObject/ParseException.php
217share/owncloud/3rdparty/Sabre/VObject/Property.php 218share/owncloud/3rdparty/Sabre/VObject/Property.php
218share/owncloud/3rdparty/Sabre/VObject/Reader.php 219share/owncloud/3rdparty/Sabre/VObject/Reader.php
219share/owncloud/3rdparty/Sabre/VObject/Version.php 220share/owncloud/3rdparty/Sabre/VObject/Version.php
220share/owncloud/3rdparty/Sabre/VObject/includes.php 221share/owncloud/3rdparty/Sabre/VObject/includes.php
221share/owncloud/3rdparty/Sabre/autoload.php 222share/owncloud/3rdparty/Sabre/autoload.php
222share/owncloud/3rdparty/System.php 223share/owncloud/3rdparty/System.php
223share/owncloud/3rdparty/XML/Parser.php 224share/owncloud/3rdparty/XML/Parser.php
224share/owncloud/3rdparty/XML/RPC.php 225share/owncloud/3rdparty/XML/RPC.php
225share/owncloud/3rdparty/XML/RPC/Server.php 226share/owncloud/3rdparty/XML/RPC/Server.php
226share/owncloud/3rdparty/css/chosen-sprite.png 227share/owncloud/3rdparty/css/chosen-sprite.png
227share/owncloud/3rdparty/css/chosen.css 228share/owncloud/3rdparty/css/chosen.css
228share/owncloud/3rdparty/css/chosen/chosen-sprite.png 229share/owncloud/3rdparty/css/chosen/chosen-sprite.png
229share/owncloud/3rdparty/css/chosen/chosen.css 230share/owncloud/3rdparty/css/chosen/chosen.css
 231share/owncloud/3rdparty/fullcalendar/GPL-LICENSE.txt
 232share/owncloud/3rdparty/fullcalendar/MIT-LICENSE.txt
 233share/owncloud/3rdparty/fullcalendar/changelog.txt
 234share/owncloud/3rdparty/fullcalendar/css/fullcalendar.css
 235share/owncloud/3rdparty/fullcalendar/css/fullcalendar.print.css
 236share/owncloud/3rdparty/fullcalendar/js/fullcalendar.js
 237share/owncloud/3rdparty/fullcalendar/js/fullcalendar.min.js
 238share/owncloud/3rdparty/fullcalendar/js/gcal.js
230share/owncloud/3rdparty/js/chosen/LICENSE.md 239share/owncloud/3rdparty/js/chosen/LICENSE.md
231share/owncloud/3rdparty/js/chosen/README.md 240share/owncloud/3rdparty/js/chosen/README.md
232share/owncloud/3rdparty/js/chosen/VERSION 241share/owncloud/3rdparty/js/chosen/VERSION
233share/owncloud/3rdparty/js/chosen/chosen.jquery.js 242share/owncloud/3rdparty/js/chosen/chosen.jquery.js
234share/owncloud/3rdparty/js/chosen/chosen.jquery.min.js 243share/owncloud/3rdparty/js/chosen/chosen.jquery.min.js
 244share/owncloud/3rdparty/timepicker/GPL-LICENSE.txt
 245share/owncloud/3rdparty/timepicker/MIT-LICENSE.txt
 246share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_diagonals-thick_18_b81900_40x40.png
 247share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_diagonals-thick_20_666666_40x40.png
 248share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_flat_10_000000_40x100.png
 249share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_glass_100_f6f6f6_1x400.png
 250share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_glass_100_fdf5ce_1x400.png
 251share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_glass_65_ffffff_1x400.png
 252share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_gloss-wave_35_f6a828_500x100.png
 253share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
 254share/owncloud/3rdparty/timepicker/css/include/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
 255share/owncloud/3rdparty/timepicker/css/include/images/ui-icons_222222_256x240.png
 256share/owncloud/3rdparty/timepicker/css/include/images/ui-icons_228ef1_256x240.png
 257share/owncloud/3rdparty/timepicker/css/include/images/ui-icons_ef8c08_256x240.png
 258share/owncloud/3rdparty/timepicker/css/include/images/ui-icons_ffd27a_256x240.png
 259share/owncloud/3rdparty/timepicker/css/include/images/ui-icons_ffffff_256x240.png
 260share/owncloud/3rdparty/timepicker/css/include/jquery-1.5.1.min.js
 261share/owncloud/3rdparty/timepicker/css/include/jquery-ui-1.8.14.custom.css
 262share/owncloud/3rdparty/timepicker/css/include/jquery.ui.core.min.js
 263share/owncloud/3rdparty/timepicker/css/include/jquery.ui.position.min.js
 264share/owncloud/3rdparty/timepicker/css/include/jquery.ui.tabs.min.js
 265share/owncloud/3rdparty/timepicker/css/include/jquery.ui.widget.min.js
 266share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png
 267share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png
 268share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_flat_10_000000_40x100.png
 269share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png
 270share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png
 271share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png
 272share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png
 273share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png
 274share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png
 275share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-icons_222222_256x240.png
 276share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-icons_228ef1_256x240.png
 277share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-icons_ef8c08_256x240.png
 278share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-icons_ffd27a_256x240.png
 279share/owncloud/3rdparty/timepicker/css/include/ui-lightness/images/ui-icons_ffffff_256x240.png
 280share/owncloud/3rdparty/timepicker/css/jquery.ui.timepicker.css
 281share/owncloud/3rdparty/timepicker/js/i18n/i18n.html
 282share/owncloud/3rdparty/timepicker/js/i18n/jquery.ui.timepicker-de.js
 283share/owncloud/3rdparty/timepicker/js/i18n/jquery.ui.timepicker-fr.js
 284share/owncloud/3rdparty/timepicker/js/i18n/jquery.ui.timepicker-ja.js
 285share/owncloud/3rdparty/timepicker/js/jquery.ui.timepicker.js
 286share/owncloud/3rdparty/timepicker/releases.txt
 287share/owncloud/3rdparty/when/MIT-LICENSE.txt
 288share/owncloud/3rdparty/when/When.php
235share/owncloud/AUTHORS 289share/owncloud/AUTHORS
236share/owncloud/COPYING-AGPL 290share/owncloud/COPYING-AGPL
237share/owncloud/COPYING-README 291share/owncloud/COPYING-README
238share/owncloud/README 292share/owncloud/README
 293share/owncloud/apps/admin_dependencies_chk/appinfo/app.php
 294share/owncloud/apps/admin_dependencies_chk/appinfo/info.xml
 295share/owncloud/apps/admin_dependencies_chk/css/style.css
 296share/owncloud/apps/admin_dependencies_chk/settings.php
 297share/owncloud/apps/admin_dependencies_chk/templates/settings.php
239share/owncloud/apps/admin_export/appinfo/app.php 298share/owncloud/apps/admin_export/appinfo/app.php
240share/owncloud/apps/admin_export/appinfo/info.xml 299share/owncloud/apps/admin_export/appinfo/info.xml
241share/owncloud/apps/admin_export/settings.php 300share/owncloud/apps/admin_export/settings.php
242share/owncloud/apps/admin_export/templates/settings.php 301share/owncloud/apps/admin_export/templates/settings.php
243share/owncloud/apps/bookmarks/addBm.php 302share/owncloud/apps/bookmarks/addBm.php
244share/owncloud/apps/bookmarks/ajax/addBookmark.php 303share/owncloud/apps/bookmarks/ajax/addBookmark.php
245share/owncloud/apps/bookmarks/ajax/delBookmark.php 304share/owncloud/apps/bookmarks/ajax/delBookmark.php
246share/owncloud/apps/bookmarks/ajax/editBookmark.php 305share/owncloud/apps/bookmarks/ajax/editBookmark.php
247share/owncloud/apps/bookmarks/ajax/getMeta.php 306share/owncloud/apps/bookmarks/ajax/getMeta.php
248share/owncloud/apps/bookmarks/ajax/recordClick.php 307share/owncloud/apps/bookmarks/ajax/recordClick.php
249share/owncloud/apps/bookmarks/ajax/updateList.php 308share/owncloud/apps/bookmarks/ajax/updateList.php
250share/owncloud/apps/bookmarks/appinfo/app.php 309share/owncloud/apps/bookmarks/appinfo/app.php
251share/owncloud/apps/bookmarks/appinfo/database.xml 310share/owncloud/apps/bookmarks/appinfo/database.xml
@@ -254,200 +313,413 @@ share/owncloud/apps/bookmarks/bookmarksH @@ -254,200 +313,413 @@ share/owncloud/apps/bookmarks/bookmarksH
254share/owncloud/apps/bookmarks/css/bookmarks.css 313share/owncloud/apps/bookmarks/css/bookmarks.css
255share/owncloud/apps/bookmarks/img/bookmarks.png 314share/owncloud/apps/bookmarks/img/bookmarks.png
256share/owncloud/apps/bookmarks/index.php 315share/owncloud/apps/bookmarks/index.php
257share/owncloud/apps/bookmarks/js/addBm.js 316share/owncloud/apps/bookmarks/js/addBm.js
258share/owncloud/apps/bookmarks/js/bookmarks.js 317share/owncloud/apps/bookmarks/js/bookmarks.js
259share/owncloud/apps/bookmarks/settings.php 318share/owncloud/apps/bookmarks/settings.php
260share/owncloud/apps/bookmarks/templates/addBm.php 319share/owncloud/apps/bookmarks/templates/addBm.php
261share/owncloud/apps/bookmarks/templates/list.php 320share/owncloud/apps/bookmarks/templates/list.php
262share/owncloud/apps/bookmarks/templates/settings.php 321share/owncloud/apps/bookmarks/templates/settings.php
263share/owncloud/apps/calendar/ajax/activation.php 322share/owncloud/apps/calendar/ajax/activation.php
264share/owncloud/apps/calendar/ajax/changeview.php 323share/owncloud/apps/calendar/ajax/changeview.php
265share/owncloud/apps/calendar/ajax/choosecalendar.php 324share/owncloud/apps/calendar/ajax/choosecalendar.php
266share/owncloud/apps/calendar/ajax/createcalendar.php 325share/owncloud/apps/calendar/ajax/createcalendar.php
267share/owncloud/apps/calendar/ajax/daysofweekend.php 
268share/owncloud/apps/calendar/ajax/deletecalendar.php 326share/owncloud/apps/calendar/ajax/deletecalendar.php
269share/owncloud/apps/calendar/ajax/deleteevent.php 327share/owncloud/apps/calendar/ajax/deleteevent.php
270share/owncloud/apps/calendar/ajax/duration.php 
271share/owncloud/apps/calendar/ajax/editcalendar.php 328share/owncloud/apps/calendar/ajax/editcalendar.php
272share/owncloud/apps/calendar/ajax/editevent.php 329share/owncloud/apps/calendar/ajax/editevent.php
273share/owncloud/apps/calendar/ajax/editeventform.php 330share/owncloud/apps/calendar/ajax/editeventform.php
274share/owncloud/apps/calendar/ajax/firstdayofweek.php 331share/owncloud/apps/calendar/ajax/events.php
275share/owncloud/apps/calendar/ajax/getcal.php 332share/owncloud/apps/calendar/ajax/gettimezonedetection.php
 333share/owncloud/apps/calendar/ajax/guesstimezone.php
276share/owncloud/apps/calendar/ajax/importdialog.php 334share/owncloud/apps/calendar/ajax/importdialog.php
277share/owncloud/apps/calendar/ajax/moveevent.php 335share/owncloud/apps/calendar/ajax/moveevent.php
278share/owncloud/apps/calendar/ajax/newcalendar.php 336share/owncloud/apps/calendar/ajax/newcalendar.php
279share/owncloud/apps/calendar/ajax/newevent.php 337share/owncloud/apps/calendar/ajax/newevent.php
280share/owncloud/apps/calendar/ajax/neweventform.php 338share/owncloud/apps/calendar/ajax/neweventform.php
281share/owncloud/apps/calendar/ajax/setdaysofweekend.php 339share/owncloud/apps/calendar/ajax/resizeevent.php
282share/owncloud/apps/calendar/ajax/setduration.php 
283share/owncloud/apps/calendar/ajax/setfirstdayofweek.php 
284share/owncloud/apps/calendar/ajax/settimeformat.php 340share/owncloud/apps/calendar/ajax/settimeformat.php
285share/owncloud/apps/calendar/ajax/settimezone.php 341share/owncloud/apps/calendar/ajax/settimezone.php
286share/owncloud/apps/calendar/ajax/timeformat.php 342share/owncloud/apps/calendar/ajax/timeformat.php
 343share/owncloud/apps/calendar/ajax/timezonedetection.php
287share/owncloud/apps/calendar/ajax/updatecalendar.php 344share/owncloud/apps/calendar/ajax/updatecalendar.php
288share/owncloud/apps/calendar/appinfo/app.php 345share/owncloud/apps/calendar/appinfo/app.php
289share/owncloud/apps/calendar/appinfo/database.xml 346share/owncloud/apps/calendar/appinfo/database.xml
290share/owncloud/apps/calendar/appinfo/info.xml 347share/owncloud/apps/calendar/appinfo/info.xml
291share/owncloud/apps/calendar/caldav.php 348share/owncloud/apps/calendar/caldav.php
292share/owncloud/apps/calendar/css/style.css 349share/owncloud/apps/calendar/css/style.css
293share/owncloud/apps/calendar/export.php 350share/owncloud/apps/calendar/export.php
 351share/owncloud/apps/calendar/img/Icon License
294share/owncloud/apps/calendar/img/icon.png 352share/owncloud/apps/calendar/img/icon.png
 353share/owncloud/apps/calendar/img/icon.svg
295share/owncloud/apps/calendar/import.php 354share/owncloud/apps/calendar/import.php
 355share/owncloud/apps/calendar/import_tmp/Info
296share/owncloud/apps/calendar/index.php 356share/owncloud/apps/calendar/index.php
297share/owncloud/apps/calendar/js/calendar.js 357share/owncloud/apps/calendar/js/calendar.js
 358share/owncloud/apps/calendar/js/geo.js
298share/owncloud/apps/calendar/js/loader.js 359share/owncloud/apps/calendar/js/loader.js
299share/owncloud/apps/calendar/js/settings.js 360share/owncloud/apps/calendar/js/settings.js
 361share/owncloud/apps/calendar/l10n/ar.php
300share/owncloud/apps/calendar/l10n/bg_BG.php 362share/owncloud/apps/calendar/l10n/bg_BG.php
301share/owncloud/apps/calendar/l10n/ca.php 363share/owncloud/apps/calendar/l10n/ca.php
 364share/owncloud/apps/calendar/l10n/cs_CZ.php
302share/owncloud/apps/calendar/l10n/da.php 365share/owncloud/apps/calendar/l10n/da.php
303share/owncloud/apps/calendar/l10n/de.php 366share/owncloud/apps/calendar/l10n/de.php
304share/owncloud/apps/calendar/l10n/el.php 367share/owncloud/apps/calendar/l10n/el.php
 368share/owncloud/apps/calendar/l10n/eo.php
305share/owncloud/apps/calendar/l10n/es.php 369share/owncloud/apps/calendar/l10n/es.php
306share/owncloud/apps/calendar/l10n/et_EE.php 370share/owncloud/apps/calendar/l10n/et_EE.php
 371share/owncloud/apps/calendar/l10n/eu.php
307share/owncloud/apps/calendar/l10n/fr.php 372share/owncloud/apps/calendar/l10n/fr.php
 373share/owncloud/apps/calendar/l10n/gl.php
 374share/owncloud/apps/calendar/l10n/he.php
 375share/owncloud/apps/calendar/l10n/hr.php
 376share/owncloud/apps/calendar/l10n/hu_HU.php
 377share/owncloud/apps/calendar/l10n/hy.php
 378share/owncloud/apps/calendar/l10n/ia.php
308share/owncloud/apps/calendar/l10n/id.php 379share/owncloud/apps/calendar/l10n/id.php
309share/owncloud/apps/calendar/l10n/it.php 380share/owncloud/apps/calendar/l10n/it.php
 381share/owncloud/apps/calendar/l10n/ja_JP.php
310share/owncloud/apps/calendar/l10n/lb.php 382share/owncloud/apps/calendar/l10n/lb.php
 383share/owncloud/apps/calendar/l10n/lt_LT.php
311share/owncloud/apps/calendar/l10n/ms_MY.php 384share/owncloud/apps/calendar/l10n/ms_MY.php
312share/owncloud/apps/calendar/l10n/nb_NO.php 385share/owncloud/apps/calendar/l10n/nb_NO.php
313share/owncloud/apps/calendar/l10n/nl.php 386share/owncloud/apps/calendar/l10n/nl.php
 387share/owncloud/apps/calendar/l10n/nn_NO.php
314share/owncloud/apps/calendar/l10n/pl.php 388share/owncloud/apps/calendar/l10n/pl.php
315share/owncloud/apps/calendar/l10n/pt_BR.php 389share/owncloud/apps/calendar/l10n/pt_BR.php
 390share/owncloud/apps/calendar/l10n/pt_PT.php
316share/owncloud/apps/calendar/l10n/ro.php 391share/owncloud/apps/calendar/l10n/ro.php
317share/owncloud/apps/calendar/l10n/ru.php 392share/owncloud/apps/calendar/l10n/ru.php
 393share/owncloud/apps/calendar/l10n/sk_SK.php
 394share/owncloud/apps/calendar/l10n/sl.php
318share/owncloud/apps/calendar/l10n/sr.php 395share/owncloud/apps/calendar/l10n/sr.php
319share/owncloud/apps/calendar/l10n/sr@latin.php 396share/owncloud/apps/calendar/l10n/sr@latin.php
 397share/owncloud/apps/calendar/l10n/sv.php
 398share/owncloud/apps/calendar/l10n/th_TH.php
 399share/owncloud/apps/calendar/l10n/tr.php
320share/owncloud/apps/calendar/l10n/xgettextfiles 400share/owncloud/apps/calendar/l10n/xgettextfiles
321share/owncloud/apps/calendar/l10n/zh_CN.php 401share/owncloud/apps/calendar/l10n/zh_CN.php
 402share/owncloud/apps/calendar/lib/app.php
322share/owncloud/apps/calendar/lib/calendar.php 403share/owncloud/apps/calendar/lib/calendar.php
323share/owncloud/apps/calendar/lib/connector_sabre.php 404share/owncloud/apps/calendar/lib/connector_sabre.php
324share/owncloud/apps/calendar/lib/hooks.php 405share/owncloud/apps/calendar/lib/hooks.php
325share/owncloud/apps/calendar/lib/object.php 406share/owncloud/apps/calendar/lib/object.php
 407share/owncloud/apps/calendar/lib/search.php
 408share/owncloud/apps/calendar/resettimezone.php
326share/owncloud/apps/calendar/settings.php 409share/owncloud/apps/calendar/settings.php
327share/owncloud/apps/calendar/templates/calendar.php 410share/owncloud/apps/calendar/templates/calendar.php
 411share/owncloud/apps/calendar/templates/lAfix.php
328share/owncloud/apps/calendar/templates/part.choosecalendar.php 412share/owncloud/apps/calendar/templates/part.choosecalendar.php
329share/owncloud/apps/calendar/templates/part.choosecalendar.rowfields.php 413share/owncloud/apps/calendar/templates/part.choosecalendar.rowfields.php
330share/owncloud/apps/calendar/templates/part.editcalendar.php 414share/owncloud/apps/calendar/templates/part.editcalendar.php
331share/owncloud/apps/calendar/templates/part.editevent.php 415share/owncloud/apps/calendar/templates/part.editevent.php
332share/owncloud/apps/calendar/templates/part.eventform.php 416share/owncloud/apps/calendar/templates/part.eventform.php
333share/owncloud/apps/calendar/templates/part.import.php 417share/owncloud/apps/calendar/templates/part.import.php
334share/owncloud/apps/calendar/templates/part.newevent.php 418share/owncloud/apps/calendar/templates/part.newevent.php
335share/owncloud/apps/calendar/templates/settings.php 419share/owncloud/apps/calendar/templates/settings.php
 420share/owncloud/apps/contacts/ajax/activation.php
 421share/owncloud/apps/contacts/ajax/addbook.php
336share/owncloud/apps/contacts/ajax/addcard.php 422share/owncloud/apps/contacts/ajax/addcard.php
337share/owncloud/apps/contacts/ajax/addproperty.php 423share/owncloud/apps/contacts/ajax/addproperty.php
 424share/owncloud/apps/contacts/ajax/chooseaddressbook.php
 425share/owncloud/apps/contacts/ajax/contacts.php
 426share/owncloud/apps/contacts/ajax/createaddressbook.php
338share/owncloud/apps/contacts/ajax/deletebook.php 427share/owncloud/apps/contacts/ajax/deletebook.php
339share/owncloud/apps/contacts/ajax/deletecard.php 428share/owncloud/apps/contacts/ajax/deletecard.php
340share/owncloud/apps/contacts/ajax/deleteproperty.php 429share/owncloud/apps/contacts/ajax/deleteproperty.php
 430share/owncloud/apps/contacts/ajax/editaddressbook.php
341share/owncloud/apps/contacts/ajax/getdetails.php 431share/owncloud/apps/contacts/ajax/getdetails.php
 432share/owncloud/apps/contacts/ajax/messagebox.php
342share/owncloud/apps/contacts/ajax/setproperty.php 433share/owncloud/apps/contacts/ajax/setproperty.php
343share/owncloud/apps/contacts/ajax/showaddcard.php 434share/owncloud/apps/contacts/ajax/showaddcard.php
344share/owncloud/apps/contacts/ajax/showaddproperty.php 435share/owncloud/apps/contacts/ajax/showaddproperty.php
345share/owncloud/apps/contacts/ajax/showsetproperty.php 436share/owncloud/apps/contacts/ajax/showsetproperty.php
 437share/owncloud/apps/contacts/ajax/updateaddressbook.php
346share/owncloud/apps/contacts/appinfo/app.php 438share/owncloud/apps/contacts/appinfo/app.php
347share/owncloud/apps/contacts/appinfo/database.xml 439share/owncloud/apps/contacts/appinfo/database.xml
348share/owncloud/apps/contacts/appinfo/info.xml 440share/owncloud/apps/contacts/appinfo/info.xml
349share/owncloud/apps/contacts/carddav.php 441share/owncloud/apps/contacts/carddav.php
350share/owncloud/apps/contacts/css/styles.css 442share/owncloud/apps/contacts/css/styles.css
 443share/owncloud/apps/contacts/export.php
 444share/owncloud/apps/contacts/img/person.png
 445share/owncloud/apps/contacts/img/person.svg
351share/owncloud/apps/contacts/index.php 446share/owncloud/apps/contacts/index.php
 447share/owncloud/apps/contacts/js/LICENSE.jquery.inview
352share/owncloud/apps/contacts/js/interface.js 448share/owncloud/apps/contacts/js/interface.js
 449share/owncloud/apps/contacts/js/jquery.inview.js
 450share/owncloud/apps/contacts/js/jquery.inview.txt
 451share/owncloud/apps/contacts/l10n/ar.php
 452share/owncloud/apps/contacts/l10n/ca.php
 453share/owncloud/apps/contacts/l10n/cs_CZ.php
353share/owncloud/apps/contacts/l10n/da.php 454share/owncloud/apps/contacts/l10n/da.php
354share/owncloud/apps/contacts/l10n/de.php 455share/owncloud/apps/contacts/l10n/de.php
 456share/owncloud/apps/contacts/l10n/el.php
 457share/owncloud/apps/contacts/l10n/eo.php
 458share/owncloud/apps/contacts/l10n/es.php
 459share/owncloud/apps/contacts/l10n/et_EE.php
 460share/owncloud/apps/contacts/l10n/eu.php
 461share/owncloud/apps/contacts/l10n/fr.php
 462share/owncloud/apps/contacts/l10n/gl.php
 463share/owncloud/apps/contacts/l10n/he.php
 464share/owncloud/apps/contacts/l10n/hr.php
 465share/owncloud/apps/contacts/l10n/hu_HU.php
 466share/owncloud/apps/contacts/l10n/ia.php
355share/owncloud/apps/contacts/l10n/it.php 467share/owncloud/apps/contacts/l10n/it.php
 468share/owncloud/apps/contacts/l10n/ja_JP.php
 469share/owncloud/apps/contacts/l10n/lb.php
 470share/owncloud/apps/contacts/l10n/lt_LT.php
 471share/owncloud/apps/contacts/l10n/nl.php
 472share/owncloud/apps/contacts/l10n/nn_NO.php
 473share/owncloud/apps/contacts/l10n/pl.php
 474share/owncloud/apps/contacts/l10n/pt_BR.php
 475share/owncloud/apps/contacts/l10n/pt_PT.php
 476share/owncloud/apps/contacts/l10n/ro.php
 477share/owncloud/apps/contacts/l10n/ru.php
 478share/owncloud/apps/contacts/l10n/sk_SK.php
 479share/owncloud/apps/contacts/l10n/sl.php
 480share/owncloud/apps/contacts/l10n/sr.php
 481share/owncloud/apps/contacts/l10n/sr@latin.php
 482share/owncloud/apps/contacts/l10n/sv.php
 483share/owncloud/apps/contacts/l10n/th_TH.php
 484share/owncloud/apps/contacts/l10n/tr.php
 485share/owncloud/apps/contacts/l10n/xgettextfiles
 486share/owncloud/apps/contacts/l10n/zh_CN.php
356share/owncloud/apps/contacts/lib/addressbook.php 487share/owncloud/apps/contacts/lib/addressbook.php
 488share/owncloud/apps/contacts/lib/app.php
357share/owncloud/apps/contacts/lib/connector_sabre.php 489share/owncloud/apps/contacts/lib/connector_sabre.php
358share/owncloud/apps/contacts/lib/hooks.php 490share/owncloud/apps/contacts/lib/hooks.php
 491share/owncloud/apps/contacts/lib/search.php
359share/owncloud/apps/contacts/lib/vcard.php 492share/owncloud/apps/contacts/lib/vcard.php
360share/owncloud/apps/contacts/photo.php 493share/owncloud/apps/contacts/photo.php
361share/owncloud/apps/contacts/settings.php 494share/owncloud/apps/contacts/settings.php
362share/owncloud/apps/contacts/templates/index.php 495share/owncloud/apps/contacts/templates/index.php
363share/owncloud/apps/contacts/templates/part.addcardform.php 496share/owncloud/apps/contacts/templates/part.addcardform.php
364share/owncloud/apps/contacts/templates/part.addpropertyform.php 497share/owncloud/apps/contacts/templates/part.chooseaddressbook.php
 498share/owncloud/apps/contacts/templates/part.chooseaddressbook.rowfields.php
365share/owncloud/apps/contacts/templates/part.contacts.php 499share/owncloud/apps/contacts/templates/part.contacts.php
366share/owncloud/apps/contacts/templates/part.details.php 500share/owncloud/apps/contacts/templates/part.details.php
 501share/owncloud/apps/contacts/templates/part.editaddressbook.php
 502share/owncloud/apps/contacts/templates/part.messagebox.php
 503share/owncloud/apps/contacts/templates/part.property.FN.php
367share/owncloud/apps/contacts/templates/part.property.php 504share/owncloud/apps/contacts/templates/part.property.php
368share/owncloud/apps/contacts/templates/part.setpropertyform.php 505share/owncloud/apps/contacts/templates/part.setpropertyform.php
369share/owncloud/apps/contacts/templates/settings.php 506share/owncloud/apps/contacts/templates/settings.php
 507share/owncloud/apps/contacts/thumbnail.php
 508share/owncloud/apps/external/ajax/seturls.php
 509share/owncloud/apps/external/appinfo/app.php
 510share/owncloud/apps/external/appinfo/info.xml
 511share/owncloud/apps/external/img/external.png
 512share/owncloud/apps/external/img/external.svg
 513share/owncloud/apps/external/index.php
 514share/owncloud/apps/external/js/admin.js
 515share/owncloud/apps/external/settings.php
 516share/owncloud/apps/external/templates/frame.php
 517share/owncloud/apps/external/templates/settings.php
370share/owncloud/apps/files_imageviewer/appinfo/app.php 518share/owncloud/apps/files_imageviewer/appinfo/app.php
371share/owncloud/apps/files_imageviewer/appinfo/info.xml 519share/owncloud/apps/files_imageviewer/appinfo/info.xml
372share/owncloud/apps/files_imageviewer/css/lightbox.css 520share/owncloud/apps/files_imageviewer/css/jquery.fancybox-1.3.4.css
 521share/owncloud/apps/files_imageviewer/img/blank.gif
 522share/owncloud/apps/files_imageviewer/img/fancy_close.png
 523share/owncloud/apps/files_imageviewer/img/fancy_loading.png
 524share/owncloud/apps/files_imageviewer/img/fancy_nav_left.png
 525share/owncloud/apps/files_imageviewer/img/fancy_nav_right.png
 526share/owncloud/apps/files_imageviewer/img/fancy_shadow_e.png
 527share/owncloud/apps/files_imageviewer/img/fancy_shadow_n.png
 528share/owncloud/apps/files_imageviewer/img/fancy_shadow_ne.png
 529share/owncloud/apps/files_imageviewer/img/fancy_shadow_nw.png
 530share/owncloud/apps/files_imageviewer/img/fancy_shadow_s.png
 531share/owncloud/apps/files_imageviewer/img/fancy_shadow_se.png
 532share/owncloud/apps/files_imageviewer/img/fancy_shadow_sw.png
 533share/owncloud/apps/files_imageviewer/img/fancy_shadow_w.png
 534share/owncloud/apps/files_imageviewer/img/fancy_title_left.png
 535share/owncloud/apps/files_imageviewer/img/fancy_title_main.png
 536share/owncloud/apps/files_imageviewer/img/fancy_title_over.png
 537share/owncloud/apps/files_imageviewer/img/fancy_title_right.png
 538share/owncloud/apps/files_imageviewer/img/fancybox-x.png
 539share/owncloud/apps/files_imageviewer/img/fancybox-y.png
 540share/owncloud/apps/files_imageviewer/img/fancybox.png
 541share/owncloud/apps/files_imageviewer/js/jquery.fancybox-1.3.4.pack.js
 542share/owncloud/apps/files_imageviewer/js/jquery.mousewheel-3.0.4.pack.js
373share/owncloud/apps/files_imageviewer/js/lightbox.js 543share/owncloud/apps/files_imageviewer/js/lightbox.js
 544share/owncloud/apps/files_pdfviewer/appinfo/app.php
 545share/owncloud/apps/files_pdfviewer/appinfo/info.xml
 546share/owncloud/apps/files_pdfviewer/css/history.png
 547share/owncloud/apps/files_pdfviewer/css/viewer.css
 548share/owncloud/apps/files_pdfviewer/js/pdfjs/LICENSE
 549share/owncloud/apps/files_pdfviewer/js/pdfjs/build/pdf.js
 550share/owncloud/apps/files_pdfviewer/js/pdfjs/src/canvas.js
 551share/owncloud/apps/files_pdfviewer/js/pdfjs/src/charsets.js
 552share/owncloud/apps/files_pdfviewer/js/pdfjs/src/cidmaps.js
 553share/owncloud/apps/files_pdfviewer/js/pdfjs/src/colorspace.js
 554share/owncloud/apps/files_pdfviewer/js/pdfjs/src/core.js
 555share/owncloud/apps/files_pdfviewer/js/pdfjs/src/crypto.js
 556share/owncloud/apps/files_pdfviewer/js/pdfjs/src/evaluator.js
 557share/owncloud/apps/files_pdfviewer/js/pdfjs/src/fonts.js
 558share/owncloud/apps/files_pdfviewer/js/pdfjs/src/function.js
 559share/owncloud/apps/files_pdfviewer/js/pdfjs/src/glyphlist.js
 560share/owncloud/apps/files_pdfviewer/js/pdfjs/src/image.js
 561share/owncloud/apps/files_pdfviewer/js/pdfjs/src/metrics.js
 562share/owncloud/apps/files_pdfviewer/js/pdfjs/src/obj.js
 563share/owncloud/apps/files_pdfviewer/js/pdfjs/src/parser.js
 564share/owncloud/apps/files_pdfviewer/js/pdfjs/src/pattern.js
 565share/owncloud/apps/files_pdfviewer/js/pdfjs/src/pdf.js
 566share/owncloud/apps/files_pdfviewer/js/pdfjs/src/stream.js
 567share/owncloud/apps/files_pdfviewer/js/pdfjs/src/util.js
 568share/owncloud/apps/files_pdfviewer/js/pdfjs/src/utils/cffStandardStrings.js
 569share/owncloud/apps/files_pdfviewer/js/pdfjs/src/utils/fonts_utils.js
 570share/owncloud/apps/files_pdfviewer/js/pdfjs/src/worker.js
 571share/owncloud/apps/files_pdfviewer/js/pdfjs/src/worker_loader.js
 572share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/bookmark.svg
 573share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/document-print.svg
 574share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/download.svg
 575share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/go-down.svg
 576share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/go-up.svg
 577share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/nav-outline.svg
 578share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/nav-thumbs.svg
 579share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/zoom-in.svg
 580share/owncloud/apps/files_pdfviewer/js/pdfjs/web/images/zoom-out.svg
 581share/owncloud/apps/files_pdfviewer/js/pdfview.js
 582share/owncloud/apps/files_pdfviewer/js/viewer.js
374share/owncloud/apps/files_sharing/ajax/getitem.php 583share/owncloud/apps/files_sharing/ajax/getitem.php
375share/owncloud/apps/files_sharing/ajax/setpermissions.php 584share/owncloud/apps/files_sharing/ajax/setpermissions.php
376share/owncloud/apps/files_sharing/ajax/share.php 585share/owncloud/apps/files_sharing/ajax/share.php
377share/owncloud/apps/files_sharing/ajax/unshare.php 586share/owncloud/apps/files_sharing/ajax/unshare.php
378share/owncloud/apps/files_sharing/ajax/userautocomplete.php 587share/owncloud/apps/files_sharing/ajax/userautocomplete.php
379share/owncloud/apps/files_sharing/appinfo/app.php 588share/owncloud/apps/files_sharing/appinfo/app.php
380share/owncloud/apps/files_sharing/appinfo/database.xml 589share/owncloud/apps/files_sharing/appinfo/database.xml
381share/owncloud/apps/files_sharing/appinfo/info.xml 590share/owncloud/apps/files_sharing/appinfo/info.xml
382share/owncloud/apps/files_sharing/css/sharing.css 591share/owncloud/apps/files_sharing/css/sharing.css
383share/owncloud/apps/files_sharing/get.php 592share/owncloud/apps/files_sharing/get.php
384share/owncloud/apps/files_sharing/js/list.js 593share/owncloud/apps/files_sharing/js/list.js
385share/owncloud/apps/files_sharing/js/share.js 594share/owncloud/apps/files_sharing/js/share.js
386share/owncloud/apps/files_sharing/lib_share.php 595share/owncloud/apps/files_sharing/lib_share.php
387share/owncloud/apps/files_sharing/list.php 596share/owncloud/apps/files_sharing/list.php
388share/owncloud/apps/files_sharing/sharedstorage.php 597share/owncloud/apps/files_sharing/sharedstorage.php
389share/owncloud/apps/files_sharing/templates/list.php 598share/owncloud/apps/files_sharing/templates/list.php
390share/owncloud/apps/files_textviewer/appinfo/app.php 599share/owncloud/apps/files_texteditor/ajax/loadfile.php
391share/owncloud/apps/files_textviewer/appinfo/info.xml 600share/owncloud/apps/files_texteditor/ajax/mtime.php
392share/owncloud/apps/files_textviewer/css/style.css 601share/owncloud/apps/files_texteditor/ajax/savefile.php
393share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCore.css 602share/owncloud/apps/files_texteditor/appinfo/app.php
394share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreDefault.css 603share/owncloud/apps/files_texteditor/appinfo/info.xml
395share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreDjango.css 604share/owncloud/apps/files_texteditor/css/style.css
396share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreEclipse.css 605share/owncloud/apps/files_texteditor/js/aceeditor/LICENSE
397share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreEmacs.css 606share/owncloud/apps/files_texteditor/js/aceeditor/ace-compat-uncompressed.js
398share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreFadeToGrey.css 607share/owncloud/apps/files_texteditor/js/aceeditor/ace-compat.js
399share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreMDUltra.css 608share/owncloud/apps/files_texteditor/js/aceeditor/ace-uncompressed.js
400share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreMidnight.css 609share/owncloud/apps/files_texteditor/js/aceeditor/ace.js
401share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shCoreRDark.css 610share/owncloud/apps/files_texteditor/js/aceeditor/keybinding-emacs-uncompressed.js
402share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeDefault.css 611share/owncloud/apps/files_texteditor/js/aceeditor/keybinding-emacs.js
403share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeDjango.css 612share/owncloud/apps/files_texteditor/js/aceeditor/keybinding-vim-uncompressed.js
404share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeEclipse.css 613share/owncloud/apps/files_texteditor/js/aceeditor/keybinding-vim.js
405share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeEmacs.css 614share/owncloud/apps/files_texteditor/js/aceeditor/mode-c_cpp-uncompressed.js
406share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeFadeToGrey.css 615share/owncloud/apps/files_texteditor/js/aceeditor/mode-c_cpp.js
407share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeMDUltra.css 616share/owncloud/apps/files_texteditor/js/aceeditor/mode-clojure-uncompressed.js
408share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeMidnight.css 617share/owncloud/apps/files_texteditor/js/aceeditor/mode-clojure.js
409share/owncloud/apps/files_textviewer/css/syntaxhighlighter/shThemeRDark.css 618share/owncloud/apps/files_texteditor/js/aceeditor/mode-coffee-uncompressed.js
410share/owncloud/apps/files_textviewer/js/syntaxhighlighter/LGPL-LICENSE 619share/owncloud/apps/files_texteditor/js/aceeditor/mode-coffee.js
411share/owncloud/apps/files_textviewer/js/syntaxhighlighter/MIT-LICENSE 620share/owncloud/apps/files_texteditor/js/aceeditor/mode-coldfusion-uncompressed.js
412share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shAutoloader.js 621share/owncloud/apps/files_texteditor/js/aceeditor/mode-coldfusion.js
413share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushAS3.js 622share/owncloud/apps/files_texteditor/js/aceeditor/mode-csharp-uncompressed.js
414share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushAppleScript.js 623share/owncloud/apps/files_texteditor/js/aceeditor/mode-csharp.js
415share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushBash.js 624share/owncloud/apps/files_texteditor/js/aceeditor/mode-css-uncompressed.js
416share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushCSharp.js 625share/owncloud/apps/files_texteditor/js/aceeditor/mode-css.js
417share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushColdFusion.js 626share/owncloud/apps/files_texteditor/js/aceeditor/mode-groovy-uncompressed.js
418share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushCpp.js 627share/owncloud/apps/files_texteditor/js/aceeditor/mode-groovy.js
419share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushCss.js 628share/owncloud/apps/files_texteditor/js/aceeditor/mode-haxe-uncompressed.js
420share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushDelphi.js 629share/owncloud/apps/files_texteditor/js/aceeditor/mode-haxe.js
421share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushDiff.js 630share/owncloud/apps/files_texteditor/js/aceeditor/mode-html-uncompressed.js
422share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushErlang.js 631share/owncloud/apps/files_texteditor/js/aceeditor/mode-html.js
423share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushGroovy.js 632share/owncloud/apps/files_texteditor/js/aceeditor/mode-java-uncompressed.js
424share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushJScript.js 633share/owncloud/apps/files_texteditor/js/aceeditor/mode-java.js
425share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushJava.js 634share/owncloud/apps/files_texteditor/js/aceeditor/mode-javascript-uncompressed.js
426share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushJavaFX.js 635share/owncloud/apps/files_texteditor/js/aceeditor/mode-javascript.js
427share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushPerl.js 636share/owncloud/apps/files_texteditor/js/aceeditor/mode-json-uncompressed.js
428share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushPhp.js 637share/owncloud/apps/files_texteditor/js/aceeditor/mode-json.js
429share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushPlain.js 638share/owncloud/apps/files_texteditor/js/aceeditor/mode-latex-uncompressed.js
430share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushPowerShell.js 639share/owncloud/apps/files_texteditor/js/aceeditor/mode-latex.js
431share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushPython.js 640share/owncloud/apps/files_texteditor/js/aceeditor/mode-lua-uncompressed.js
432share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushRuby.js 641share/owncloud/apps/files_texteditor/js/aceeditor/mode-lua.js
433share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushSass.js 642share/owncloud/apps/files_texteditor/js/aceeditor/mode-markdown-uncompressed.js
434share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushScala.js 643share/owncloud/apps/files_texteditor/js/aceeditor/mode-markdown.js
435share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushSql.js 644share/owncloud/apps/files_texteditor/js/aceeditor/mode-ocaml-uncompressed.js
436share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushVb.js 645share/owncloud/apps/files_texteditor/js/aceeditor/mode-ocaml.js
437share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shBrushXml.js 646share/owncloud/apps/files_texteditor/js/aceeditor/mode-perl-uncompressed.js
438share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shCore.js 647share/owncloud/apps/files_texteditor/js/aceeditor/mode-perl.js
439share/owncloud/apps/files_textviewer/js/syntaxhighlighter/shLegacy.js 648share/owncloud/apps/files_texteditor/js/aceeditor/mode-php-uncompressed.js
440share/owncloud/apps/files_textviewer/js/textviewer.js 649share/owncloud/apps/files_texteditor/js/aceeditor/mode-php.js
 650share/owncloud/apps/files_texteditor/js/aceeditor/mode-powershell-uncompressed.js
 651share/owncloud/apps/files_texteditor/js/aceeditor/mode-powershell.js
 652share/owncloud/apps/files_texteditor/js/aceeditor/mode-python-uncompressed.js
 653share/owncloud/apps/files_texteditor/js/aceeditor/mode-python.js
 654share/owncloud/apps/files_texteditor/js/aceeditor/mode-ruby-uncompressed.js
 655share/owncloud/apps/files_texteditor/js/aceeditor/mode-ruby.js
 656share/owncloud/apps/files_texteditor/js/aceeditor/mode-scad-uncompressed.js
 657share/owncloud/apps/files_texteditor/js/aceeditor/mode-scad.js
 658share/owncloud/apps/files_texteditor/js/aceeditor/mode-scala-uncompressed.js
 659share/owncloud/apps/files_texteditor/js/aceeditor/mode-scala.js
 660share/owncloud/apps/files_texteditor/js/aceeditor/mode-scss-uncompressed.js
 661share/owncloud/apps/files_texteditor/js/aceeditor/mode-scss.js
 662share/owncloud/apps/files_texteditor/js/aceeditor/mode-sql-uncompressed.js
 663share/owncloud/apps/files_texteditor/js/aceeditor/mode-sql.js
 664share/owncloud/apps/files_texteditor/js/aceeditor/mode-svg-uncompressed.js
 665share/owncloud/apps/files_texteditor/js/aceeditor/mode-svg.js
 666share/owncloud/apps/files_texteditor/js/aceeditor/mode-textile-uncompressed.js
 667share/owncloud/apps/files_texteditor/js/aceeditor/mode-textile.js
 668share/owncloud/apps/files_texteditor/js/aceeditor/mode-xml-uncompressed.js
 669share/owncloud/apps/files_texteditor/js/aceeditor/mode-xml.js
 670share/owncloud/apps/files_texteditor/js/aceeditor/theme-clouds-uncompressed.js
 671share/owncloud/apps/files_texteditor/js/aceeditor/theme-clouds.js
 672share/owncloud/apps/files_texteditor/js/aceeditor/worker-coffee.js
 673share/owncloud/apps/files_texteditor/js/aceeditor/worker-css.js
 674share/owncloud/apps/files_texteditor/js/aceeditor/worker-javascript.js
 675share/owncloud/apps/files_texteditor/js/editor.js
 676share/owncloud/apps/gallery/ajax/cover.php
 677share/owncloud/apps/gallery/ajax/createAlbum.php
 678share/owncloud/apps/gallery/ajax/galleryOp.php
 679share/owncloud/apps/gallery/ajax/getAlbums.php
 680share/owncloud/apps/gallery/ajax/thumbnail.php
 681share/owncloud/apps/gallery/appinfo/app.php
 682share/owncloud/apps/gallery/appinfo/database.xml
 683share/owncloud/apps/gallery/appinfo/info.xml
 684share/owncloud/apps/gallery/css/styles.css
 685share/owncloud/apps/gallery/index.php
 686share/owncloud/apps/gallery/js/album_cover.js
 687share/owncloud/apps/gallery/js/albums.js
 688share/owncloud/apps/gallery/l10n/ar.php
 689share/owncloud/apps/gallery/l10n/ca.php
 690share/owncloud/apps/gallery/l10n/cs_CZ.php
 691share/owncloud/apps/gallery/l10n/da.php
 692share/owncloud/apps/gallery/l10n/de.php
 693share/owncloud/apps/gallery/l10n/es.php
 694share/owncloud/apps/gallery/l10n/et_EE.php
 695share/owncloud/apps/gallery/l10n/fr.php
 696share/owncloud/apps/gallery/l10n/gl.php
 697share/owncloud/apps/gallery/l10n/ia.php
 698share/owncloud/apps/gallery/l10n/it.php
 699share/owncloud/apps/gallery/l10n/ja_JP.php
 700share/owncloud/apps/gallery/l10n/pl.php
 701share/owncloud/apps/gallery/l10n/ru.php
 702share/owncloud/apps/gallery/l10n/sk_SK.php
 703share/owncloud/apps/gallery/l10n/sr.php
 704share/owncloud/apps/gallery/l10n/th_TH.php
 705share/owncloud/apps/gallery/l10n/zh_CN.php
 706share/owncloud/apps/gallery/lib/album.php
 707share/owncloud/apps/gallery/lib/hooks_handlers.php
 708share/owncloud/apps/gallery/lib/images_utils.php
 709share/owncloud/apps/gallery/lib/photo.php
 710share/owncloud/apps/gallery/lib/scanner.php
 711share/owncloud/apps/gallery/templates/index.php
 712share/owncloud/apps/gallery/templates/view_album.php
441share/owncloud/apps/media/ajax/api.php 713share/owncloud/apps/media/ajax/api.php
442share/owncloud/apps/media/ajax/autoupdate.php 714share/owncloud/apps/media/ajax/autoupdate.php
443share/owncloud/apps/media/appinfo/app.php 715share/owncloud/apps/media/appinfo/app.php
444share/owncloud/apps/media/appinfo/database.xml 716share/owncloud/apps/media/appinfo/database.xml
445share/owncloud/apps/media/appinfo/info.xml 717share/owncloud/apps/media/appinfo/info.xml
446share/owncloud/apps/media/css/music.css 718share/owncloud/apps/media/css/music.css
447share/owncloud/apps/media/css/player.css 719share/owncloud/apps/media/css/player.css
448share/owncloud/apps/media/getID3/changelog.txt 720share/owncloud/apps/media/getID3/changelog.txt
449share/owncloud/apps/media/getID3/dependencies.txt 721share/owncloud/apps/media/getID3/dependencies.txt
450share/owncloud/apps/media/getID3/getid3/extension.cache.dbm.php 722share/owncloud/apps/media/getID3/getid3/extension.cache.dbm.php
451share/owncloud/apps/media/getID3/getid3/extension.cache.mysql.php 723share/owncloud/apps/media/getID3/getid3/extension.cache.mysql.php
452share/owncloud/apps/media/getID3/getid3/getid3.lib.php 724share/owncloud/apps/media/getID3/getid3/getid3.lib.php
453share/owncloud/apps/media/getID3/getid3/getid3.php 725share/owncloud/apps/media/getID3/getid3/getid3.php
@@ -512,91 +784,97 @@ share/owncloud/apps/media/getID3/getid3/ @@ -512,91 +784,97 @@ share/owncloud/apps/media/getID3/getid3/
512share/owncloud/apps/media/getID3/getid3/write.lyrics3.php 784share/owncloud/apps/media/getID3/getid3/write.lyrics3.php
513share/owncloud/apps/media/getID3/getid3/write.metaflac.php 785share/owncloud/apps/media/getID3/getid3/write.metaflac.php
514share/owncloud/apps/media/getID3/getid3/write.php 786share/owncloud/apps/media/getID3/getid3/write.php
515share/owncloud/apps/media/getID3/getid3/write.real.php 787share/owncloud/apps/media/getID3/getid3/write.real.php
516share/owncloud/apps/media/getID3/getid3/write.vorbiscomment.php 788share/owncloud/apps/media/getID3/getid3/write.vorbiscomment.php
517share/owncloud/apps/media/getID3/helperapps/readme.txt 789share/owncloud/apps/media/getID3/helperapps/readme.txt
518share/owncloud/apps/media/getID3/license.commercial.txt 790share/owncloud/apps/media/getID3/license.commercial.txt
519share/owncloud/apps/media/getID3/license.txt 791share/owncloud/apps/media/getID3/license.txt
520share/owncloud/apps/media/getID3/readme.txt 792share/owncloud/apps/media/getID3/readme.txt
521share/owncloud/apps/media/getID3/structure.txt 793share/owncloud/apps/media/getID3/structure.txt
522share/owncloud/apps/media/index.php 794share/owncloud/apps/media/index.php
523share/owncloud/apps/media/js/Jplayer.swf 795share/owncloud/apps/media/js/Jplayer.swf
524share/owncloud/apps/media/js/collection.js 796share/owncloud/apps/media/js/collection.js
 797share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/Jplayer.as
 798share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/Jplayer.fla
 799share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/add-on/jplayer.playlist.js
 800share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/add-on/jquery.jplayer.inspector.js
 801share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/happyworm/jPlayer/JplayerEvent.as
 802share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/happyworm/jPlayer/JplayerMp3.as
 803share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/happyworm/jPlayer/JplayerMp4.as
 804share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/happyworm/jPlayer/JplayerStatus.as
 805share/owncloud/apps/media/js/jQuery.jPlayer.2.1.0.source/jquery.jplayer.js
525share/owncloud/apps/media/js/jquery.jplayer.min.js 806share/owncloud/apps/media/js/jquery.jplayer.min.js
526share/owncloud/apps/media/js/loader.js 807share/owncloud/apps/media/js/loader.js
527share/owncloud/apps/media/js/music.js 808share/owncloud/apps/media/js/music.js
528share/owncloud/apps/media/js/player.js 809share/owncloud/apps/media/js/player.js
529share/owncloud/apps/media/js/playlist.js 810share/owncloud/apps/media/js/playlist.js
530share/owncloud/apps/media/js/scanner.js 811share/owncloud/apps/media/js/scanner.js
 812share/owncloud/apps/media/l10n/ar.php
531share/owncloud/apps/media/l10n/bg_BG.php 813share/owncloud/apps/media/l10n/bg_BG.php
532share/owncloud/apps/media/l10n/ca.php 814share/owncloud/apps/media/l10n/ca.php
533share/owncloud/apps/media/l10n/cs_CZ.php 815share/owncloud/apps/media/l10n/cs_CZ.php
534share/owncloud/apps/media/l10n/da.php 816share/owncloud/apps/media/l10n/da.php
535share/owncloud/apps/media/l10n/de.php 817share/owncloud/apps/media/l10n/de.php
536share/owncloud/apps/media/l10n/el.php 818share/owncloud/apps/media/l10n/el.php
 819share/owncloud/apps/media/l10n/eo.php
537share/owncloud/apps/media/l10n/es.php 820share/owncloud/apps/media/l10n/es.php
538share/owncloud/apps/media/l10n/et_EE.php 821share/owncloud/apps/media/l10n/et_EE.php
 822share/owncloud/apps/media/l10n/eu.php
539share/owncloud/apps/media/l10n/fr.php 823share/owncloud/apps/media/l10n/fr.php
 824share/owncloud/apps/media/l10n/gl.php
 825share/owncloud/apps/media/l10n/he.php
 826share/owncloud/apps/media/l10n/hr.php
 827share/owncloud/apps/media/l10n/hu_HU.php
 828share/owncloud/apps/media/l10n/ia.php
540share/owncloud/apps/media/l10n/id.php 829share/owncloud/apps/media/l10n/id.php
541share/owncloud/apps/media/l10n/it.php 830share/owncloud/apps/media/l10n/it.php
 831share/owncloud/apps/media/l10n/ja_JP.php
542share/owncloud/apps/media/l10n/lb.php 832share/owncloud/apps/media/l10n/lb.php
 833share/owncloud/apps/media/l10n/lt_LT.php
543share/owncloud/apps/media/l10n/ms_MY.php 834share/owncloud/apps/media/l10n/ms_MY.php
544share/owncloud/apps/media/l10n/nb_NO.php 835share/owncloud/apps/media/l10n/nb_NO.php
545share/owncloud/apps/media/l10n/nl.php 836share/owncloud/apps/media/l10n/nl.php
 837share/owncloud/apps/media/l10n/nn_NO.php
546share/owncloud/apps/media/l10n/pl.php 838share/owncloud/apps/media/l10n/pl.php
547share/owncloud/apps/media/l10n/pt_BR.php 839share/owncloud/apps/media/l10n/pt_BR.php
548share/owncloud/apps/media/l10n/ro.php 840share/owncloud/apps/media/l10n/ro.php
549share/owncloud/apps/media/l10n/ru.php 841share/owncloud/apps/media/l10n/ru.php
 842share/owncloud/apps/media/l10n/sk_SK.php
 843share/owncloud/apps/media/l10n/sl.php
550share/owncloud/apps/media/l10n/sr.php 844share/owncloud/apps/media/l10n/sr.php
551share/owncloud/apps/media/l10n/sr@latin.php 845share/owncloud/apps/media/l10n/sr@latin.php
552share/owncloud/apps/media/l10n/sv.php 846share/owncloud/apps/media/l10n/sv.php
 847share/owncloud/apps/media/l10n/th_TH.php
 848share/owncloud/apps/media/l10n/tr.php
553share/owncloud/apps/media/l10n/xgettextfiles 849share/owncloud/apps/media/l10n/xgettextfiles
554share/owncloud/apps/media/l10n/zh_CN.php 850share/owncloud/apps/media/l10n/zh_CN.php
555share/owncloud/apps/media/lib_ampache.php 851share/owncloud/apps/media/lib_ampache.php
556share/owncloud/apps/media/lib_collection.php 852share/owncloud/apps/media/lib_collection.php
557share/owncloud/apps/media/lib_media.php 853share/owncloud/apps/media/lib_media.php
558share/owncloud/apps/media/lib_scanner.php 854share/owncloud/apps/media/lib_scanner.php
559share/owncloud/apps/media/server/xml.server.php 855share/owncloud/apps/media/server/xml.server.php
560share/owncloud/apps/media/settings.php 856share/owncloud/apps/media/settings.php
561share/owncloud/apps/media/templates/music.php 857share/owncloud/apps/media/templates/music.php
562share/owncloud/apps/media/templates/player.php 858share/owncloud/apps/media/templates/player.php
563share/owncloud/apps/media/templates/settings.php 859share/owncloud/apps/media/templates/settings.php
564share/owncloud/apps/media/tomahawk.php 860share/owncloud/apps/media/tomahawk.php
 861share/owncloud/apps/remoteStorage/WebDAV.php
565share/owncloud/apps/remoteStorage/appinfo/app.php 862share/owncloud/apps/remoteStorage/appinfo/app.php
566share/owncloud/apps/remoteStorage/appinfo/database.xml 863share/owncloud/apps/remoteStorage/appinfo/database.xml
567share/owncloud/apps/remoteStorage/appinfo/info.xml 864share/owncloud/apps/remoteStorage/appinfo/info.xml
568share/owncloud/apps/remoteStorage/compat.php 865share/owncloud/apps/remoteStorage/auth.php
569share/owncloud/apps/remoteStorage/lib_remoteStorage.php 866share/owncloud/apps/remoteStorage/lib_remoteStorage.php
570share/owncloud/apps/remoteStorage/oauth_ro_auth.php 867share/owncloud/apps/remoteStorage/oauth_ro_auth.php
571share/owncloud/apps/tasks/ajax/addtask.php 
572share/owncloud/apps/tasks/ajax/addtaskform.php 
573share/owncloud/apps/tasks/ajax/delete.php 
574share/owncloud/apps/tasks/ajax/edittask.php 
575share/owncloud/apps/tasks/ajax/edittaskform.php 
576share/owncloud/apps/tasks/ajax/getdetails.php 
577share/owncloud/apps/tasks/appinfo/app.php 
578share/owncloud/apps/tasks/appinfo/info.xml 
579share/owncloud/apps/tasks/css/style.css 
580share/owncloud/apps/tasks/index.php 
581share/owncloud/apps/tasks/js/tasks.js 
582share/owncloud/apps/tasks/lib/vtodo.php 
583share/owncloud/apps/tasks/templates/part.addtaskform.php 
584share/owncloud/apps/tasks/templates/part.details.php 
585share/owncloud/apps/tasks/templates/part.edittaskform.php 
586share/owncloud/apps/tasks/templates/part.property.php 
587share/owncloud/apps/tasks/templates/part.taskform.php 
588share/owncloud/apps/tasks/templates/part.tasks.php 
589share/owncloud/apps/tasks/templates/tasks.php 
590share/owncloud/apps/user_ldap/appinfo/app.php 868share/owncloud/apps/user_ldap/appinfo/app.php
591share/owncloud/apps/user_ldap/appinfo/info.xml 869share/owncloud/apps/user_ldap/appinfo/info.xml
592share/owncloud/apps/user_ldap/settings.php 870share/owncloud/apps/user_ldap/settings.php
593share/owncloud/apps/user_ldap/templates/settings.php 871share/owncloud/apps/user_ldap/templates/settings.php
594share/owncloud/apps/user_ldap/user_ldap.php 872share/owncloud/apps/user_ldap/user_ldap.php
595share/owncloud/apps/user_openid/appinfo/app.php 873share/owncloud/apps/user_openid/appinfo/app.php
596share/owncloud/apps/user_openid/appinfo/info.xml 874share/owncloud/apps/user_openid/appinfo/info.xml
597share/owncloud/apps/user_openid/class.openid.v3.php 875share/owncloud/apps/user_openid/class.openid.v3.php
598share/owncloud/apps/user_openid/js/settings.js 876share/owncloud/apps/user_openid/js/settings.js
599share/owncloud/apps/user_openid/phpmyid.php 877share/owncloud/apps/user_openid/phpmyid.php
600share/owncloud/apps/user_openid/settings.php 878share/owncloud/apps/user_openid/settings.php
601share/owncloud/apps/user_openid/templates/nomode.php 879share/owncloud/apps/user_openid/templates/nomode.php
602share/owncloud/apps/user_openid/templates/settings.php 880share/owncloud/apps/user_openid/templates/settings.php
@@ -605,34 +883,36 @@ share/owncloud/apps/user_openid/user_ope @@ -605,34 +883,36 @@ share/owncloud/apps/user_openid/user_ope
605share/owncloud/apps/user_webfinger/.htaccess 883share/owncloud/apps/user_webfinger/.htaccess
606share/owncloud/apps/user_webfinger/appinfo/app.php 884share/owncloud/apps/user_webfinger/appinfo/app.php
607share/owncloud/apps/user_webfinger/appinfo/info.xml 885share/owncloud/apps/user_webfinger/appinfo/info.xml
608share/owncloud/apps/user_webfinger/appinfo/install.php 886share/owncloud/apps/user_webfinger/appinfo/install.php
609share/owncloud/apps/user_webfinger/host-meta 887share/owncloud/apps/user_webfinger/host-meta
610share/owncloud/apps/user_webfinger/host-meta.php 888share/owncloud/apps/user_webfinger/host-meta.php
611share/owncloud/apps/user_webfinger/webfinger.php 889share/owncloud/apps/user_webfinger/webfinger.php
612share/owncloud/config/config.sample.php 890share/owncloud/config/config.sample.php
613share/owncloud/core/ajax/grouplist.php 891share/owncloud/core/ajax/grouplist.php
614share/owncloud/core/ajax/translations.php 892share/owncloud/core/ajax/translations.php
615share/owncloud/core/ajax/userlist.php 893share/owncloud/core/ajax/userlist.php
616share/owncloud/core/ajax/validateuser.php 894share/owncloud/core/ajax/validateuser.php
617share/owncloud/core/css/jquery-tipsy.css 895share/owncloud/core/css/jquery-tipsy.css
618share/owncloud/core/css/jquery-ui-1.8.14.custom.css 896share/owncloud/core/css/jquery-ui-1.8.16.custom.css
619share/owncloud/core/css/jquery.multiselect.css 897share/owncloud/core/css/jquery.multiselect.css
620share/owncloud/core/css/multiselect.css 898share/owncloud/core/css/multiselect.css
621share/owncloud/core/css/styles.css 899share/owncloud/core/css/styles.css
622share/owncloud/core/img/actions/delete.png 900share/owncloud/core/img/actions/delete.png
623share/owncloud/core/img/actions/delete.svg 901share/owncloud/core/img/actions/delete.svg
624share/owncloud/core/img/actions/download.png 902share/owncloud/core/img/actions/download.png
625share/owncloud/core/img/actions/download.svg 903share/owncloud/core/img/actions/download.svg
 904share/owncloud/core/img/actions/info.png
 905share/owncloud/core/img/actions/info.svg
626share/owncloud/core/img/actions/logout.png 906share/owncloud/core/img/actions/logout.png
627share/owncloud/core/img/actions/logout.svg 907share/owncloud/core/img/actions/logout.svg
628share/owncloud/core/img/actions/pause-big.png 908share/owncloud/core/img/actions/pause-big.png
629share/owncloud/core/img/actions/pause-big.svg 909share/owncloud/core/img/actions/pause-big.svg
630share/owncloud/core/img/actions/pause.png 910share/owncloud/core/img/actions/pause.png
631share/owncloud/core/img/actions/pause.svg 911share/owncloud/core/img/actions/pause.svg
632share/owncloud/core/img/actions/play-add.png 912share/owncloud/core/img/actions/play-add.png
633share/owncloud/core/img/actions/play-add.svg 913share/owncloud/core/img/actions/play-add.svg
634share/owncloud/core/img/actions/play-big.png 914share/owncloud/core/img/actions/play-big.png
635share/owncloud/core/img/actions/play-big.svg 915share/owncloud/core/img/actions/play-big.svg
636share/owncloud/core/img/actions/play-next.png 916share/owncloud/core/img/actions/play-next.png
637share/owncloud/core/img/actions/play-next.svg 917share/owncloud/core/img/actions/play-next.svg
638share/owncloud/core/img/actions/play-previous.png 918share/owncloud/core/img/actions/play-previous.png
@@ -645,328 +925,518 @@ share/owncloud/core/img/actions/rename.p @@ -645,328 +925,518 @@ share/owncloud/core/img/actions/rename.p
645share/owncloud/core/img/actions/rename.svg 925share/owncloud/core/img/actions/rename.svg
646share/owncloud/core/img/actions/search.png 926share/owncloud/core/img/actions/search.png
647share/owncloud/core/img/actions/search.svg 927share/owncloud/core/img/actions/search.svg
648share/owncloud/core/img/actions/settings.png 928share/owncloud/core/img/actions/settings.png
649share/owncloud/core/img/actions/settings.svg 929share/owncloud/core/img/actions/settings.svg
650share/owncloud/core/img/actions/share.png 930share/owncloud/core/img/actions/share.png
651share/owncloud/core/img/actions/share.svg 931share/owncloud/core/img/actions/share.svg
652share/owncloud/core/img/actions/shared.png 932share/owncloud/core/img/actions/shared.png
653share/owncloud/core/img/actions/shared.svg 933share/owncloud/core/img/actions/shared.svg
654share/owncloud/core/img/actions/sound-off.png 934share/owncloud/core/img/actions/sound-off.png
655share/owncloud/core/img/actions/sound-off.svg 935share/owncloud/core/img/actions/sound-off.svg
656share/owncloud/core/img/actions/sound.png 936share/owncloud/core/img/actions/sound.png
657share/owncloud/core/img/actions/sound.svg 937share/owncloud/core/img/actions/sound.svg
 938share/owncloud/core/img/actions/upload.png
 939share/owncloud/core/img/actions/upload.svg
658share/owncloud/core/img/breadcrumb-start.png 940share/owncloud/core/img/breadcrumb-start.png
659share/owncloud/core/img/breadcrumb-start.svg 941share/owncloud/core/img/breadcrumb-start.svg
660share/owncloud/core/img/breadcrumb.png 942share/owncloud/core/img/breadcrumb.png
661share/owncloud/core/img/breadcrumb.svg 943share/owncloud/core/img/breadcrumb.svg
662share/owncloud/core/img/favicon-touch.png 944share/owncloud/core/img/favicon-touch.png
663share/owncloud/core/img/favicon.png 945share/owncloud/core/img/favicon.png
664share/owncloud/core/img/filetypes/application-pdf.png 946share/owncloud/core/img/filetypes/application-pdf.png
665share/owncloud/core/img/filetypes/application-rss+xml.png 947share/owncloud/core/img/filetypes/application-rss+xml.png
666share/owncloud/core/img/filetypes/audio.png 948share/owncloud/core/img/filetypes/audio.png
 949share/owncloud/core/img/filetypes/code-script.png
667share/owncloud/core/img/filetypes/code.png 950share/owncloud/core/img/filetypes/code.png
668share/owncloud/core/img/filetypes/database.png 951share/owncloud/core/img/filetypes/database.png
669share/owncloud/core/img/filetypes/file.png 952share/owncloud/core/img/filetypes/file.png
670share/owncloud/core/img/filetypes/flash.png 953share/owncloud/core/img/filetypes/flash.png
671share/owncloud/core/img/filetypes/folder.png 954share/owncloud/core/img/filetypes/folder.png
672share/owncloud/core/img/filetypes/font.png 955share/owncloud/core/img/filetypes/font.png
673share/owncloud/core/img/filetypes/image-svg+xml.png 956share/owncloud/core/img/filetypes/image-svg+xml.png
674share/owncloud/core/img/filetypes/image.png 957share/owncloud/core/img/filetypes/image.png
675share/owncloud/core/img/filetypes/link.png 958share/owncloud/core/img/filetypes/link.png
676share/owncloud/core/img/filetypes/model.png 959share/owncloud/core/img/filetypes/model.png
677share/owncloud/core/img/filetypes/ms-excel.png 960share/owncloud/core/img/filetypes/ms-excel.png
678share/owncloud/core/img/filetypes/ms-powerpoint.png 961share/owncloud/core/img/filetypes/ms-powerpoint.png
679share/owncloud/core/img/filetypes/php.png 
680share/owncloud/core/img/filetypes/presentation.png 962share/owncloud/core/img/filetypes/presentation.png
681share/owncloud/core/img/filetypes/readme.txt 963share/owncloud/core/img/filetypes/readme.txt
682share/owncloud/core/img/filetypes/ruby.png 964share/owncloud/core/img/filetypes/ruby.png
683share/owncloud/core/img/filetypes/script.png 
684share/owncloud/core/img/filetypes/spreadsheet.png 965share/owncloud/core/img/filetypes/spreadsheet.png
685share/owncloud/core/img/filetypes/text-calendar.png 966share/owncloud/core/img/filetypes/text-calendar.png
686share/owncloud/core/img/filetypes/text-css.png 967share/owncloud/core/img/filetypes/text-css.png
687share/owncloud/core/img/filetypes/text-html.png 968share/owncloud/core/img/filetypes/text-html.png
 969share/owncloud/core/img/filetypes/text-vcard.png
688share/owncloud/core/img/filetypes/text-x-c++.png 970share/owncloud/core/img/filetypes/text-x-c++.png
689share/owncloud/core/img/filetypes/text-x-c.png 971share/owncloud/core/img/filetypes/text-x-c.png
690share/owncloud/core/img/filetypes/text-x-csharp.png 972share/owncloud/core/img/filetypes/text-x-csharp.png
691share/owncloud/core/img/filetypes/text-x-h.png 973share/owncloud/core/img/filetypes/text-x-h.png
 974share/owncloud/core/img/filetypes/text-x-php.png
692share/owncloud/core/img/filetypes/text.png 975share/owncloud/core/img/filetypes/text.png
693share/owncloud/core/img/filetypes/vcf.png 
694share/owncloud/core/img/filetypes/video.png 976share/owncloud/core/img/filetypes/video.png
695share/owncloud/core/img/filetypes/x-.png 977share/owncloud/core/img/filetypes/x-.png
 978share/owncloud/core/img/loader.gif
 979share/owncloud/core/img/loading-dark.gif
696share/owncloud/core/img/loading.gif 980share/owncloud/core/img/loading.gif
 981share/owncloud/core/img/logo-inverted.svg
 982share/owncloud/core/img/logo-square.png
697share/owncloud/core/img/logo-wide.png 983share/owncloud/core/img/logo-wide.png
698share/owncloud/core/img/logo-wide.svg 984share/owncloud/core/img/logo-wide.svg
 985share/owncloud/core/img/logo.svg
699share/owncloud/core/img/owncloud-logo-medium-white.png 986share/owncloud/core/img/owncloud-logo-medium-white.png
700share/owncloud/core/img/places/file.png 987share/owncloud/core/img/places/file.png
701share/owncloud/core/img/places/file.svg 988share/owncloud/core/img/places/file.svg
702share/owncloud/core/img/places/folder.png 989share/owncloud/core/img/places/folder.png
703share/owncloud/core/img/places/folder.svg 990share/owncloud/core/img/places/folder.svg
704share/owncloud/core/img/places/home.png 991share/owncloud/core/img/places/home.png
705share/owncloud/core/img/places/home.svg 992share/owncloud/core/img/places/home.svg
706share/owncloud/core/img/places/music.png 993share/owncloud/core/img/places/music.png
707share/owncloud/core/img/places/music.svg 994share/owncloud/core/img/places/music.svg
708share/owncloud/core/img/places/picture.png 995share/owncloud/core/img/places/picture.png
709share/owncloud/core/img/places/picture.svg 996share/owncloud/core/img/places/picture.svg
710share/owncloud/core/img/weather-clear.png 997share/owncloud/core/img/weather-clear.png
711share/owncloud/core/js/jquery-1.6.4.min.js 998share/owncloud/core/js/jquery-1.6.4.min.js
712share/owncloud/core/js/jquery-showpassword.js 999share/owncloud/core/js/jquery-showpassword.js
713share/owncloud/core/js/jquery-tipsy.js 1000share/owncloud/core/js/jquery-tipsy.js
714share/owncloud/core/js/jquery-ui-1.8.14.custom.min.js 1001share/owncloud/core/js/jquery-ui-1.8.16.custom.min.js
 1002share/owncloud/core/js/jquery.infieldlabel.js
715share/owncloud/core/js/jquery.infieldlabel.min.js 1003share/owncloud/core/js/jquery.infieldlabel.min.js
716share/owncloud/core/js/jquery.multiselect.js 1004share/owncloud/core/js/jquery.multiselect.js
717share/owncloud/core/js/js.js 1005share/owncloud/core/js/js.js
718share/owncloud/core/js/listview.js 1006share/owncloud/core/js/listview.js
719share/owncloud/core/js/multiselect.js 1007share/owncloud/core/js/multiselect.js
720share/owncloud/core/js/setup.js 1008share/owncloud/core/js/setup.js
 1009share/owncloud/core/l10n/ar.php
721share/owncloud/core/l10n/bg_BG.php 1010share/owncloud/core/l10n/bg_BG.php
722share/owncloud/core/l10n/ca.php 1011share/owncloud/core/l10n/ca.php
723share/owncloud/core/l10n/cs_CZ.php 1012share/owncloud/core/l10n/cs_CZ.php
724share/owncloud/core/l10n/da.php 1013share/owncloud/core/l10n/da.php
725share/owncloud/core/l10n/de.php 1014share/owncloud/core/l10n/de.php
726share/owncloud/core/l10n/el.php 1015share/owncloud/core/l10n/el.php
 1016share/owncloud/core/l10n/eo.php
727share/owncloud/core/l10n/es.php 1017share/owncloud/core/l10n/es.php
728share/owncloud/core/l10n/et_EE.php 1018share/owncloud/core/l10n/et_EE.php
 1019share/owncloud/core/l10n/eu.php
729share/owncloud/core/l10n/fr.php 1020share/owncloud/core/l10n/fr.php
 1021share/owncloud/core/l10n/gl.php
 1022share/owncloud/core/l10n/he.php
 1023share/owncloud/core/l10n/hr.php
 1024share/owncloud/core/l10n/hu_HU.php
 1025share/owncloud/core/l10n/ia.php
730share/owncloud/core/l10n/id.php 1026share/owncloud/core/l10n/id.php
731share/owncloud/core/l10n/it.php 1027share/owncloud/core/l10n/it.php
 1028share/owncloud/core/l10n/ja_JP.php
732share/owncloud/core/l10n/l10n-de.php 1029share/owncloud/core/l10n/l10n-de.php
733share/owncloud/core/l10n/lb.php 1030share/owncloud/core/l10n/lb.php
 1031share/owncloud/core/l10n/lt_LT.php
734share/owncloud/core/l10n/ms_MY.php 1032share/owncloud/core/l10n/ms_MY.php
735share/owncloud/core/l10n/nb_NO.php 1033share/owncloud/core/l10n/nb_NO.php
736share/owncloud/core/l10n/nl.php 1034share/owncloud/core/l10n/nl.php
 1035share/owncloud/core/l10n/nn_NO.php
737share/owncloud/core/l10n/pl.php 1036share/owncloud/core/l10n/pl.php
738share/owncloud/core/l10n/pt_BR.php 1037share/owncloud/core/l10n/pt_BR.php
 1038share/owncloud/core/l10n/pt_PT.php
739share/owncloud/core/l10n/ro.php 1039share/owncloud/core/l10n/ro.php
740share/owncloud/core/l10n/ru.php 1040share/owncloud/core/l10n/ru.php
 1041share/owncloud/core/l10n/sk_SK.php
 1042share/owncloud/core/l10n/sl.php
741share/owncloud/core/l10n/sr.php 1043share/owncloud/core/l10n/sr.php
742share/owncloud/core/l10n/sr@latin.php 1044share/owncloud/core/l10n/sr@latin.php
743share/owncloud/core/l10n/sv.php 1045share/owncloud/core/l10n/sv.php
 1046share/owncloud/core/l10n/th_TH.php
 1047share/owncloud/core/l10n/tr.php
744share/owncloud/core/l10n/xgettextfiles 1048share/owncloud/core/l10n/xgettextfiles
745share/owncloud/core/l10n/zh_CN.php 1049share/owncloud/core/l10n/zh_CN.php
746share/owncloud/core/lostpassword/index.php 1050share/owncloud/core/lostpassword/index.php
747share/owncloud/core/lostpassword/resetpassword.php 1051share/owncloud/core/lostpassword/resetpassword.php
748share/owncloud/core/lostpassword/templates/email.php 1052share/owncloud/core/lostpassword/templates/email.php
749share/owncloud/core/lostpassword/templates/lostpassword.php 1053share/owncloud/core/lostpassword/templates/lostpassword.php
750share/owncloud/core/lostpassword/templates/resetpassword.php 1054share/owncloud/core/lostpassword/templates/resetpassword.php
751share/owncloud/core/strings.php 1055share/owncloud/core/strings.php
752share/owncloud/core/templates/404.php 1056share/owncloud/core/templates/404.php
753share/owncloud/core/templates/error.php 1057share/owncloud/core/templates/error.php
754share/owncloud/core/templates/installation.php 1058share/owncloud/core/templates/installation.php
755share/owncloud/core/templates/layout.guest.php 1059share/owncloud/core/templates/layout.guest.php
756share/owncloud/core/templates/layout.user.php 1060share/owncloud/core/templates/layout.user.php
757share/owncloud/core/templates/login.php 1061share/owncloud/core/templates/login.php
758share/owncloud/core/templates/logout.php 1062share/owncloud/core/templates/logout.php
759share/owncloud/core/templates/part.pagenavi.php 1063share/owncloud/core/templates/part.pagenavi.php
760share/owncloud/db_structure.xml 1064share/owncloud/db_structure.xml
761share/owncloud/files/admin.php 1065share/owncloud/files/admin.php
762share/owncloud/files/ajax/autocomplete.php 1066share/owncloud/files/ajax/autocomplete.php
763share/owncloud/files/ajax/delete.php 1067share/owncloud/files/ajax/delete.php
764share/owncloud/files/ajax/download.php 1068share/owncloud/files/ajax/download.php
765share/owncloud/files/ajax/list.php 1069share/owncloud/files/ajax/list.php
 1070share/owncloud/files/ajax/mimeicon.php
766share/owncloud/files/ajax/move.php 1071share/owncloud/files/ajax/move.php
 1072share/owncloud/files/ajax/newfile.php
767share/owncloud/files/ajax/newfolder.php 1073share/owncloud/files/ajax/newfolder.php
768share/owncloud/files/ajax/rename.php 1074share/owncloud/files/ajax/rename.php
769share/owncloud/files/ajax/timezone.php 1075share/owncloud/files/ajax/timezone.php
770share/owncloud/files/ajax/upload.php 1076share/owncloud/files/ajax/upload.php
771share/owncloud/files/appinfo/app.php 1077share/owncloud/files/appinfo/app.php
772share/owncloud/files/css/files.css 1078share/owncloud/files/css/files.css
773share/owncloud/files/download.php 1079share/owncloud/files/download.php
774share/owncloud/files/index.php 1080share/owncloud/files/index.php
775share/owncloud/files/js/admin.js 1081share/owncloud/files/js/admin.js
776share/owncloud/files/js/fileactions.js 1082share/owncloud/files/js/fileactions.js
777share/owncloud/files/js/filelist.js 1083share/owncloud/files/js/filelist.js
778share/owncloud/files/js/files.js 1084share/owncloud/files/js/files.js
779share/owncloud/files/js/timezone.js 1085share/owncloud/files/js/timezone.js
 1086share/owncloud/files/l10n/ar.php
780share/owncloud/files/l10n/bg_BG.php 1087share/owncloud/files/l10n/bg_BG.php
781share/owncloud/files/l10n/ca.php 1088share/owncloud/files/l10n/ca.php
782share/owncloud/files/l10n/cs_CZ.php 1089share/owncloud/files/l10n/cs_CZ.php
783share/owncloud/files/l10n/da.php 1090share/owncloud/files/l10n/da.php
784share/owncloud/files/l10n/de.php 1091share/owncloud/files/l10n/de.php
785share/owncloud/files/l10n/el.php 1092share/owncloud/files/l10n/el.php
 1093share/owncloud/files/l10n/eo.php
786share/owncloud/files/l10n/es.php 1094share/owncloud/files/l10n/es.php
787share/owncloud/files/l10n/et_EE.php 1095share/owncloud/files/l10n/et_EE.php
 1096share/owncloud/files/l10n/eu.php
788share/owncloud/files/l10n/fr.php 1097share/owncloud/files/l10n/fr.php
 1098share/owncloud/files/l10n/gl.php
 1099share/owncloud/files/l10n/he.php
 1100share/owncloud/files/l10n/hr.php
 1101share/owncloud/files/l10n/hu_HU.php
 1102share/owncloud/files/l10n/ia.php
789share/owncloud/files/l10n/id.php 1103share/owncloud/files/l10n/id.php
790share/owncloud/files/l10n/it.php 1104share/owncloud/files/l10n/it.php
 1105share/owncloud/files/l10n/ja_JP.php
791share/owncloud/files/l10n/lb.php 1106share/owncloud/files/l10n/lb.php
 1107share/owncloud/files/l10n/lt_LT.php
792share/owncloud/files/l10n/ms_MY.php 1108share/owncloud/files/l10n/ms_MY.php
793share/owncloud/files/l10n/nb_NO.php 1109share/owncloud/files/l10n/nb_NO.php
794share/owncloud/files/l10n/nl.php 1110share/owncloud/files/l10n/nl.php
 1111share/owncloud/files/l10n/nn_NO.php
795share/owncloud/files/l10n/pl.php 1112share/owncloud/files/l10n/pl.php
796share/owncloud/files/l10n/pt_BR.php 1113share/owncloud/files/l10n/pt_BR.php
797share/owncloud/files/l10n/ro.php 1114share/owncloud/files/l10n/ro.php
798share/owncloud/files/l10n/ru.php 1115share/owncloud/files/l10n/ru.php
 1116share/owncloud/files/l10n/sk_SK.php
 1117share/owncloud/files/l10n/sl.php
799share/owncloud/files/l10n/sr.php 1118share/owncloud/files/l10n/sr.php
800share/owncloud/files/l10n/sr@latin.php 1119share/owncloud/files/l10n/sr@latin.php
801share/owncloud/files/l10n/sv.php 1120share/owncloud/files/l10n/sv.php
 1121share/owncloud/files/l10n/th_TH.php
 1122share/owncloud/files/l10n/tr.php
802share/owncloud/files/l10n/xgettextfiles 1123share/owncloud/files/l10n/xgettextfiles
803share/owncloud/files/l10n/zh_CN.php 1124share/owncloud/files/l10n/zh_CN.php
804share/owncloud/files/settings.php 1125share/owncloud/files/settings.php
805share/owncloud/files/templates/admin.php 1126share/owncloud/files/templates/admin.php
806share/owncloud/files/templates/index.php 1127share/owncloud/files/templates/index.php
807share/owncloud/files/templates/part.breadcrumb.php 1128share/owncloud/files/templates/part.breadcrumb.php
808share/owncloud/files/templates/part.list.php 1129share/owncloud/files/templates/part.list.php
809share/owncloud/files/webdav.php 1130share/owncloud/files/webdav.php
810share/owncloud/index.php 1131share/owncloud/index.php
 1132share/owncloud/l10n/ar/calendar.po
 1133share/owncloud/l10n/ar/contacts.po
 1134share/owncloud/l10n/ar/core.po
 1135share/owncloud/l10n/ar/files.po
 1136share/owncloud/l10n/ar/gallery.po
 1137share/owncloud/l10n/ar/media.po
 1138share/owncloud/l10n/ar/settings.po
811share/owncloud/l10n/bg_BG/calendar.po 1139share/owncloud/l10n/bg_BG/calendar.po
812share/owncloud/l10n/bg_BG/contacts.po 1140share/owncloud/l10n/bg_BG/contacts.po
813share/owncloud/l10n/bg_BG/core.po 1141share/owncloud/l10n/bg_BG/core.po
814share/owncloud/l10n/bg_BG/files.po 1142share/owncloud/l10n/bg_BG/files.po
 1143share/owncloud/l10n/bg_BG/gallery.po
815share/owncloud/l10n/bg_BG/media.po 1144share/owncloud/l10n/bg_BG/media.po
816share/owncloud/l10n/bg_BG/settings.po 1145share/owncloud/l10n/bg_BG/settings.po
817share/owncloud/l10n/ca/calendar.po 1146share/owncloud/l10n/ca/calendar.po
818share/owncloud/l10n/ca/contacts.po 1147share/owncloud/l10n/ca/contacts.po
819share/owncloud/l10n/ca/core.po 1148share/owncloud/l10n/ca/core.po
820share/owncloud/l10n/ca/files.po 1149share/owncloud/l10n/ca/files.po
 1150share/owncloud/l10n/ca/gallery.po
821share/owncloud/l10n/ca/media.po 1151share/owncloud/l10n/ca/media.po
822share/owncloud/l10n/ca/settings.po 1152share/owncloud/l10n/ca/settings.po
823share/owncloud/l10n/cs_CZ/calendar.po 1153share/owncloud/l10n/cs_CZ/calendar.po
824share/owncloud/l10n/cs_CZ/contacts.po 1154share/owncloud/l10n/cs_CZ/contacts.po
825share/owncloud/l10n/cs_CZ/core.po 1155share/owncloud/l10n/cs_CZ/core.po
826share/owncloud/l10n/cs_CZ/files.po 1156share/owncloud/l10n/cs_CZ/files.po
 1157share/owncloud/l10n/cs_CZ/gallery.po
827share/owncloud/l10n/cs_CZ/media.po 1158share/owncloud/l10n/cs_CZ/media.po
828share/owncloud/l10n/cs_CZ/settings.po 1159share/owncloud/l10n/cs_CZ/settings.po
829share/owncloud/l10n/da/calendar.po 1160share/owncloud/l10n/da/calendar.po
830share/owncloud/l10n/da/contacts.po 1161share/owncloud/l10n/da/contacts.po
831share/owncloud/l10n/da/core.po 1162share/owncloud/l10n/da/core.po
832share/owncloud/l10n/da/files.po 1163share/owncloud/l10n/da/files.po
 1164share/owncloud/l10n/da/gallery.po
833share/owncloud/l10n/da/media.po 1165share/owncloud/l10n/da/media.po
834share/owncloud/l10n/da/settings.po 1166share/owncloud/l10n/da/settings.po
835share/owncloud/l10n/de/calendar.po 1167share/owncloud/l10n/de/calendar.po
836share/owncloud/l10n/de/contacts.po 1168share/owncloud/l10n/de/contacts.po
837share/owncloud/l10n/de/core.po 1169share/owncloud/l10n/de/core.po
838share/owncloud/l10n/de/files.po 1170share/owncloud/l10n/de/files.po
 1171share/owncloud/l10n/de/gallery.po
839share/owncloud/l10n/de/media.po 1172share/owncloud/l10n/de/media.po
840share/owncloud/l10n/de/settings.po 1173share/owncloud/l10n/de/settings.po
 1174share/owncloud/l10n/de_DE/calendar.po
 1175share/owncloud/l10n/de_DE/core.po
 1176share/owncloud/l10n/de_DE/files.po
 1177share/owncloud/l10n/de_DE/media.po
 1178share/owncloud/l10n/de_DE/settings.po
841share/owncloud/l10n/el/calendar.po 1179share/owncloud/l10n/el/calendar.po
842share/owncloud/l10n/el/contacts.po 1180share/owncloud/l10n/el/contacts.po
843share/owncloud/l10n/el/core.po 1181share/owncloud/l10n/el/core.po
844share/owncloud/l10n/el/files.po 1182share/owncloud/l10n/el/files.po
 1183share/owncloud/l10n/el/gallery.po
845share/owncloud/l10n/el/media.po 1184share/owncloud/l10n/el/media.po
846share/owncloud/l10n/el/settings.po 1185share/owncloud/l10n/el/settings.po
 1186share/owncloud/l10n/eo/calendar.po
 1187share/owncloud/l10n/eo/contacts.po
 1188share/owncloud/l10n/eo/core.po
 1189share/owncloud/l10n/eo/files.po
 1190share/owncloud/l10n/eo/gallery.po
 1191share/owncloud/l10n/eo/media.po
 1192share/owncloud/l10n/eo/settings.po
847share/owncloud/l10n/es/calendar.po 1193share/owncloud/l10n/es/calendar.po
848share/owncloud/l10n/es/contacts.po 1194share/owncloud/l10n/es/contacts.po
849share/owncloud/l10n/es/core.po 1195share/owncloud/l10n/es/core.po
850share/owncloud/l10n/es/files.po 1196share/owncloud/l10n/es/files.po
 1197share/owncloud/l10n/es/gallery.po
851share/owncloud/l10n/es/media.po 1198share/owncloud/l10n/es/media.po
852share/owncloud/l10n/es/settings.po 1199share/owncloud/l10n/es/settings.po
853share/owncloud/l10n/et_EE/calendar.po 1200share/owncloud/l10n/et_EE/calendar.po
854share/owncloud/l10n/et_EE/contacts.po 1201share/owncloud/l10n/et_EE/contacts.po
855share/owncloud/l10n/et_EE/core.po 1202share/owncloud/l10n/et_EE/core.po
856share/owncloud/l10n/et_EE/files.po 1203share/owncloud/l10n/et_EE/files.po
 1204share/owncloud/l10n/et_EE/gallery.po
857share/owncloud/l10n/et_EE/media.po 1205share/owncloud/l10n/et_EE/media.po
858share/owncloud/l10n/et_EE/settings.po 1206share/owncloud/l10n/et_EE/settings.po
 1207share/owncloud/l10n/eu/calendar.po
 1208share/owncloud/l10n/eu/contacts.po
 1209share/owncloud/l10n/eu/core.po
 1210share/owncloud/l10n/eu/files.po
 1211share/owncloud/l10n/eu/gallery.po
 1212share/owncloud/l10n/eu/media.po
 1213share/owncloud/l10n/eu/settings.po
859share/owncloud/l10n/fr/calendar.po 1214share/owncloud/l10n/fr/calendar.po
860share/owncloud/l10n/fr/contacts.po 1215share/owncloud/l10n/fr/contacts.po
861share/owncloud/l10n/fr/core.po 1216share/owncloud/l10n/fr/core.po
862share/owncloud/l10n/fr/files.po 1217share/owncloud/l10n/fr/files.po
 1218share/owncloud/l10n/fr/gallery.po
863share/owncloud/l10n/fr/media.po 1219share/owncloud/l10n/fr/media.po
864share/owncloud/l10n/fr/settings.po 1220share/owncloud/l10n/fr/settings.po
 1221share/owncloud/l10n/gl/calendar.po
 1222share/owncloud/l10n/gl/contacts.po
 1223share/owncloud/l10n/gl/core.po
 1224share/owncloud/l10n/gl/files.po
 1225share/owncloud/l10n/gl/gallery.po
 1226share/owncloud/l10n/gl/media.po
 1227share/owncloud/l10n/gl/settings.po
 1228share/owncloud/l10n/he/calendar.po
 1229share/owncloud/l10n/he/contacts.po
 1230share/owncloud/l10n/he/core.po
 1231share/owncloud/l10n/he/files.po
 1232share/owncloud/l10n/he/gallery.po
 1233share/owncloud/l10n/he/media.po
 1234share/owncloud/l10n/he/settings.po
 1235share/owncloud/l10n/hr/calendar.po
 1236share/owncloud/l10n/hr/contacts.po
 1237share/owncloud/l10n/hr/core.po
 1238share/owncloud/l10n/hr/files.po
 1239share/owncloud/l10n/hr/gallery.po
 1240share/owncloud/l10n/hr/media.po
 1241share/owncloud/l10n/hr/settings.po
 1242share/owncloud/l10n/hu_HU/calendar.po
 1243share/owncloud/l10n/hu_HU/contacts.po
 1244share/owncloud/l10n/hu_HU/core.po
 1245share/owncloud/l10n/hu_HU/files.po
 1246share/owncloud/l10n/hu_HU/gallery.po
 1247share/owncloud/l10n/hu_HU/media.po
 1248share/owncloud/l10n/hu_HU/settings.po
 1249share/owncloud/l10n/hy/calendar.po
 1250share/owncloud/l10n/hy/contacts.po
 1251share/owncloud/l10n/hy/core.po
 1252share/owncloud/l10n/hy/files.po
 1253share/owncloud/l10n/hy/gallery.po
 1254share/owncloud/l10n/hy/media.po
 1255share/owncloud/l10n/hy/settings.po
 1256share/owncloud/l10n/ia/calendar.po
 1257share/owncloud/l10n/ia/contacts.po
 1258share/owncloud/l10n/ia/core.po
 1259share/owncloud/l10n/ia/files.po
 1260share/owncloud/l10n/ia/gallery.po
 1261share/owncloud/l10n/ia/media.po
 1262share/owncloud/l10n/ia/settings.po
865share/owncloud/l10n/id/calendar.po 1263share/owncloud/l10n/id/calendar.po
866share/owncloud/l10n/id/contacts.po 1264share/owncloud/l10n/id/contacts.po
867share/owncloud/l10n/id/core.po 1265share/owncloud/l10n/id/core.po
868share/owncloud/l10n/id/files.po 1266share/owncloud/l10n/id/files.po
 1267share/owncloud/l10n/id/gallery.po
869share/owncloud/l10n/id/media.po 1268share/owncloud/l10n/id/media.po
870share/owncloud/l10n/id/settings.po 1269share/owncloud/l10n/id/settings.po
871share/owncloud/l10n/it/calendar.po 1270share/owncloud/l10n/it/calendar.po
872share/owncloud/l10n/it/contacts.po 1271share/owncloud/l10n/it/contacts.po
873share/owncloud/l10n/it/core.po 1272share/owncloud/l10n/it/core.po
874share/owncloud/l10n/it/files.po 1273share/owncloud/l10n/it/files.po
 1274share/owncloud/l10n/it/gallery.po
875share/owncloud/l10n/it/media.po 1275share/owncloud/l10n/it/media.po
876share/owncloud/l10n/it/settings.po 1276share/owncloud/l10n/it/settings.po
 1277share/owncloud/l10n/ja_JP/calendar.po
 1278share/owncloud/l10n/ja_JP/contacts.po
 1279share/owncloud/l10n/ja_JP/core.po
 1280share/owncloud/l10n/ja_JP/files.po
 1281share/owncloud/l10n/ja_JP/gallery.po
 1282share/owncloud/l10n/ja_JP/media.po
 1283share/owncloud/l10n/ja_JP/settings.po
877share/owncloud/l10n/l10n.pl 1284share/owncloud/l10n/l10n.pl
878share/owncloud/l10n/lb/calendar.po 1285share/owncloud/l10n/lb/calendar.po
879share/owncloud/l10n/lb/contacts.po 1286share/owncloud/l10n/lb/contacts.po
880share/owncloud/l10n/lb/core.po 1287share/owncloud/l10n/lb/core.po
881share/owncloud/l10n/lb/files.po 1288share/owncloud/l10n/lb/files.po
 1289share/owncloud/l10n/lb/gallery.po
882share/owncloud/l10n/lb/media.po 1290share/owncloud/l10n/lb/media.po
883share/owncloud/l10n/lb/settings.po 1291share/owncloud/l10n/lb/settings.po
 1292share/owncloud/l10n/lt_LT/calendar.po
 1293share/owncloud/l10n/lt_LT/contacts.po
 1294share/owncloud/l10n/lt_LT/core.po
 1295share/owncloud/l10n/lt_LT/files.po
 1296share/owncloud/l10n/lt_LT/gallery.po
 1297share/owncloud/l10n/lt_LT/media.po
 1298share/owncloud/l10n/lt_LT/settings.po
884share/owncloud/l10n/ms_MY/calendar.po 1299share/owncloud/l10n/ms_MY/calendar.po
885share/owncloud/l10n/ms_MY/contacts.po 1300share/owncloud/l10n/ms_MY/contacts.po
886share/owncloud/l10n/ms_MY/core.po 1301share/owncloud/l10n/ms_MY/core.po
887share/owncloud/l10n/ms_MY/files.po 1302share/owncloud/l10n/ms_MY/files.po
 1303share/owncloud/l10n/ms_MY/gallery.po
888share/owncloud/l10n/ms_MY/media.po 1304share/owncloud/l10n/ms_MY/media.po
889share/owncloud/l10n/ms_MY/settings.po 1305share/owncloud/l10n/ms_MY/settings.po
890share/owncloud/l10n/nb_NO/calendar.po 1306share/owncloud/l10n/nb_NO/calendar.po
891share/owncloud/l10n/nb_NO/contacts.po 1307share/owncloud/l10n/nb_NO/contacts.po
892share/owncloud/l10n/nb_NO/core.po 1308share/owncloud/l10n/nb_NO/core.po
893share/owncloud/l10n/nb_NO/files.po 1309share/owncloud/l10n/nb_NO/files.po
 1310share/owncloud/l10n/nb_NO/gallery.po
894share/owncloud/l10n/nb_NO/media.po 1311share/owncloud/l10n/nb_NO/media.po
895share/owncloud/l10n/nb_NO/settings.po 1312share/owncloud/l10n/nb_NO/settings.po
896share/owncloud/l10n/nl/calendar.po 1313share/owncloud/l10n/nl/calendar.po
897share/owncloud/l10n/nl/contacts.po 1314share/owncloud/l10n/nl/contacts.po
898share/owncloud/l10n/nl/core.po 1315share/owncloud/l10n/nl/core.po
899share/owncloud/l10n/nl/files.po 1316share/owncloud/l10n/nl/files.po
 1317share/owncloud/l10n/nl/gallery.po
900share/owncloud/l10n/nl/media.po 1318share/owncloud/l10n/nl/media.po
901share/owncloud/l10n/nl/settings.po 1319share/owncloud/l10n/nl/settings.po
 1320share/owncloud/l10n/nn_NO/calendar.po
 1321share/owncloud/l10n/nn_NO/contacts.po
 1322share/owncloud/l10n/nn_NO/core.po
 1323share/owncloud/l10n/nn_NO/files.po
 1324share/owncloud/l10n/nn_NO/gallery.po
 1325share/owncloud/l10n/nn_NO/media.po
 1326share/owncloud/l10n/nn_NO/settings.po
902share/owncloud/l10n/pl/calendar.po 1327share/owncloud/l10n/pl/calendar.po
903share/owncloud/l10n/pl/contacts.po 1328share/owncloud/l10n/pl/contacts.po
904share/owncloud/l10n/pl/core.po 1329share/owncloud/l10n/pl/core.po
905share/owncloud/l10n/pl/files.po 1330share/owncloud/l10n/pl/files.po
 1331share/owncloud/l10n/pl/gallery.po
906share/owncloud/l10n/pl/media.po 1332share/owncloud/l10n/pl/media.po
907share/owncloud/l10n/pl/settings.po 1333share/owncloud/l10n/pl/settings.po
908share/owncloud/l10n/pt_BR/calendar.po 1334share/owncloud/l10n/pt_BR/calendar.po
909share/owncloud/l10n/pt_BR/contacts.po 1335share/owncloud/l10n/pt_BR/contacts.po
910share/owncloud/l10n/pt_BR/core.po 1336share/owncloud/l10n/pt_BR/core.po
911share/owncloud/l10n/pt_BR/files.po 1337share/owncloud/l10n/pt_BR/files.po
 1338share/owncloud/l10n/pt_BR/gallery.po
912share/owncloud/l10n/pt_BR/media.po 1339share/owncloud/l10n/pt_BR/media.po
913share/owncloud/l10n/pt_BR/settings.po 1340share/owncloud/l10n/pt_BR/settings.po
914share/owncloud/l10n/pt_PT/calendar.po 1341share/owncloud/l10n/pt_PT/calendar.po
915share/owncloud/l10n/pt_PT/contacts.po 1342share/owncloud/l10n/pt_PT/contacts.po
916share/owncloud/l10n/pt_PT/core.po 1343share/owncloud/l10n/pt_PT/core.po
917share/owncloud/l10n/pt_PT/files.po 1344share/owncloud/l10n/pt_PT/files.po
 1345share/owncloud/l10n/pt_PT/gallery.po
918share/owncloud/l10n/pt_PT/media.po 1346share/owncloud/l10n/pt_PT/media.po
919share/owncloud/l10n/pt_PT/settings.po 1347share/owncloud/l10n/pt_PT/settings.po
920share/owncloud/l10n/ro/calendar.po 1348share/owncloud/l10n/ro/calendar.po
921share/owncloud/l10n/ro/contacts.po 1349share/owncloud/l10n/ro/contacts.po
922share/owncloud/l10n/ro/core.po 1350share/owncloud/l10n/ro/core.po
923share/owncloud/l10n/ro/files.po 1351share/owncloud/l10n/ro/files.po
 1352share/owncloud/l10n/ro/gallery.po
924share/owncloud/l10n/ro/media.po 1353share/owncloud/l10n/ro/media.po
925share/owncloud/l10n/ro/settings.po 1354share/owncloud/l10n/ro/settings.po
926share/owncloud/l10n/ru/calendar.po 1355share/owncloud/l10n/ru/calendar.po
927share/owncloud/l10n/ru/contacts.po 1356share/owncloud/l10n/ru/contacts.po
928share/owncloud/l10n/ru/core.po 1357share/owncloud/l10n/ru/core.po
929share/owncloud/l10n/ru/files.po 1358share/owncloud/l10n/ru/files.po
 1359share/owncloud/l10n/ru/gallery.po
930share/owncloud/l10n/ru/media.po 1360share/owncloud/l10n/ru/media.po
931share/owncloud/l10n/ru/settings.po 1361share/owncloud/l10n/ru/settings.po
 1362share/owncloud/l10n/sk_SK/calendar.po
 1363share/owncloud/l10n/sk_SK/contacts.po
 1364share/owncloud/l10n/sk_SK/core.po
 1365share/owncloud/l10n/sk_SK/files.po
 1366share/owncloud/l10n/sk_SK/gallery.po
 1367share/owncloud/l10n/sk_SK/media.po
 1368share/owncloud/l10n/sk_SK/settings.po
 1369share/owncloud/l10n/sl/calendar.po
 1370share/owncloud/l10n/sl/contacts.po
 1371share/owncloud/l10n/sl/core.po
 1372share/owncloud/l10n/sl/files.po
 1373share/owncloud/l10n/sl/gallery.po
 1374share/owncloud/l10n/sl/media.po
 1375share/owncloud/l10n/sl/settings.po
932share/owncloud/l10n/sr/calendar.po 1376share/owncloud/l10n/sr/calendar.po
933share/owncloud/l10n/sr/contacts.po 1377share/owncloud/l10n/sr/contacts.po
934share/owncloud/l10n/sr/core.po 1378share/owncloud/l10n/sr/core.po
935share/owncloud/l10n/sr/files.po 1379share/owncloud/l10n/sr/files.po
 1380share/owncloud/l10n/sr/gallery.po
936share/owncloud/l10n/sr/media.po 1381share/owncloud/l10n/sr/media.po
937share/owncloud/l10n/sr/settings.po 1382share/owncloud/l10n/sr/settings.po
938share/owncloud/l10n/sr@latin/calendar.po 1383share/owncloud/l10n/sr@latin/calendar.po
939share/owncloud/l10n/sr@latin/contacts.po 1384share/owncloud/l10n/sr@latin/contacts.po
940share/owncloud/l10n/sr@latin/core.po 1385share/owncloud/l10n/sr@latin/core.po
941share/owncloud/l10n/sr@latin/files.po 1386share/owncloud/l10n/sr@latin/files.po
 1387share/owncloud/l10n/sr@latin/gallery.po
942share/owncloud/l10n/sr@latin/media.po 1388share/owncloud/l10n/sr@latin/media.po
943share/owncloud/l10n/sr@latin/settings.po 1389share/owncloud/l10n/sr@latin/settings.po
944share/owncloud/l10n/sv/calendar.po 1390share/owncloud/l10n/sv/calendar.po
945share/owncloud/l10n/sv/contacts.po 1391share/owncloud/l10n/sv/contacts.po
946share/owncloud/l10n/sv/core.po 1392share/owncloud/l10n/sv/core.po
947share/owncloud/l10n/sv/files.po 1393share/owncloud/l10n/sv/files.po
 1394share/owncloud/l10n/sv/gallery.po
948share/owncloud/l10n/sv/media.po 1395share/owncloud/l10n/sv/media.po
949share/owncloud/l10n/sv/settings.po 1396share/owncloud/l10n/sv/settings.po
950share/owncloud/l10n/templates/calendar.pot 1397share/owncloud/l10n/templates/calendar.pot
951share/owncloud/l10n/templates/contacts.pot 1398share/owncloud/l10n/templates/contacts.pot
952share/owncloud/l10n/templates/core.pot 1399share/owncloud/l10n/templates/core.pot
953share/owncloud/l10n/templates/files.pot 1400share/owncloud/l10n/templates/files.pot
 1401share/owncloud/l10n/templates/gallery.pot
954share/owncloud/l10n/templates/media.pot 1402share/owncloud/l10n/templates/media.pot
955share/owncloud/l10n/templates/settings.pot 1403share/owncloud/l10n/templates/settings.pot
 1404share/owncloud/l10n/th_TH/calendar.po
 1405share/owncloud/l10n/th_TH/contacts.po
 1406share/owncloud/l10n/th_TH/core.po
 1407share/owncloud/l10n/th_TH/files.po
 1408share/owncloud/l10n/th_TH/gallery.po
 1409share/owncloud/l10n/th_TH/media.po
 1410share/owncloud/l10n/th_TH/settings.po
 1411share/owncloud/l10n/tr/calendar.po
 1412share/owncloud/l10n/tr/contacts.po
 1413share/owncloud/l10n/tr/core.po
 1414share/owncloud/l10n/tr/files.po
 1415share/owncloud/l10n/tr/gallery.po
 1416share/owncloud/l10n/tr/media.po
 1417share/owncloud/l10n/tr/settings.po
 1418share/owncloud/l10n/uk/calendar.po
 1419share/owncloud/l10n/uk/contacts.po
 1420share/owncloud/l10n/uk/core.po
 1421share/owncloud/l10n/uk/files.po
 1422share/owncloud/l10n/uk/gallery.po
 1423share/owncloud/l10n/uk/media.po
 1424share/owncloud/l10n/uk/settings.po
956share/owncloud/l10n/zh_CN/calendar.po 1425share/owncloud/l10n/zh_CN/calendar.po
957share/owncloud/l10n/zh_CN/contacts.po 1426share/owncloud/l10n/zh_CN/contacts.po
958share/owncloud/l10n/zh_CN/core.po 1427share/owncloud/l10n/zh_CN/core.po
959share/owncloud/l10n/zh_CN/files.po 1428share/owncloud/l10n/zh_CN/files.po
 1429share/owncloud/l10n/zh_CN/gallery.po
960share/owncloud/l10n/zh_CN/media.po 1430share/owncloud/l10n/zh_CN/media.po
961share/owncloud/l10n/zh_CN/settings.po 1431share/owncloud/l10n/zh_CN/settings.po
962share/owncloud/lib/MDB2/Driver/Datatype/sqlite3.php 1432share/owncloud/lib/MDB2/Driver/Datatype/sqlite3.php
963share/owncloud/lib/MDB2/Driver/Function/sqlite3.php 1433share/owncloud/lib/MDB2/Driver/Function/sqlite3.php
964share/owncloud/lib/MDB2/Driver/Manager/sqlite3.php 1434share/owncloud/lib/MDB2/Driver/Manager/sqlite3.php
965share/owncloud/lib/MDB2/Driver/Native/sqlite3.php 1435share/owncloud/lib/MDB2/Driver/Native/sqlite3.php
966share/owncloud/lib/MDB2/Driver/Reverse/sqlite3.php 1436share/owncloud/lib/MDB2/Driver/Reverse/sqlite3.php
967share/owncloud/lib/MDB2/Driver/sqlite3.php 1437share/owncloud/lib/MDB2/Driver/sqlite3.php
968share/owncloud/lib/app.php 1438share/owncloud/lib/app.php
969share/owncloud/lib/appconfig.php 1439share/owncloud/lib/appconfig.php
970share/owncloud/lib/base.php 1440share/owncloud/lib/base.php
971share/owncloud/lib/config.php 1441share/owncloud/lib/config.php
972share/owncloud/lib/connect.php 1442share/owncloud/lib/connect.php
@@ -981,108 +1451,134 @@ share/owncloud/lib/db.php @@ -981,108 +1451,134 @@ share/owncloud/lib/db.php
981share/owncloud/lib/fakedirstream.php 1451share/owncloud/lib/fakedirstream.php
982share/owncloud/lib/fileproxy.php 1452share/owncloud/lib/fileproxy.php
983share/owncloud/lib/fileproxy/quota.php 1453share/owncloud/lib/fileproxy/quota.php
984share/owncloud/lib/files.php 1454share/owncloud/lib/files.php
985share/owncloud/lib/filestorage.php 1455share/owncloud/lib/filestorage.php
986share/owncloud/lib/filestorage/local.php 1456share/owncloud/lib/filestorage/local.php
987share/owncloud/lib/filestorage/remote.php 1457share/owncloud/lib/filestorage/remote.php
988share/owncloud/lib/filesystem.php 1458share/owncloud/lib/filesystem.php
989share/owncloud/lib/group.php 1459share/owncloud/lib/group.php
990share/owncloud/lib/group/backend.php 1460share/owncloud/lib/group/backend.php
991share/owncloud/lib/group/database.php 1461share/owncloud/lib/group/database.php
992share/owncloud/lib/helper.php 1462share/owncloud/lib/helper.php
993share/owncloud/lib/hook.php 1463share/owncloud/lib/hook.php
 1464share/owncloud/lib/image.php
994share/owncloud/lib/installer.php 1465share/owncloud/lib/installer.php
995share/owncloud/lib/json.php 1466share/owncloud/lib/json.php
996share/owncloud/lib/l10n.php 1467share/owncloud/lib/l10n.php
 1468share/owncloud/lib/log.php
 1469share/owncloud/lib/mimetypes.fixlist.php
997share/owncloud/lib/mimetypes.list.php 1470share/owncloud/lib/mimetypes.list.php
998share/owncloud/lib/ocs.php 1471share/owncloud/lib/ocs.php
999share/owncloud/lib/ocsclient.php 1472share/owncloud/lib/ocsclient.php
1000share/owncloud/lib/preferences.php 1473share/owncloud/lib/preferences.php
1001share/owncloud/lib/remote/cloud.php 1474share/owncloud/lib/remote/cloud.php
1002share/owncloud/lib/search.php 1475share/owncloud/lib/search.php
1003share/owncloud/lib/search/provider.php 1476share/owncloud/lib/search/provider.php
1004share/owncloud/lib/search/provider/file.php 1477share/owncloud/lib/search/provider/file.php
1005share/owncloud/lib/search/result.php 1478share/owncloud/lib/search/result.php
1006share/owncloud/lib/setup.php 1479share/owncloud/lib/setup.php
1007share/owncloud/lib/template.php 1480share/owncloud/lib/template.php
1008share/owncloud/lib/testcase.php 1481share/owncloud/lib/testcase.php
1009share/owncloud/lib/updater.php 1482share/owncloud/lib/updater.php
1010share/owncloud/lib/user.php 1483share/owncloud/lib/user.php
1011share/owncloud/lib/user/backend.php 1484share/owncloud/lib/user/backend.php
1012share/owncloud/lib/user/database.php 1485share/owncloud/lib/user/database.php
1013share/owncloud/lib/user/example.php 1486share/owncloud/lib/user/example.php
1014share/owncloud/lib/util.php 1487share/owncloud/lib/util.php
 1488share/owncloud/lib/vobject.php
1015share/owncloud/ocs/providers.php 1489share/owncloud/ocs/providers.php
1016share/owncloud/ocs/v1.php 1490share/owncloud/ocs/v1.php
1017share/owncloud/search/ajax/search.php 1491share/owncloud/search/ajax/search.php
1018share/owncloud/search/appinfo/app.php 1492share/owncloud/search/appinfo/app.php
1019share/owncloud/search/css/results.css 1493share/owncloud/search/css/results.css
1020share/owncloud/search/index.php 1494share/owncloud/search/index.php
1021share/owncloud/search/js/result.js 1495share/owncloud/search/js/result.js
1022share/owncloud/search/templates/index.php 1496share/owncloud/search/templates/index.php
1023share/owncloud/search/templates/part.results.php 1497share/owncloud/search/templates/part.results.php
1024share/owncloud/settings/admin.php 1498share/owncloud/settings/admin.php
1025share/owncloud/settings/ajax/changepassword.php 1499share/owncloud/settings/ajax/changepassword.php
1026share/owncloud/settings/ajax/creategroup.php 1500share/owncloud/settings/ajax/creategroup.php
1027share/owncloud/settings/ajax/createuser.php 1501share/owncloud/settings/ajax/createuser.php
1028share/owncloud/settings/ajax/disableapp.php 1502share/owncloud/settings/ajax/disableapp.php
1029share/owncloud/settings/ajax/enableapp.php 1503share/owncloud/settings/ajax/enableapp.php
1030share/owncloud/settings/ajax/lostpassword.php 1504share/owncloud/settings/ajax/lostpassword.php
1031share/owncloud/settings/ajax/openid.php 1505share/owncloud/settings/ajax/openid.php
1032share/owncloud/settings/ajax/removegroup.php 1506share/owncloud/settings/ajax/removegroup.php
1033share/owncloud/settings/ajax/removeuser.php 1507share/owncloud/settings/ajax/removeuser.php
1034share/owncloud/settings/ajax/setlanguage.php 1508share/owncloud/settings/ajax/setlanguage.php
 1509share/owncloud/settings/ajax/setloglevel.php
1035share/owncloud/settings/ajax/setquota.php 1510share/owncloud/settings/ajax/setquota.php
1036share/owncloud/settings/ajax/togglegroups.php 1511share/owncloud/settings/ajax/togglegroups.php
1037share/owncloud/settings/appinfo/app.php 1512share/owncloud/settings/appinfo/app.php
1038share/owncloud/settings/apps.php 1513share/owncloud/settings/apps.php
1039share/owncloud/settings/css/settings.css 1514share/owncloud/settings/css/settings.css
1040share/owncloud/settings/help.php 1515share/owncloud/settings/help.php
1041share/owncloud/settings/img/admin.png 1516share/owncloud/settings/img/admin.png
1042share/owncloud/settings/img/admin.svg 1517share/owncloud/settings/img/admin.svg
1043share/owncloud/settings/img/apps.png 1518share/owncloud/settings/img/apps.png
1044share/owncloud/settings/img/apps.svg 1519share/owncloud/settings/img/apps.svg
1045share/owncloud/settings/img/help.png 1520share/owncloud/settings/img/help.png
1046share/owncloud/settings/img/help.svg 1521share/owncloud/settings/img/help.svg
 1522share/owncloud/settings/img/log Icon License
 1523share/owncloud/settings/img/log.png
 1524share/owncloud/settings/img/log.svg
1047share/owncloud/settings/img/personal.png 1525share/owncloud/settings/img/personal.png
1048share/owncloud/settings/img/personal.svg 1526share/owncloud/settings/img/personal.svg
1049share/owncloud/settings/img/users.png 1527share/owncloud/settings/img/users.png
1050share/owncloud/settings/img/users.svg 1528share/owncloud/settings/img/users.svg
 1529share/owncloud/settings/js/admin.js
1051share/owncloud/settings/js/apps.js 1530share/owncloud/settings/js/apps.js
1052share/owncloud/settings/js/personal.js 1531share/owncloud/settings/js/personal.js
1053share/owncloud/settings/js/users.js 1532share/owncloud/settings/js/users.js
 1533share/owncloud/settings/l10n/ar.php
1054share/owncloud/settings/l10n/bg_BG.php 1534share/owncloud/settings/l10n/bg_BG.php
1055share/owncloud/settings/l10n/ca.php 1535share/owncloud/settings/l10n/ca.php
1056share/owncloud/settings/l10n/cs_CZ.php 1536share/owncloud/settings/l10n/cs_CZ.php
1057share/owncloud/settings/l10n/da.php 1537share/owncloud/settings/l10n/da.php
1058share/owncloud/settings/l10n/de.php 1538share/owncloud/settings/l10n/de.php
1059share/owncloud/settings/l10n/el.php 1539share/owncloud/settings/l10n/el.php
 1540share/owncloud/settings/l10n/eo.php
1060share/owncloud/settings/l10n/es.php 1541share/owncloud/settings/l10n/es.php
1061share/owncloud/settings/l10n/et_EE.php 1542share/owncloud/settings/l10n/et_EE.php
 1543share/owncloud/settings/l10n/eu.php
1062share/owncloud/settings/l10n/fr.php 1544share/owncloud/settings/l10n/fr.php
 1545share/owncloud/settings/l10n/gl.php
 1546share/owncloud/settings/l10n/he.php
 1547share/owncloud/settings/l10n/hr.php
 1548share/owncloud/settings/l10n/hu_HU.php
 1549share/owncloud/settings/l10n/ia.php
1063share/owncloud/settings/l10n/id.php 1550share/owncloud/settings/l10n/id.php
1064share/owncloud/settings/l10n/it.php 1551share/owncloud/settings/l10n/it.php
 1552share/owncloud/settings/l10n/ja_JP.php
1065share/owncloud/settings/l10n/lb.php 1553share/owncloud/settings/l10n/lb.php
 1554share/owncloud/settings/l10n/lt_LT.php
1066share/owncloud/settings/l10n/ms_MY.php 1555share/owncloud/settings/l10n/ms_MY.php
1067share/owncloud/settings/l10n/nb_NO.php 1556share/owncloud/settings/l10n/nb_NO.php
1068share/owncloud/settings/l10n/nl.php 1557share/owncloud/settings/l10n/nl.php
 1558share/owncloud/settings/l10n/nn_NO.php
1069share/owncloud/settings/l10n/pl.php 1559share/owncloud/settings/l10n/pl.php
1070share/owncloud/settings/l10n/pt_BR.php 1560share/owncloud/settings/l10n/pt_BR.php
1071share/owncloud/settings/l10n/ro.php 1561share/owncloud/settings/l10n/ro.php
1072share/owncloud/settings/l10n/ru.php 1562share/owncloud/settings/l10n/ru.php
 1563share/owncloud/settings/l10n/sk_SK.php
 1564share/owncloud/settings/l10n/sl.php
1073share/owncloud/settings/l10n/sr.php 1565share/owncloud/settings/l10n/sr.php
1074share/owncloud/settings/l10n/sr@latin.php 1566share/owncloud/settings/l10n/sr@latin.php
1075share/owncloud/settings/l10n/sv.php 1567share/owncloud/settings/l10n/sv.php
 1568share/owncloud/settings/l10n/th_TH.php
 1569share/owncloud/settings/l10n/tr.php
1076share/owncloud/settings/l10n/zh_CN.php 1570share/owncloud/settings/l10n/zh_CN.php
1077share/owncloud/settings/languageCodes.php 1571share/owncloud/settings/languageCodes.php
 1572share/owncloud/settings/log.php
1078share/owncloud/settings/personal.php 1573share/owncloud/settings/personal.php
1079share/owncloud/settings/settings.php 1574share/owncloud/settings/settings.php
1080share/owncloud/settings/templates/admin.php 1575share/owncloud/settings/templates/admin.php
1081share/owncloud/settings/templates/apps.php 1576share/owncloud/settings/templates/apps.php
1082share/owncloud/settings/templates/help.php 1577share/owncloud/settings/templates/help.php
 1578share/owncloud/settings/templates/log.php
1083share/owncloud/settings/templates/personal.php 1579share/owncloud/settings/templates/personal.php
1084share/owncloud/settings/templates/settings.php 1580share/owncloud/settings/templates/settings.php
1085share/owncloud/settings/templates/users.php 1581share/owncloud/settings/templates/users.php
1086share/owncloud/settings/users.php 1582share/owncloud/settings/users.php
1087share/owncloud/status.php 1583share/owncloud/status.php
1088@pkgdir share/owncloud/data 1584@pkgdir share/owncloud/data

cvs diff -r1.1.1.1 -r1.2 pkgsrc/www/php-owncloud/distinfo (expand / switch to unified diff)

--- pkgsrc/www/php-owncloud/distinfo 2011/12/11 14:29:21 1.1.1.1
+++ pkgsrc/www/php-owncloud/distinfo 2012/02/17 16:40:23 1.2
@@ -1,5 +1,5 @@ @@ -1,5 +1,5 @@
1$NetBSD: distinfo,v 1.1.1.1 2011/12/11 14:29:21 ryoon Exp $ 1$NetBSD: distinfo,v 1.2 2012/02/17 16:40:23 ryoon Exp $
2 2
3SHA1 (owncloud-2.0.1.tar.bz2) = a3223e5861ddf5a260e8d99a4280ddbc768e04cf 3SHA1 (owncloud-3.0.0.tar.bz2) = e7645f796cd4f816213065e625e0698407bf5480
4RMD160 (owncloud-2.0.1.tar.bz2) = 84d1fab96a34b365fc36f4fbba05a8339540a1f5 4RMD160 (owncloud-3.0.0.tar.bz2) = 965a09910723681d06b0834067cdc0fbfc8fb95d
5Size (owncloud-2.0.1.tar.bz2) = 1152652 bytes 5Size (owncloud-3.0.0.tar.bz2) = 2587490 bytes