aboutsummaryrefslogtreecommitdiff
path: root/mod/thewire/views/default/thewire
diff options
context:
space:
mode:
authorcash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-30 02:07:59 +0000
committercash <cash@36083f99-b078-4883-b0ff-0f9b5a30f544>2011-03-30 02:07:59 +0000
commitb472188b1e3fe4ff8a0da791910d12496b1de348 (patch)
tree63cc52ab126372ba532e7c246fe06b5e1364f764 /mod/thewire/views/default/thewire
parent030f72d81b76823e4f3b85675beb896b00b6af5d (diff)
downloadelgg-b472188b1e3fe4ff8a0da791910d12496b1de348.tar.gz
elgg-b472188b1e3fe4ff8a0da791910d12496b1de348.tar.bz2
Fixes #3200 ajax-based view previous link works for the wire
git-svn-id: http://code.elgg.org/elgg/trunk@8882 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/thewire/views/default/thewire')
-rw-r--r--mod/thewire/views/default/thewire/css.php98
-rw-r--r--mod/thewire/views/default/thewire/previous.php11
2 files changed, 13 insertions, 96 deletions
diff --git a/mod/thewire/views/default/thewire/css.php b/mod/thewire/views/default/thewire/css.php
index afc3a16aa..d1ef31993 100644
--- a/mod/thewire/views/default/thewire/css.php
+++ b/mod/thewire/views/default/thewire/css.php
@@ -27,100 +27,6 @@ The Wire
text-align: right;
background: white;
}
-<?php
-return true;
-?>
-
-/* new wire post form */
-.new_wire_post {
- margin:10px 0 15px 0;
- padding-bottom:15px;
- border-bottom: 1px solid #dedede;
-}
-.new_wire_post input[type="submit"] {
- margin:3px 0 0 0;
- float:right;
-}
-.new_wire_post textarea {
- width: 719px;
- height: 52px;
- padding: 2px 5px 5px 5px;
- font-size: 120%;
- color:#333333;
-}
-.character_count {
- width: 642px;
- color:#666666;
-}
-.character_count input {
- color:#666666;
- border:none;
- font-size: 100%;
- font-weight: bold;
- padding:0 2px 0 0;
- margin:0;
- text-align: right;
- background: white;
-}
-.character_count input:focus {
- border:none;
- background:white;
-}
-
-
-/* wire posts listings */
-.wire_post {
- padding-bottom:10px;
- margin-bottom:5px;
- background-image: url(<?php echo elgg_get_site_url(); ?>mod/thewire/graphics/thewire_speech_bubble.gif);
- background-repeat: no-repeat;
- background-position: right bottom;
-}
-.members-list .wire_post { /* when displayed in lists of friends */
- margin-top:4px;
-}
-.wire_post_contents {
- background-color: #eee;
- margin:0;
- padding:5px;
- line-height: 1.2em;
- min-height: 34px;
- position: relative;
-}
-.wire_post_icon {
- float:left;
- margin-right:8px;
-}
-.wire_post_info {
- margin-top:-3px;
- float:left;
- width:620px;
- overflow: hidden;
-}
-.wire_post_options {
- float:right;
- width:65px;
-}
-.wire_post_options .elgg-button-action.reply.small {
- float:right;
-}
-.wire_post_options .elgg-button-delete {
- position: absolute;
- bottom:5px;
- right:5px;
-}
-
-
-/* latest wire post on profile page */
-.wire_post .elgg-button-action.update.small {
- float:right;
- padding:4px;
- position: absolute;
- bottom:5px;
- right:5px;
-}
-
-/* river wire entry */
-.river_item .reply_link {
- display:block;
+.thewire-parent {
+ margin-left: 40px;
}
diff --git a/mod/thewire/views/default/thewire/previous.php b/mod/thewire/views/default/thewire/previous.php
new file mode 100644
index 000000000..e1ca83e24
--- /dev/null
+++ b/mod/thewire/views/default/thewire/previous.php
@@ -0,0 +1,11 @@
+<?php
+/**
+ * Serve up html for a post
+ */
+
+$guid = (int) get_input('guid');
+
+$parent = thewire_get_parent($guid);
+if ($parent) {
+ echo elgg_view_entity($parent);
+}