diff --git a/boot.php b/boot.php
index fa081df1b0..910de6f82d 100755
--- a/boot.php
+++ b/boot.php
@@ -9,7 +9,7 @@ require_once('include/nav.php');
require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '2.3.1287' );
+define ( 'FRIENDICA_VERSION', '2.3.1288' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1132 );
diff --git a/include/conversation.php b/include/conversation.php
index e9f024c274..5de4fcb51a 100755
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -897,8 +897,7 @@ function status_editor($a,$x, $notes_cid = 0, $popup=false) {
'$audurl' => t("Please enter an audio link/URL:"),
'$term' => t('Tag term:'),
'$fileas' => t('File as:'),
- '$whereareu' => t('Where are you right now?'),
- '$title' => t('Enter a title for this item')
+ '$whereareu' => t('Where are you right now?')
));
diff --git a/include/text.php b/include/text.php
index 527f3a3442..92a74eb49e 100644
--- a/include/text.php
+++ b/include/text.php
@@ -712,6 +712,7 @@ function smilies($s, $sample = false) {
';-)',
':-(',
':-P',
+ ':-p',
':-"',
':-"',
':-x',
@@ -745,6 +746,7 @@ function smilies($s, $sample = false) {
'',
'',
'',
+ '',
'',
'',
'',
diff --git a/js/fk.autocomplete.js b/js/fk.autocomplete.js
index 69fe77e8cb..b1db92c414 100755
--- a/js/fk.autocomplete.js
+++ b/js/fk.autocomplete.js
@@ -14,22 +14,22 @@ function ACPopup(elm,backend_url){
this.kp_timer = false;
this.url = backend_url;
+ var w = 530;
+ var h = 130;
+
+
if(typeof elm.editorId == "undefined") {
style = $(elm).offset();
w = $(elm).width();
h = $(elm).height();
}
else {
- style = $(elm.container).offset();
- w = elm.container.offsetWidth;
- h = elm.container.offsetHeight;
- // Quick fix for chrome until I get a tool to inspect the dom
- // Chrome returns 0x0
- if(! w)
- w = 530;
- if(! h)
- h = 130;
-
+ var container = elm.getContainer();
+ if(typeof container != "undefined") {
+ style = $(container).offset();
+ w = $(container).width();
+ h = $(container).height();
+ }
}
style.top=style.top+h;
diff --git a/library/.slinky.php.swp b/library/.slinky.php.swp
deleted file mode 100644
index ab043e8806..0000000000
Binary files a/library/.slinky.php.swp and /dev/null differ
diff --git a/mod/community.php b/mod/community.php
index cf459617ea..f8cc3305b1 100755
--- a/mod/community.php
+++ b/mod/community.php
@@ -50,7 +50,7 @@ function community_content(&$a, $update = 0) {
WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
- AND `item`.`private` = 0 AND `user`.`hidewall` = 0
+ AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 "
);
@@ -72,7 +72,7 @@ function community_content(&$a, $update = 0) {
WHERE `item`.`visible` = 1 AND `item`.`deleted` = 0 and `item`.`moderated` = 0
AND `item`.`allow_cid` = '' AND `item`.`allow_gid` = ''
AND `item`.`deny_cid` = '' AND `item`.`deny_gid` = ''
- AND `item`.`private` = 0 AND `user`.`hidewall` = 0
+ AND `item`.`private` = 0 AND `item`.`wall` = 1 AND `user`.`hidewall` = 0
AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0
ORDER BY `received` DESC LIMIT %d, %d ",
intval($a->pager['start']),
diff --git a/mod/item.php b/mod/item.php
index fe570075f2..ee6c5c9a73 100755
--- a/mod/item.php
+++ b/mod/item.php
@@ -243,6 +243,7 @@ function item_post(&$a) {
}
+
if(! strlen($body)) {
if($preview)
killme();
@@ -253,6 +254,15 @@ function item_post(&$a) {
}
}
+ // Work around doubled linefeeds in Tinymce 3.5b2
+ // First figure out if it's a status post that would've been
+ // created using tinymce. Otherwise leave it alone.
+
+ $plaintext = (local_user() ? intval(get_pconfig(local_user(),'system','plaintext')) : 0);
+ if((! $parent) && (! $api_source) && (! $plaintext)) {
+ $body = str_replace("\r\n","\n",$body);
+ $body = str_replace("\n\n","\n",$body);
+ }
// get contact info for poster
diff --git a/view/head.tpl b/view/head.tpl
index f606f2f7e2..722c794414 100755
--- a/view/head.tpl
+++ b/view/head.tpl
@@ -7,7 +7,7 @@
-
+
+EOT;
diff --git a/view/theme/comix-plain/wall_item.tpl b/view/theme/comix-plain/wall_item.tpl
new file mode 100755
index 0000000000..dae16a1c74
--- /dev/null
+++ b/view/theme/comix-plain/wall_item.tpl
@@ -0,0 +1,78 @@
+
+
+
+
+
+
+ {{ if $item.lock }}
+ {{ else }}
{{ endif }}
+
$item.location
+
+
+
+
+
$item.title
+
+
$item.body
+
+ {{ for $item.tags as $tag }}
+ $tag
+ {{ endfor }}
+
+
+
+
+
+
+
$item.like
+
$item.dislike
+
+
+
+
diff --git a/view/theme/comix-plain/wallwall_item.tpl b/view/theme/comix-plain/wallwall_item.tpl
new file mode 100755
index 0000000000..11decf9c45
--- /dev/null
+++ b/view/theme/comix-plain/wallwall_item.tpl
@@ -0,0 +1,85 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ if $item.lock }}
+ {{ else }}
{{ endif }}
+
$item.location
+
+
+
+
+
$item.title
+
+
$item.body
+
+ {{ for $item.tags as $tag }}
+ $tag
+ {{ endfor }}
+
+
+
+
+
+
+
$item.like
+
$item.dislike
+
+
+
+
+
+
diff --git a/view/theme/comix/comment_item.tpl b/view/theme/comix/comment_item.tpl
new file mode 100755
index 0000000000..9c3facaff0
--- /dev/null
+++ b/view/theme/comix/comment_item.tpl
@@ -0,0 +1,32 @@
+
diff --git a/view/theme/diabook-blue/icons/file_as.png b/view/theme/diabook-blue/icons/file_as.png
new file mode 100755
index 0000000000..16713fa530
Binary files /dev/null and b/view/theme/diabook-blue/icons/file_as.png differ
diff --git a/view/theme/diabook-blue/icons/head.jpg b/view/theme/diabook-blue/icons/head.jpg
deleted file mode 100644
index 6210b76bef..0000000000
Binary files a/view/theme/diabook-blue/icons/head.jpg and /dev/null differ
diff --git a/view/theme/diabook-blue/photo_album.tpl b/view/theme/diabook-blue/photo_album.tpl
deleted file mode 100755
index 7e6c2f6669..0000000000
--- a/view/theme/diabook-blue/photo_album.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
diff --git a/view/theme/diabook-blue/photo_top.tpl b/view/theme/diabook-blue/photo_top.tpl
deleted file mode 100755
index 98ac9c4576..0000000000
--- a/view/theme/diabook-blue/photo_top.tpl
+++ /dev/null
@@ -1,7 +0,0 @@
-
-
diff --git a/view/theme/diabook-blue/style.css b/view/theme/diabook-blue/style.css
index 738dde0e5d..d3d3d9eb7a 100644
--- a/view/theme/diabook-blue/style.css
+++ b/view/theme/diabook-blue/style.css
@@ -102,6 +102,7 @@
.icon.recycle { background-image: url("../../../view/theme/diabook-blue/icons/recycle.png");}
.icon.remote-link { background-image: url("../../../view/theme/diabook-blue/icons/remote.png");}
.icon.tagged { background-image: url("../../../view/theme/diabook-blue/icons/tagged.png");}
+.icon.file-as { background-image: url("../../../view/theme/diabook-blue/icons/file_as.png");}
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook-blue/icons/unstarred.png");}
.star-item.icon.starred { background-image: url("../../../view/theme/diabook-blue/icons/starred.png");}
.icon.link { background-image: url("../../../view/theme/diabook-blue/icons/link.png");}
@@ -2411,21 +2412,22 @@ float: left;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px #888;
box-shadow: 0 0 5px #888;
- background-color: #EEE;
+ background-color: #000;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding-bottom: 20px;
position: relative;
margin: 0 10px 10px 0;
- overflow: hidden;
- float: left;
- position: relative;
+ width: 200px; height: 140px;
+ overflow: hidden;
}
.photo-top-album-name {
- position: absolute;
- bottom: 0;
- padding: 0 5px;
+ width: 100%;
+ position: absolute;
+ bottom: 0px;
+ padding-left: 3px;
+ background-color: #EEE;
}
.photo-top-album-link{
color: #1872A2;
diff --git a/view/theme/diabook-blue/wall_item.tpl b/view/theme/diabook-blue/wall_item.tpl
index ebe40fd4ea..20d24702b9 100644
--- a/view/theme/diabook-blue/wall_item.tpl
+++ b/view/theme/diabook-blue/wall_item.tpl
@@ -66,6 +66,10 @@
{{ endif }}
+ {{ if $item.filer }}
+
+ {{ endif }}
+
{{ if $item.plink }}$item.plink.title{{ endif }}
diff --git a/view/theme/diabook/icons/com_side.png b/view/theme/diabook/icons/com_side.png
new file mode 100644
index 0000000000..bc5969ef1a
Binary files /dev/null and b/view/theme/diabook/icons/com_side.png differ
diff --git a/view/theme/diabook/icons/events.png b/view/theme/diabook/icons/events.png
new file mode 100644
index 0000000000..4a0b3f3f11
Binary files /dev/null and b/view/theme/diabook/icons/events.png differ
diff --git a/view/theme/diabook/icons/file_as.png b/view/theme/diabook/icons/file_as.png
new file mode 100755
index 0000000000..16713fa530
Binary files /dev/null and b/view/theme/diabook/icons/file_as.png differ
diff --git a/view/theme/diabook/icons/head.jpg b/view/theme/diabook/icons/head.jpg
deleted file mode 100644
index 6210b76bef..0000000000
Binary files a/view/theme/diabook/icons/head.jpg and /dev/null differ
diff --git a/view/theme/diabook/icons/home.png b/view/theme/diabook/icons/home.png
new file mode 100644
index 0000000000..be47a48fc3
Binary files /dev/null and b/view/theme/diabook/icons/home.png differ
diff --git a/view/theme/diabook/icons/mess_side.png b/view/theme/diabook/icons/mess_side.png
new file mode 100644
index 0000000000..49ef896bc1
Binary files /dev/null and b/view/theme/diabook/icons/mess_side.png differ
diff --git a/view/theme/diabook/icons/notes.png b/view/theme/diabook/icons/notes.png
new file mode 100644
index 0000000000..7d4afca908
Binary files /dev/null and b/view/theme/diabook/icons/notes.png differ
diff --git a/view/theme/diabook/icons/pubgroups.png b/view/theme/diabook/icons/pubgroups.png
new file mode 100644
index 0000000000..acf857f32f
Binary files /dev/null and b/view/theme/diabook/icons/pubgroups.png differ
diff --git a/view/theme/diabook/profile_side.tpl b/view/theme/diabook/profile_side.tpl
index 01da55ce1c..a65677696a 100644
--- a/view/theme/diabook/profile_side.tpl
+++ b/view/theme/diabook/profile_side.tpl
@@ -7,12 +7,12 @@
diff --git a/view/theme/diabook/style.css b/view/theme/diabook/style.css
index 437f323faa..5841a96b36 100644
--- a/view/theme/diabook/style.css
+++ b/view/theme/diabook/style.css
@@ -102,6 +102,7 @@
.icon.recycle { background-image: url("../../../view/theme/diabook/icons/recycle.png");}
.icon.remote-link { background-image: url("../../../view/theme/diabook/icons/remote.png");}
.icon.tagged { background-image: url("../../../view/theme/diabook/icons/tagged.png");}
+.icon.file-as { background-image: url("../../../view/theme/diabook/icons/file_as.png");}
.star-item.icon.unstarred { background-image: url("../../../view/theme/diabook/icons/unstarred.png");}
.star-item.icon.starred { background-image: url("../../../view/theme/diabook/icons/starred.png");}
.icon.link { background-image: url("../../../view/theme/diabook/icons/link.png");}
@@ -881,22 +882,47 @@ ul.menu-popup .empty {
text-decoration: none;
}
.menu-profile-side{
- list-style: none;
- padding-left: 16px;
- min-height: 16px;
+ list-style: none;
+ padding-left: 0px;
+ min-height: 0px;
}
.menu-profile-list{
height: auto;
overflow: auto;
padding-top: 3px;
padding-bottom: 3px;
+ padding-left: 16px;
+ min-height: 16px;
+ list-style: none;
}
.menu-profile-list:hover{
background: #EEE;
}
+.menu-profile-list-item{
+ padding-left: 5px;
+ }
.menu-profile-list-item:hover{
- text-decoration: none;
+ text-decoration: none;
}
+/*http://prothemedesign.com/circular-icons/*/
+.menu-profile-list.home{
+ background: url("../../../view/theme/diabook-blue/icons/home.png") no-repeat;
+ }
+.menu-profile-list.photos{
+ background: url("../../../view/theme/diabook-blue/icons/mess_side.png") no-repeat;
+ }
+.menu-profile-list.events{
+ background: url("../../../view/theme/diabook-blue/icons/events.png") no-repeat;
+ }
+.menu-profile-list.notes{
+ background: url("../../../view/theme/diabook-blue/icons/notes.png") no-repeat;
+ }
+.menu-profile-list.foren{
+ background: url("../../../view/theme/diabook-blue/icons/pubgroups.png") no-repeat;
+ }
+.menu-profile-list.com_side{
+ background: url("../../../view/theme/diabook-blue/icons/com_side.png") no-repeat;
+ }
/* aside */
aside {
@@ -2348,7 +2374,13 @@ float: left;
.contact-details {
color: #999999;
}
-
+#side-bar-photos-albums li{
+list-style-type: disc;
+}
+#side-bar-photos-albums ul li{
+ margin-left: 30px;
+ padding-left: 0px;
+ }
#side-bar-photos-albums{
margin-top: 15px;
}
@@ -2362,39 +2394,40 @@ float: left;
-moz-box-shadow: 0 0 5px #888;
-webkit-box-shadow: 0 0 5px #888;
box-shadow: 0 0 5px #888;
- background-color: #EEE;
+ background-color: #000;
-webkit-border-radius: 5px;
-moz-border-radius: 5px;
border-radius: 5px;
padding-bottom: 20px;
position: relative;
margin: 0 10px 10px 0;
+ width: 200px; height: 140px;
+ overflow: hidden;
}
+/*
.photo-top-album-name {
position: absolute;
bottom: 0;
padding: 0 5px;
-}
-.photo-top-album-link{
- color: #1872A2;
- }
+}*/
/*.photo-top-image-wrapper {
position: relative;
float: left;
margin-top: 15px;
margin-right: 15px;
width: 200px; height: 200px;
- overflow: hidden;
-}
+
+}*/
.photo-top-album-name {
width: 100%;
- min-height: 2em;
position: absolute;
bottom: 0px;
- padding: 0px 3px;
- padding-top: 0.5em;
- background-color: rgb(255, 255, 255);
-}*/
+ padding-left: 3px;
+ background-color: #EEE;
+}
+.photo-top-album-link{
+ color: #3465A4;
+ }
#photo-top-end {
clear: both;
}
diff --git a/view/theme/diabook/theme.php b/view/theme/diabook/theme.php
index 9093ac2ca2..39479ce522 100755
--- a/view/theme/diabook/theme.php
+++ b/view/theme/diabook/theme.php
@@ -1,8 +1,8 @@
{{ endif }}
+ {{ if $item.filer }}
+
+ {{ endif }}
+
{{ if $item.plink }}$item.plink.title{{ endif }}
diff --git a/view/theme/facepark.tar.gz b/view/theme/facepark.tar.gz
deleted file mode 100644
index 0dca01cfe9..0000000000
Binary files a/view/theme/facepark.tar.gz and /dev/null differ
diff --git a/view/theme/facepark/unsupported b/view/theme/facepark/unsupported
new file mode 100644
index 0000000000..e69de29bb2