Skip to content
Snippets Groups Projects
Unverified Commit 67de0b53 authored by Christoph Wurst's avatar Christoph Wurst
Browse files

update guideline URL for 9.1, more cloud neutrality

parent 431e4f57
No related branches found
No related tags found
No related merge requests found
{
"name": "mail",
"version": "0.5.3",
"description": "ownCloud Mail App",
"description": "Mail App",
"main": "mail.js",
"license": "AGPLv3",
"homepage": "https://github.com/owncloud/mail",
......
......@@ -19,7 +19,7 @@ is disabled, this compressed file is then used.
## Coding guidelines
Generally, any code contributed to this repository should comply with the general [ownCloud coding style guidelines](https://doc.owncloud.org/server/9.0/developer_manual/general/codingguidelines.html).
Generally, any code contributed to this repository should comply with the general [ownCloud coding style guidelines](https://doc.owncloud.org/server/9.1/developer_manual/general/codingguidelines.html).
Currently we use several frameworks and their extensions. Namely, this app is build with jQuery, Underscore.js, Backbone.js and Backbone Marionette. Additionally, Require.js is used for loading module dependencies (code and template).
......
......@@ -64,7 +64,7 @@ define(function(require) {
OC.generateUrl('apps/mail/compose?uri=%s');
try {
window.navigator
.registerProtocolHandler('mailto', url, 'ownCloud Mail');
.registerProtocolHandler('mailto', url, OC.theme.name + ' Mail');
} catch (e) {
}
}
......
......@@ -143,7 +143,7 @@ define(function(require) {
function createICalElement() {
var root = new ical.Component(['vcalendar', [], []]);
root.updatePropertyWithValue('prodid', '-//ownCloud Mail');
root.updatePropertyWithValue('prodid', '-//' + OC.theme.name + ' Mail');
return root;
}
......
/**
* ownCloud Mail
* Mail
*
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
......
{
"name": "mail",
"version": "0.5.3",
"description": "Mail app for ownCloud",
"description": "Mail App",
"main": "index.js",
"directories": {
"test": "tests"
......@@ -15,7 +15,6 @@
"url": "https://github.com/owncloud/mail.git"
},
"keywords": [
"ownCloud",
"mail"
],
"author": "Thomas Müller and others",
......
......@@ -44,7 +44,7 @@ abstract class AbstractTest extends \PHPUnit_Framework_TestCase {
$password = \OC::$server->getCrypto()->encrypt($password);
$a = new MailAccount();
$a->setId(-1);
$a->setName('ownCloudMail');
$a->setName('Mail');
$a->setInboundHost('localhost');
$a->setInboundPort(993);
$a->setInboundUser($user);
......
......@@ -21,16 +21,6 @@
*/
namespace OCA\Mail\Tests\Model;
/**
* ownCloud
*
* @author Thomas Müller
* @copyright 2014 Thomas Müller deepdiver@owncloud.com
*
* You should have received a copy of the GNU Affero General Public
* License along with this library. If not, see <http://www.gnu.org/licenses/>.
*
*/
use Horde_Imap_Client_Data_Fetch;
use Horde_Imap_Client_Fetch_Results;
use Horde_Mime_Part;
......
......@@ -5,7 +5,7 @@
timeoutForMediumTests="900"
timeoutForLargeTests="900"
>
<testsuite name='ownCloud - Mail App Tests'>
<testsuite name='Mail App Tests'>
<directory suffix='test.php'>.</directory>
</testsuite>
<!-- filters for code coverage -->
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment