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:
Diffstat (limited to 'app/views/status_messages/show.mobile.haml')
-rw-r--r--app/views/status_messages/show.mobile.haml25
1 files changed, 0 insertions, 25 deletions
diff --git a/app/views/status_messages/show.mobile.haml b/app/views/status_messages/show.mobile.haml
deleted file mode 100644
index 24d7b0537..000000000
--- a/app/views/status_messages/show.mobile.haml
+++ /dev/null
@@ -1,25 +0,0 @@
--# Copyright (c) 2010, Diaspora Inc. This file is
--# licensed under the Affero General Public License version 3 or later. See
--# the COPYRIGHT file.
-
-#show_content{:data=>{:guid=>@status_message.id}}
- = render 'shared/author_info', :person => @status_message.author, :post => @status_message
-
- %p
- = markdownify(@status_message.text, :youtube_maps => @status_message[:youtube_titles])
-
- - for photo in @status_message.photos
- = link_to (image_tag photo.url(:thumb_small), :class => 'thumb_small'), photo.url(:thumb_medium)
-
- .info
- %span.time
- = t('ago', :time => time_ago_in_words(@status_message.created_at))
-
- %br
- - if current_user.owns? @status_message
- = link_to t('delete'), @status_message, :confirm => t('are_you_sure'), :method => :delete
- - else
- = link_to t('hide'), post_visibility_path(:id => "42", :post_id => @status_message.id), :confirm => t('are_you_sure'), :method => :put, :remote => true
-
-.stream.show{:data=>{:guid=>@status_message.id}}
- = render "comments/comments", :post => @status_message, :comments => @status_message.comments, :always_expanded => true