Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Hansen <mokker1234@gmail.com>2011-10-10 08:34:03 +0400
committerDan Hansen <mokker1234@gmail.com>2011-10-10 08:34:03 +0400
commitf6845c360f0a357c97e92e05f112d7fc102832ec (patch)
tree6f147f9cf89d0b151006dcfbc6621f3189950052 /app/mailers
parentf859904c767aaf0fc7146824e2fc627227694844 (diff)
Revert "change namespace from Mail to Mailers"
This reverts commit f859904c767aaf0fc7146824e2fc627227694844.
Diffstat (limited to 'app/mailers')
-rw-r--r--app/mailers/notification_mailers/also_commented.rb4
-rw-r--r--app/mailers/notification_mailers/base.rb4
-rw-r--r--app/mailers/notification_mailers/comment_on_post.rb4
-rw-r--r--app/mailers/notification_mailers/confirm_email.rb4
-rw-r--r--app/mailers/notification_mailers/liked.rb4
-rw-r--r--app/mailers/notification_mailers/mentioned.rb4
-rw-r--r--app/mailers/notification_mailers/private_message.rb4
-rw-r--r--app/mailers/notification_mailers/reshared.rb4
-rw-r--r--app/mailers/notification_mailers/started_sharing.rb4
-rw-r--r--app/mailers/notifier.rb4
10 files changed, 0 insertions, 40 deletions
diff --git a/app/mailers/notification_mailers/also_commented.rb b/app/mailers/notification_mailers/also_commented.rb
index cf5f2435e..a92f3a2af 100644
--- a/app/mailers/notification_mailers/also_commented.rb
+++ b/app/mailers/notification_mailers/also_commented.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class AlsoCommented < NotificationMailers::Base
include ActionView::Helpers::TextHelper
diff --git a/app/mailers/notification_mailers/base.rb b/app/mailers/notification_mailers/base.rb
index 8fdf23a69..cc17db364 100644
--- a/app/mailers/notification_mailers/base.rb
+++ b/app/mailers/notification_mailers/base.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
TRUNCATION_LEN = 70
diff --git a/app/mailers/notification_mailers/comment_on_post.rb b/app/mailers/notification_mailers/comment_on_post.rb
index e5fc9e498..ffb29fbb5 100644
--- a/app/mailers/notification_mailers/comment_on_post.rb
+++ b/app/mailers/notification_mailers/comment_on_post.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class CommentOnPost < NotificationMailers::Base
include ActionView::Helpers::TextHelper
diff --git a/app/mailers/notification_mailers/confirm_email.rb b/app/mailers/notification_mailers/confirm_email.rb
index 11ced8385..cd94cc76f 100644
--- a/app/mailers/notification_mailers/confirm_email.rb
+++ b/app/mailers/notification_mailers/confirm_email.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class ConfirmEmail < NotificationMailers::Base
def set_headers
diff --git a/app/mailers/notification_mailers/liked.rb b/app/mailers/notification_mailers/liked.rb
index 3c0b07d53..243e018e4 100644
--- a/app/mailers/notification_mailers/liked.rb
+++ b/app/mailers/notification_mailers/liked.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class Liked < NotificationMailers::Base
attr_accessor :like
diff --git a/app/mailers/notification_mailers/mentioned.rb b/app/mailers/notification_mailers/mentioned.rb
index 9e51f4036..2d0b5cd60 100644
--- a/app/mailers/notification_mailers/mentioned.rb
+++ b/app/mailers/notification_mailers/mentioned.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class Mentioned < NotificationMailers::Base
attr_accessor :post
diff --git a/app/mailers/notification_mailers/private_message.rb b/app/mailers/notification_mailers/private_message.rb
index 0eff30835..2cbc655c3 100644
--- a/app/mailers/notification_mailers/private_message.rb
+++ b/app/mailers/notification_mailers/private_message.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class PrivateMessage < NotificationMailers::Base
attr_accessor :message, :conversation, :participants
diff --git a/app/mailers/notification_mailers/reshared.rb b/app/mailers/notification_mailers/reshared.rb
index 9f926137f..c8287dd27 100644
--- a/app/mailers/notification_mailers/reshared.rb
+++ b/app/mailers/notification_mailers/reshared.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class Reshared < NotificationMailers::Base
attr_accessor :reshare
diff --git a/app/mailers/notification_mailers/started_sharing.rb b/app/mailers/notification_mailers/started_sharing.rb
index 7edb6b959..e02c50e43 100644
--- a/app/mailers/notification_mailers/started_sharing.rb
+++ b/app/mailers/notification_mailers/started_sharing.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
module NotificationMailers
class StartedSharing < NotificationMailers::Base
def set_headers
diff --git a/app/mailers/notifier.rb b/app/mailers/notifier.rb
index 985b2a225..bee70b83f 100644
--- a/app/mailers/notifier.rb
+++ b/app/mailers/notifier.rb
@@ -1,7 +1,3 @@
-# Copyright (c) 2010-2011, Diaspora Inc. This file is
-# licensed under the Affero General Public License version 3 or later. See
-# the COPYRIGHT file.
-
class Notifier < ActionMailer::Base
helper :application
helper :markdownify