From owner-svn-ports-head@freebsd.org Tue Dec 5 21:05:15 2017 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5524CE81FE7; Tue, 5 Dec 2017 21:05:15 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 537367007D; Tue, 5 Dec 2017 21:05:13 +0000 (UTC) (envelope-from brnrd@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id vB5L5Dq1010740; Tue, 5 Dec 2017 21:05:13 GMT (envelope-from brnrd@FreeBSD.org) Received: (from brnrd@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id vB5L5CAB010734; Tue, 5 Dec 2017 21:05:12 GMT (envelope-from brnrd@FreeBSD.org) Message-Id: <201712052105.vB5L5CAB010734@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: brnrd set sender to brnrd@FreeBSD.org using -f From: Bernard Spil Date: Tue, 5 Dec 2017 21:05:12 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r455625 - in head/www: . nextcloud-calendar nextcloud-notes X-SVN-Group: ports-head X-SVN-Commit-Author: brnrd X-SVN-Commit-Paths: in head/www: . nextcloud-calendar nextcloud-notes X-SVN-Commit-Revision: 455625 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 05 Dec 2017 21:05:15 -0000 Author: brnrd Date: Tue Dec 5 21:05:12 2017 New Revision: 455625 URL: https://svnweb.freebsd.org/changeset/ports/455625 Log: www/nextcloud-calendar: Add nextcloud Notes app - Fix pkg-descr of calendar app while here Added: head/www/nextcloud-notes/ head/www/nextcloud-notes/Makefile (contents, props changed) head/www/nextcloud-notes/distinfo (contents, props changed) head/www/nextcloud-notes/pkg-descr (contents, props changed) head/www/nextcloud-notes/pkg-plist (contents, props changed) Modified: head/www/Makefile head/www/nextcloud-calendar/Makefile Modified: head/www/Makefile ============================================================================== --- head/www/Makefile Tue Dec 5 21:04:59 2017 (r455624) +++ head/www/Makefile Tue Dec 5 21:05:12 2017 (r455625) @@ -540,6 +540,7 @@ SUBDIR += nextcloud SUBDIR += nextcloud-calendar SUBDIR += nextcloud-contacts + SUBDIR += nextcloud-notes SUBDIR += nghttp2 SUBDIR += nginx SUBDIR += nginx-devel Modified: head/www/nextcloud-calendar/Makefile ============================================================================== --- head/www/nextcloud-calendar/Makefile Tue Dec 5 21:04:59 2017 (r455624) +++ head/www/nextcloud-calendar/Makefile Tue Dec 5 21:05:12 2017 (r455625) @@ -11,7 +11,7 @@ DISTNAME= ${PORTNAME} DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} MAINTAINER= brnrd@freebsd.org -COMMENT= Contacts app for Nextcloud +COMMENT= Calendar app for Nextcloud LICENSE= AGPLv3 Added: head/www/nextcloud-notes/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nextcloud-notes/Makefile Tue Dec 5 21:05:12 2017 (r455625) @@ -0,0 +1,35 @@ +# Created by: Bernard Spil +# $FreeBSD$ + +PORTNAME= notes +PORTVERSION= 2.3.2 +DISTVERSIONPREFIX= v +CATEGORIES= www +MASTER_SITES= https://github.com/${PKGNAMEPREFIX:S/-//}/${PORTNAME}/releases/download/${DISTVERSIONPREFIX}${PORTVERSION}/ +PKGNAMEPREFIX= nextcloud- +DISTNAME= ${PORTNAME} +DIST_SUBDIR= ${PKGNAMEPREFIX:S/-//}/${DISTNAME}-${DISTVERSIONPREFIX}${PORTVERSION} + +MAINTAINER= brnrd@freebsd.org +COMMENT= Notes app for Nextcloud + +LICENSE= AGPLv3 + +RUN_DEPENDS= nextcloud>=12:www/nextcloud + +NO_BUILD= yes +NO_ARCH= yes + +NEXTCLOUD_USERNAME?= ${WWWOWN} +NEXTCLOUD_GROUPNAME?= ${WWWGRP} + +PLIST_SUB= NEXTCLOUD_USERNAME=${NEXTCLOUD_USERNAME} \ + NEXTCLOUD_GROUPNAME=${NEXTCLOUD_GROUPNAME} + +WWWDIR= ${PREFIX}/www/nextcloud/apps/${PORTNAME} + +do-install: + ${MKDIR} ${STAGEDIR}${WWWDIR} + (cd ${WRKSRC} && ${COPYTREE_SHARE} . ${STAGEDIR}${WWWDIR}) + +.include Added: head/www/nextcloud-notes/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nextcloud-notes/distinfo Tue Dec 5 21:05:12 2017 (r455625) @@ -0,0 +1,3 @@ +TIMESTAMP = 1512507750 +SHA256 (nextcloud/notes-v2.3.2/notes.tar.gz) = 381f9d03b1ad0181c6bc737e3b54d7cd9e6b90332e66cabaa27057ae0eab60eb +SIZE (nextcloud/notes-v2.3.2/notes.tar.gz) = 1788432 Added: head/www/nextcloud-notes/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nextcloud-notes/pkg-descr Tue Dec 5 21:05:12 2017 (r455625) @@ -0,0 +1,8 @@ +The Notes app is a distraction free notes taking app. It supports +formatting using Markdown syntax. Notes are saved as files in your +Nextcloud, so you can view and edit them with every Nextcloud client. +Furthermore, a separate RESTful API allows for an easy integration into +third-party apps (currently, there are notes apps for Android and iOS which +allow convenient access to your Nextcloud notes). Further features include +marking notes as favorites and future versions will provide categories for +better organization. Added: head/www/nextcloud-notes/pkg-plist ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/nextcloud-notes/pkg-plist Tue Dec 5 21:05:12 2017 (r455625) @@ -0,0 +1,384 @@ +@owner %%NEXTCLOUD_USERNAME%% +@group %%NEXTCLOUD_GROUPNAME%% +%%WWWDIR%%/AUTHORS +%%WWWDIR%%/COPYING +%%WWWDIR%%/README.md +%%WWWDIR%%/appinfo/app.php +%%WWWDIR%%/appinfo/database.xml +%%WWWDIR%%/appinfo/info.xml +%%WWWDIR%%/appinfo/routes.php +%%WWWDIR%%/appinfo/signature.json +%%WWWDIR%%/controller/errors.php +%%WWWDIR%%/controller/notesapicontroller.php +%%WWWDIR%%/controller/notescontroller.php +%%WWWDIR%%/controller/pagecontroller.php +%%WWWDIR%%/css/notes.css +%%WWWDIR%%/css/vendor/bootstrap/tooltip.css +%%WWWDIR%%/db/meta.php +%%WWWDIR%%/db/metamapper.php +%%WWWDIR%%/db/note.php +%%WWWDIR%%/img/favicon-mask.svg +%%WWWDIR%%/img/favicon-touch.png +%%WWWDIR%%/img/favicon-touch.svg +%%WWWDIR%%/img/favicon.ico +%%WWWDIR%%/img/favicon.png +%%WWWDIR%%/img/favicon.svg +%%WWWDIR%%/img/loading.gif +%%WWWDIR%%/img/notes.svg +%%WWWDIR%%/js/.bowerrc +%%WWWDIR%%/js/.jshintrc +%%WWWDIR%%/js/README.md +%%WWWDIR%%/js/app/controllers/appcontroller.js +%%WWWDIR%%/js/app/controllers/notecontroller.js +%%WWWDIR%%/js/app/controllers/notecontroller.js.orig +%%WWWDIR%%/js/app/controllers/notescontroller.js +%%WWWDIR%%/js/app/directives/autofocus.js +%%WWWDIR%%/js/app/directives/editor.js +%%WWWDIR%%/js/app/directives/tooltip.js +%%WWWDIR%%/js/app/filters/and.js +%%WWWDIR%%/js/app/filters/noteTitle.js +%%WWWDIR%%/js/app/filters/wordCount.js +%%WWWDIR%%/js/app/services/debounce.js +%%WWWDIR%%/js/app/services/is.js +%%WWWDIR%%/js/app/services/notesmodel.js +%%WWWDIR%%/js/app/services/savequeue.js +%%WWWDIR%%/js/app/services/urlFinder.js +%%WWWDIR%%/js/config/app.js +%%WWWDIR%%/js/public/app.min.js +%%WWWDIR%%/js/public/app.min.js.map +%%WWWDIR%%/js/vendor/angular-mocks/.bower.json +%%WWWDIR%%/js/vendor/angular-mocks/README.md +%%WWWDIR%%/js/vendor/angular-mocks/angular-mocks.js +%%WWWDIR%%/js/vendor/angular-mocks/bower.json +%%WWWDIR%%/js/vendor/angular-mocks/ngAnimateMock.js +%%WWWDIR%%/js/vendor/angular-mocks/ngMock.js +%%WWWDIR%%/js/vendor/angular-mocks/ngMockE2E.js +%%WWWDIR%%/js/vendor/angular-mocks/package.json +%%WWWDIR%%/js/vendor/angular-route/.bower.json +%%WWWDIR%%/js/vendor/angular-route/README.md +%%WWWDIR%%/js/vendor/angular-route/angular-route.js +%%WWWDIR%%/js/vendor/angular-route/angular-route.min.js +%%WWWDIR%%/js/vendor/angular-route/angular-route.min.js.map +%%WWWDIR%%/js/vendor/angular-route/bower.json +%%WWWDIR%%/js/vendor/angular-route/index.js +%%WWWDIR%%/js/vendor/angular-route/package.json +%%WWWDIR%%/js/vendor/angular/.bower.json +%%WWWDIR%%/js/vendor/angular/README.md +%%WWWDIR%%/js/vendor/angular/angular-csp.css +%%WWWDIR%%/js/vendor/angular/angular.js +%%WWWDIR%%/js/vendor/angular/angular.min.js +%%WWWDIR%%/js/vendor/angular/angular.min.js.gzip +%%WWWDIR%%/js/vendor/angular/angular.min.js.map +%%WWWDIR%%/js/vendor/angular/bower.json +%%WWWDIR%%/js/vendor/angular/index.js +%%WWWDIR%%/js/vendor/angular/package.json +%%WWWDIR%%/js/vendor/bootstrap/tooltip.js +%%WWWDIR%%/js/vendor/jquery/.bower.json +%%WWWDIR%%/js/vendor/jquery/MIT-LICENSE.txt +%%WWWDIR%%/js/vendor/jquery/bower.json +%%WWWDIR%%/js/vendor/jquery/dist/jquery.js +%%WWWDIR%%/js/vendor/jquery/dist/jquery.min.js +%%WWWDIR%%/js/vendor/jquery/dist/jquery.min.map +%%WWWDIR%%/js/vendor/jquery/src/ajax.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/jsonp.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/load.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/parseJSON.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/parseXML.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/script.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/var/nonce.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/var/rquery.js +%%WWWDIR%%/js/vendor/jquery/src/ajax/xhr.js +%%WWWDIR%%/js/vendor/jquery/src/attributes.js +%%WWWDIR%%/js/vendor/jquery/src/attributes/attr.js +%%WWWDIR%%/js/vendor/jquery/src/attributes/classes.js +%%WWWDIR%%/js/vendor/jquery/src/attributes/prop.js +%%WWWDIR%%/js/vendor/jquery/src/attributes/support.js +%%WWWDIR%%/js/vendor/jquery/src/attributes/val.js +%%WWWDIR%%/js/vendor/jquery/src/callbacks.js +%%WWWDIR%%/js/vendor/jquery/src/core.js +%%WWWDIR%%/js/vendor/jquery/src/core/access.js +%%WWWDIR%%/js/vendor/jquery/src/core/init.js +%%WWWDIR%%/js/vendor/jquery/src/core/parseHTML.js +%%WWWDIR%%/js/vendor/jquery/src/core/ready.js +%%WWWDIR%%/js/vendor/jquery/src/core/var/rsingleTag.js +%%WWWDIR%%/js/vendor/jquery/src/css.js +%%WWWDIR%%/js/vendor/jquery/src/css/addGetHookIf.js +%%WWWDIR%%/js/vendor/jquery/src/css/curCSS.js +%%WWWDIR%%/js/vendor/jquery/src/css/defaultDisplay.js +%%WWWDIR%%/js/vendor/jquery/src/css/hiddenVisibleSelectors.js +%%WWWDIR%%/js/vendor/jquery/src/css/support.js +%%WWWDIR%%/js/vendor/jquery/src/css/swap.js +%%WWWDIR%%/js/vendor/jquery/src/css/var/cssExpand.js +%%WWWDIR%%/js/vendor/jquery/src/css/var/getStyles.js +%%WWWDIR%%/js/vendor/jquery/src/css/var/isHidden.js +%%WWWDIR%%/js/vendor/jquery/src/css/var/rmargin.js +%%WWWDIR%%/js/vendor/jquery/src/css/var/rnumnonpx.js +%%WWWDIR%%/js/vendor/jquery/src/data.js +%%WWWDIR%%/js/vendor/jquery/src/data/Data.js +%%WWWDIR%%/js/vendor/jquery/src/data/accepts.js +%%WWWDIR%%/js/vendor/jquery/src/data/var/data_priv.js +%%WWWDIR%%/js/vendor/jquery/src/data/var/data_user.js +%%WWWDIR%%/js/vendor/jquery/src/deferred.js +%%WWWDIR%%/js/vendor/jquery/src/deprecated.js +%%WWWDIR%%/js/vendor/jquery/src/dimensions.js +%%WWWDIR%%/js/vendor/jquery/src/effects.js +%%WWWDIR%%/js/vendor/jquery/src/effects/Tween.js +%%WWWDIR%%/js/vendor/jquery/src/effects/animatedSelector.js +%%WWWDIR%%/js/vendor/jquery/src/event.js +%%WWWDIR%%/js/vendor/jquery/src/event/ajax.js +%%WWWDIR%%/js/vendor/jquery/src/event/alias.js +%%WWWDIR%%/js/vendor/jquery/src/event/support.js +%%WWWDIR%%/js/vendor/jquery/src/exports/amd.js +%%WWWDIR%%/js/vendor/jquery/src/exports/global.js +%%WWWDIR%%/js/vendor/jquery/src/intro.js +%%WWWDIR%%/js/vendor/jquery/src/jquery.js +%%WWWDIR%%/js/vendor/jquery/src/manipulation.js +%%WWWDIR%%/js/vendor/jquery/src/manipulation/_evalUrl.js +%%WWWDIR%%/js/vendor/jquery/src/manipulation/support.js +%%WWWDIR%%/js/vendor/jquery/src/manipulation/var/rcheckableType.js +%%WWWDIR%%/js/vendor/jquery/src/offset.js +%%WWWDIR%%/js/vendor/jquery/src/outro.js +%%WWWDIR%%/js/vendor/jquery/src/queue.js +%%WWWDIR%%/js/vendor/jquery/src/queue/delay.js +%%WWWDIR%%/js/vendor/jquery/src/selector-native.js +%%WWWDIR%%/js/vendor/jquery/src/selector-sizzle.js +%%WWWDIR%%/js/vendor/jquery/src/selector.js +%%WWWDIR%%/js/vendor/jquery/src/serialize.js +%%WWWDIR%%/js/vendor/jquery/src/sizzle/dist/sizzle.js +%%WWWDIR%%/js/vendor/jquery/src/sizzle/dist/sizzle.min.js +%%WWWDIR%%/js/vendor/jquery/src/sizzle/dist/sizzle.min.map +%%WWWDIR%%/js/vendor/jquery/src/traversing.js +%%WWWDIR%%/js/vendor/jquery/src/traversing/findFilter.js +%%WWWDIR%%/js/vendor/jquery/src/traversing/var/rneedsContext.js +%%WWWDIR%%/js/vendor/jquery/src/var/arr.js +%%WWWDIR%%/js/vendor/jquery/src/var/class2type.js +%%WWWDIR%%/js/vendor/jquery/src/var/concat.js +%%WWWDIR%%/js/vendor/jquery/src/var/hasOwn.js +%%WWWDIR%%/js/vendor/jquery/src/var/indexOf.js +%%WWWDIR%%/js/vendor/jquery/src/var/pnum.js +%%WWWDIR%%/js/vendor/jquery/src/var/push.js +%%WWWDIR%%/js/vendor/jquery/src/var/rnotwhite.js +%%WWWDIR%%/js/vendor/jquery/src/var/slice.js +%%WWWDIR%%/js/vendor/jquery/src/var/strundefined.js +%%WWWDIR%%/js/vendor/jquery/src/var/support.js +%%WWWDIR%%/js/vendor/jquery/src/var/toString.js +%%WWWDIR%%/js/vendor/jquery/src/wrap.js +%%WWWDIR%%/js/vendor/lodash/.bower.json +%%WWWDIR%%/js/vendor/lodash/LICENSE.txt +%%WWWDIR%%/js/vendor/lodash/bower.json +%%WWWDIR%%/js/vendor/lodash/dist/lodash.compat.js +%%WWWDIR%%/js/vendor/lodash/dist/lodash.compat.min.js +%%WWWDIR%%/js/vendor/lodash/dist/lodash.js +%%WWWDIR%%/js/vendor/lodash/dist/lodash.min.js +%%WWWDIR%%/js/vendor/lodash/dist/lodash.underscore.js +%%WWWDIR%%/js/vendor/lodash/dist/lodash.underscore.min.js +%%WWWDIR%%/js/vendor/restangular/.bower.json +%%WWWDIR%%/js/vendor/restangular/CHANGELOG.md +%%WWWDIR%%/js/vendor/restangular/CONTRIBUTE.md +%%WWWDIR%%/js/vendor/restangular/Gruntfile.js +%%WWWDIR%%/js/vendor/restangular/README.md +%%WWWDIR%%/js/vendor/restangular/bower.json +%%WWWDIR%%/js/vendor/restangular/dist/restangular.js +%%WWWDIR%%/js/vendor/restangular/dist/restangular.min.js +%%WWWDIR%%/js/vendor/restangular/dist/restangular.zip +%%WWWDIR%%/js/vendor/restangular/karma.conf.js +%%WWWDIR%%/js/vendor/restangular/karma.underscore.conf.js +%%WWWDIR%%/js/vendor/restangular/license.md +%%WWWDIR%%/js/vendor/restangular/package.json +%%WWWDIR%%/js/vendor/restangular/src/restangular.js +%%WWWDIR%%/js/vendor/restangular/test/restangularSpec.js +%%WWWDIR%%/js/vendor/simplemde/.bower.json +%%WWWDIR%%/js/vendor/simplemde/LICENSE +%%WWWDIR%%/js/vendor/simplemde/README.md +%%WWWDIR%%/js/vendor/simplemde/bower.json +%%WWWDIR%%/js/vendor/simplemde/debug/simplemde.css +%%WWWDIR%%/js/vendor/simplemde/debug/simplemde.debug.js +%%WWWDIR%%/js/vendor/simplemde/debug/simplemde.js +%%WWWDIR%%/js/vendor/simplemde/dist/simplemde.min.css +%%WWWDIR%%/js/vendor/simplemde/dist/simplemde.min.js +%%WWWDIR%%/js/vendor/simplemde/gulpfile.js +%%WWWDIR%%/js/vendor/simplemde/package.json +%%WWWDIR%%/js/vendor/simplemde/src/css/simplemde.css +%%WWWDIR%%/js/vendor/simplemde/src/js/codemirror/tablist.js +%%WWWDIR%%/js/vendor/simplemde/src/js/simplemde.js +%%WWWDIR%%/js/vendor/underscore/.bower.json +%%WWWDIR%%/js/vendor/underscore/.eslintrc +%%WWWDIR%%/js/vendor/underscore/LICENSE +%%WWWDIR%%/js/vendor/underscore/README.md +%%WWWDIR%%/js/vendor/underscore/bower.json +%%WWWDIR%%/js/vendor/underscore/component.json +%%WWWDIR%%/js/vendor/underscore/package.json +%%WWWDIR%%/js/vendor/underscore/underscore-min.js +%%WWWDIR%%/js/vendor/underscore/underscore-min.map +%%WWWDIR%%/js/vendor/underscore/underscore.js +%%WWWDIR%%/l10n/.gitkeep +%%WWWDIR%%/l10n/af.js +%%WWWDIR%%/l10n/af.json +%%WWWDIR%%/l10n/af_ZA.php +%%WWWDIR%%/l10n/ar.js +%%WWWDIR%%/l10n/ar.json +%%WWWDIR%%/l10n/ast.js +%%WWWDIR%%/l10n/ast.json +%%WWWDIR%%/l10n/az.js +%%WWWDIR%%/l10n/az.json +%%WWWDIR%%/l10n/bg.js +%%WWWDIR%%/l10n/bg.json +%%WWWDIR%%/l10n/bn_BD.js +%%WWWDIR%%/l10n/bn_BD.json +%%WWWDIR%%/l10n/bn_IN.php +%%WWWDIR%%/l10n/ca.js +%%WWWDIR%%/l10n/ca.json +%%WWWDIR%%/l10n/cs.js +%%WWWDIR%%/l10n/cs.json +%%WWWDIR%%/l10n/cy_GB.php +%%WWWDIR%%/l10n/da.js +%%WWWDIR%%/l10n/da.json +%%WWWDIR%%/l10n/de.js +%%WWWDIR%%/l10n/de.json +%%WWWDIR%%/l10n/de_DE.js +%%WWWDIR%%/l10n/de_DE.json +%%WWWDIR%%/l10n/el.js +%%WWWDIR%%/l10n/el.json +%%WWWDIR%%/l10n/en_GB.js +%%WWWDIR%%/l10n/en_GB.json +%%WWWDIR%%/l10n/eo.js +%%WWWDIR%%/l10n/eo.json +%%WWWDIR%%/l10n/es.js +%%WWWDIR%%/l10n/es.json +%%WWWDIR%%/l10n/es_AR.js +%%WWWDIR%%/l10n/es_AR.json +%%WWWDIR%%/l10n/es_CL.js +%%WWWDIR%%/l10n/es_CL.json +%%WWWDIR%%/l10n/es_CO.js +%%WWWDIR%%/l10n/es_CO.json +%%WWWDIR%%/l10n/es_CR.js +%%WWWDIR%%/l10n/es_CR.json +%%WWWDIR%%/l10n/es_DO.js +%%WWWDIR%%/l10n/es_DO.json +%%WWWDIR%%/l10n/es_EC.js +%%WWWDIR%%/l10n/es_EC.json +%%WWWDIR%%/l10n/es_GT.js +%%WWWDIR%%/l10n/es_GT.json +%%WWWDIR%%/l10n/es_HN.js +%%WWWDIR%%/l10n/es_HN.json +%%WWWDIR%%/l10n/es_MX.js +%%WWWDIR%%/l10n/es_MX.json +%%WWWDIR%%/l10n/es_NI.js +%%WWWDIR%%/l10n/es_NI.json +%%WWWDIR%%/l10n/es_PA.js +%%WWWDIR%%/l10n/es_PA.json +%%WWWDIR%%/l10n/es_PE.js +%%WWWDIR%%/l10n/es_PE.json +%%WWWDIR%%/l10n/es_PR.js +%%WWWDIR%%/l10n/es_PR.json +%%WWWDIR%%/l10n/es_PY.js +%%WWWDIR%%/l10n/es_PY.json +%%WWWDIR%%/l10n/es_SV.js +%%WWWDIR%%/l10n/es_SV.json +%%WWWDIR%%/l10n/es_UY.js +%%WWWDIR%%/l10n/es_UY.json +%%WWWDIR%%/l10n/et_EE.js +%%WWWDIR%%/l10n/et_EE.json +%%WWWDIR%%/l10n/eu.js +%%WWWDIR%%/l10n/eu.json +%%WWWDIR%%/l10n/fa.js +%%WWWDIR%%/l10n/fa.json +%%WWWDIR%%/l10n/fi.js +%%WWWDIR%%/l10n/fi.json +%%WWWDIR%%/l10n/fr.js +%%WWWDIR%%/l10n/fr.json +%%WWWDIR%%/l10n/gl.js +%%WWWDIR%%/l10n/gl.json +%%WWWDIR%%/l10n/he.js +%%WWWDIR%%/l10n/he.json +%%WWWDIR%%/l10n/hi.php +%%WWWDIR%%/l10n/hr.js +%%WWWDIR%%/l10n/hr.json +%%WWWDIR%%/l10n/hu.js +%%WWWDIR%%/l10n/hu.json +%%WWWDIR%%/l10n/hy.js +%%WWWDIR%%/l10n/hy.json +%%WWWDIR%%/l10n/ia.js +%%WWWDIR%%/l10n/ia.json +%%WWWDIR%%/l10n/id.js +%%WWWDIR%%/l10n/id.json +%%WWWDIR%%/l10n/ignorelist +%%WWWDIR%%/l10n/is.js +%%WWWDIR%%/l10n/is.json +%%WWWDIR%%/l10n/it.js +%%WWWDIR%%/l10n/it.json +%%WWWDIR%%/l10n/ja.js +%%WWWDIR%%/l10n/ja.json +%%WWWDIR%%/l10n/ja_JP.php +%%WWWDIR%%/l10n/ka_GE.js +%%WWWDIR%%/l10n/ka_GE.json +%%WWWDIR%%/l10n/km.js +%%WWWDIR%%/l10n/km.json +%%WWWDIR%%/l10n/ko.js +%%WWWDIR%%/l10n/ko.json +%%WWWDIR%%/l10n/ku_IQ.php +%%WWWDIR%%/l10n/lb.php +%%WWWDIR%%/l10n/lt_LT.js +%%WWWDIR%%/l10n/lt_LT.json +%%WWWDIR%%/l10n/lv.js +%%WWWDIR%%/l10n/lv.json +%%WWWDIR%%/l10n/mk.js +%%WWWDIR%%/l10n/mk.json +%%WWWDIR%%/l10n/mn.js +%%WWWDIR%%/l10n/mn.json +%%WWWDIR%%/l10n/ms_MY.js +%%WWWDIR%%/l10n/ms_MY.json +%%WWWDIR%%/l10n/my_MM.php +%%WWWDIR%%/l10n/nb.js +%%WWWDIR%%/l10n/nb.json +%%WWWDIR%%/l10n/nl.js +%%WWWDIR%%/l10n/nl.json +%%WWWDIR%%/l10n/nn_NO.js +%%WWWDIR%%/l10n/nn_NO.json +%%WWWDIR%%/l10n/oc.js +%%WWWDIR%%/l10n/oc.json +%%WWWDIR%%/l10n/pl.js +%%WWWDIR%%/l10n/pl.json +%%WWWDIR%%/l10n/pl_PL.php +%%WWWDIR%%/l10n/pt_BR.js +%%WWWDIR%%/l10n/pt_BR.json +%%WWWDIR%%/l10n/pt_PT.js +%%WWWDIR%%/l10n/pt_PT.json +%%WWWDIR%%/l10n/ro.js +%%WWWDIR%%/l10n/ro.json +%%WWWDIR%%/l10n/ru.js +%%WWWDIR%%/l10n/ru.json +%%WWWDIR%%/l10n/ru_RU.php +%%WWWDIR%%/l10n/si_LK.php +%%WWWDIR%%/l10n/sk.js +%%WWWDIR%%/l10n/sk.json +%%WWWDIR%%/l10n/sl.js +%%WWWDIR%%/l10n/sl.json +%%WWWDIR%%/l10n/sq.js +%%WWWDIR%%/l10n/sq.json +%%WWWDIR%%/l10n/sr.js +%%WWWDIR%%/l10n/sr.json +%%WWWDIR%%/l10n/sr@latin.php +%%WWWDIR%%/l10n/sv.js +%%WWWDIR%%/l10n/sv.json +%%WWWDIR%%/l10n/ta_LK.php +%%WWWDIR%%/l10n/th.js +%%WWWDIR%%/l10n/th.json +%%WWWDIR%%/l10n/tr.js +%%WWWDIR%%/l10n/tr.json +%%WWWDIR%%/l10n/ug.php +%%WWWDIR%%/l10n/uk.js +%%WWWDIR%%/l10n/uk.json +%%WWWDIR%%/l10n/zh_CN.GB2312.php +%%WWWDIR%%/l10n/zh_CN.js +%%WWWDIR%%/l10n/zh_CN.json +%%WWWDIR%%/l10n/zh_HK.js +%%WWWDIR%%/l10n/zh_HK.json +%%WWWDIR%%/l10n/zh_TW.js +%%WWWDIR%%/l10n/zh_TW.json +%%WWWDIR%%/service/metaservice.php +%%WWWDIR%%/service/notedoesnotexistexception.php +%%WWWDIR%%/service/notesservice.php +%%WWWDIR%%/templates/main.php +%%WWWDIR%%/templates/note.php +%%WWWDIR%%/templates/note.php.orig