1
0
Fork 0

Merge branch 'master', remote-tracking branch 'remotes/upstream/master'

* remotes/upstream/master:
  diabook-themes: fix css to login.tpl
  restore qcomment selector
  rev update
  zero-themes: add bbcode-toolbar to commentbox
  diabook-themes: small fix
  Diabook-dark css fix
  Diabook-dark, couple of new icons, and another css fix.
  fix tags test with new url
  quattro: small week calendar view for event/birthday reminders
  remove html from get_birthdays() and get_events()
  events page: set calendar start date from url (events/[year]/[month]/) and show event popup from url anchor (#link-[event id])

* master:
This commit is contained in:
Simon L'nu 2012-04-25 03:05:47 -04:00
commit 1a1efc7e46
50 changed files with 1200 additions and 505 deletions

View file

@ -9,7 +9,7 @@ require_once('include/nav.php');
require_once('include/cache.php'); require_once('include/cache.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica'); define ( 'FRIENDICA_PLATFORM', 'Friendica');
define ( 'FRIENDICA_VERSION', '2.3.1321' ); define ( 'FRIENDICA_VERSION', '2.3.1322' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' ); define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1138 ); define ( 'DB_UPDATE_VERSION', 1138 );
@ -1174,11 +1174,7 @@ if(! function_exists('get_birthdays')) {
} }
$classtoday = $istoday ? ' birthday-today ' : ''; $classtoday = $istoday ? ' birthday-today ' : '';
if($total) { if($total) {
$o .= '<div id="birthday-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'birthday-wrapper\'); >' . t('Birthday Reminders') . ' ' . '(' . $total . ')' . '</div>'; foreach($r as &$rr) {
$o .= '<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">' . t('Birthdays this week:') . '</div>';
$o .= '<div id="birthday-title-end"></div>';
foreach($r as $rr) {
if(! strlen($rr['name'])) if(! strlen($rr['name']))
continue; continue;
@ -1196,15 +1192,24 @@ if(! function_exists('get_birthdays')) {
$url = $a->get_baseurl() . '/redir/' . $rr['cid']; $url = $a->get_baseurl() . '/redir/' . $rr['cid'];
} }
$o .= '<div class="birthday-list" id="birthday-' . $rr['eid'] . '"><a class="birthday-link$sparkle" target="redir" href="' $rr['link'] = $url;
. $url . '">' . $rr['name'] . '</a> ' $rr['title'] = $rr['name'];
. day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '') $rr['date'] = day_translate(datetime_convert('UTC', $a->timezone, $rr['start'], $rr['adjust'] ? $bd_format : $bd_short)) . (($today) ? ' ' . t('[today]') : '');
. '</div>' ; $rr['startime'] = Null;
$rr['today'] = $today;
} }
$o .= '</div></div>';
} }
} }
return $o; $tpl = get_markup_template("birthdays_reminder.tpl");
return replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$classtoday' => $classtoday,
'$count' => $total,
'$event_reminders' => t('Birthday Reminders'),
'$event_title' => t('Birthdays this week:'),
'$events' => $r,
));
} }
} }
@ -1215,7 +1220,6 @@ if(! function_exists('get_events')) {
require_once('include/bbcode.php'); require_once('include/bbcode.php');
$a = get_app(); $a = get_app();
$o = '';
if(! local_user()) if(! local_user())
return $o; return $o;
@ -1242,18 +1246,15 @@ if(! function_exists('get_events')) {
if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) if($strt === datetime_convert('UTC',$a->timezone,'now','Y-m-d'))
$istoday = true; $istoday = true;
} }
$classtoday = (($istoday) ? ' event-today ' : ''); $classtoday = (($istoday) ? 'event-today' : '');
$o .= '<div id="event-notice" class="birthday-notice fakelink' . $classtoday . '" onclick=openClose(\'event-wrapper\'); >' . t('Event Reminders') . ' ' . '(' . count($r) . ')' . '</div>';
$o .= '<div id="event-wrapper" style="display: none;" ><div id="event-title">' . t('Events this week:') . '</div>';
$o .= '<div id="event-title-end"></div>';
foreach($r as $rr) {
foreach($r as &$rr) {
if($rr['adjust']) if($rr['adjust'])
$md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m\#\l\i\n\k\-j'); $md = datetime_convert('UTC',$a->timezone,$rr['start'],'Y/m');
else else
$md = datetime_convert('UTC','UTC',$rr['start'],'Y/m\#\l\i\n\k\-j'); $md = datetime_convert('UTC','UTC',$rr['start'],'Y/m');
$md .= "/#link-".$rr['id'];
$title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... '; $title = substr(strip_tags(bbcode($rr['desc'])),0,32) . '... ';
if(! $title) if(! $title)
@ -1262,14 +1263,23 @@ if(! function_exists('get_events')) {
$strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']); $strt = datetime_convert('UTC',$rr['convert'] ? $a->timezone : 'UTC',$rr['start']);
$today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false); $today = ((substr($strt,0,10) === datetime_convert('UTC',$a->timezone,'now','Y-m-d')) ? true : false);
$o .= '<div class="event-list" id="event-' . $rr['eid'] . '"></a> <a href="events/' . $md . '">' . $title . '</a>' $rr['link'] = $md;
. day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '') $rr['title'] = $title;
. '</div>' ; $rr['date'] = day_translate(datetime_convert('UTC', $rr['adjust'] ? $a->timezone : 'UTC', $rr['start'], $bd_format)) . (($today) ? ' ' . t('[today]') : '');
$rr['startime'] = $strt;
$rr['today'] = $today;
} }
$o .= '</div></div>';
} }
return $o; $tpl = get_markup_template("events_reminder.tpl");
return replace_macros($tpl, array(
'$baseurl' => $a->get_baseurl(),
'$classtoday' => $classtoday,
'$count' => count($r),
'$event_reminders' => t('Event Reminders'),
'$event_title' => t('Events this week:'),
'$events' => $r,
));
} }
} }

View file

@ -202,8 +202,8 @@ class GetTagsTest extends PHPUnit_Framework_TestCase {
} }
$this->assertEquals("cid:15", $inform); $this->assertEquals("cid:15", $inform);
$this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url],#[url=baseurl/search?search=test%20case]test case[/url]", $str_tags); $this->assertEquals("@[url=http://justatest.de]Mike Lastname[/url],#[url=baseurl/search?tag=test%20case]test case[/url]", $str_tags);
$this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url] This is a #[url=baseurl/search?search=test%20case]test case[/url]", $text); $this->assertEquals("hi @[url=http://justatest.de]Mike Lastname[/url] This is a #[url=baseurl/search?tag=test%20case]test case[/url]", $text);
} }

View file

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2.3.1321\n" "Project-Id-Version: 2.3.1322\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-04-23 10:00-0700\n" "POT-Creation-Date: 2012-04-24 10:00-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -127,7 +127,7 @@ msgstr ""
#: ../../mod/photos.php:1193 ../../mod/photos.php:1233 #: ../../mod/photos.php:1193 ../../mod/photos.php:1233
#: ../../mod/photos.php:1273 ../../mod/photos.php:1304 #: ../../mod/photos.php:1273 ../../mod/photos.php:1304
#: ../../mod/install.php:251 ../../mod/install.php:289 #: ../../mod/install.php:251 ../../mod/install.php:289
#: ../../mod/localtime.php:45 ../../mod/contacts.php:325 #: ../../mod/localtime.php:45 ../../mod/contacts.php:296
#: ../../mod/settings.php:532 ../../mod/settings.php:678 #: ../../mod/settings.php:532 ../../mod/settings.php:678
#: ../../mod/settings.php:739 ../../mod/settings.php:930 #: ../../mod/settings.php:739 ../../mod/settings.php:930
#: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392 #: ../../mod/manage.php:109 ../../mod/group.php:85 ../../mod/admin.php:392
@ -139,7 +139,7 @@ msgstr ""
#: ../../addon/uhremotestorage/uhremotestorage.php:89 #: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93 #: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
#: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187 #: ../../addon/drpost/drpost.php:110 ../../addon/geonames/geonames.php:187
#: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:80 #: ../../addon/oembed.old/oembed.php:41 ../../addon/impressum/impressum.php:82
#: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61 #: ../../addon/blockem/blockem.php:57 ../../addon/qcomment/qcomment.php:61
#: ../../addon/openstreetmap/openstreetmap.php:70 #: ../../addon/openstreetmap/openstreetmap.php:70
#: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84 #: ../../addon/mathjax/mathjax.php:42 ../../addon/editplain/editplain.php:84
@ -158,12 +158,6 @@ msgstr ""
#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375 #: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:375
#: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102 #: ../../addon/irc/irc.php:55 ../../addon/blogger/blogger.php:102
#: ../../addon/posterous/posterous.php:90 #: ../../addon/posterous/posterous.php:90
#: ../../view/theme/diabook/diabook-green/config.php:76
#: ../../view/theme/diabook/diabook-red/config.php:76
#: ../../view/theme/diabook/diabook-blue/config.php:76
#: ../../view/theme/diabook/diabook-dark/config.php:76
#: ../../view/theme/diabook/diabook-aerith/config.php:76
#: ../../view/theme/diabook/diabook-pink/config.php:76
#: ../../view/theme/diabook/config.php:91 #: ../../view/theme/diabook/config.php:91
#: ../../view/theme/quattro/config.php:52 ../../include/conversation.php:555 #: ../../view/theme/quattro/config.php:52 ../../include/conversation.php:555
msgid "Submit" msgid "Submit"
@ -223,14 +217,7 @@ msgstr ""
msgid "link to source" msgid "link to source"
msgstr "" msgstr ""
#: ../../mod/events.php:296 #: ../../mod/events.php:296 ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook/diabook-green/theme.php:233
#: ../../view/theme/diabook/diabook-red/theme.php:231
#: ../../view/theme/diabook/diabook-blue/theme.php:231
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook/diabook-dark/theme.php:233
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
#: ../../view/theme/diabook/diabook-pink/theme.php:233
#: ../../include/nav.php:52 ../../boot.php:1471 #: ../../include/nav.php:52 ../../boot.php:1471
msgid "Events" msgid "Events"
msgstr "" msgstr ""
@ -290,7 +277,7 @@ msgid "Share this event"
msgstr "" msgstr ""
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 #: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94
#: ../../mod/dfrn_request.php:800 ../../mod/settings.php:533 #: ../../mod/dfrn_request.php:812 ../../mod/settings.php:533
#: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45 #: ../../mod/settings.php:559 ../../addon/js_upload/js_upload.php:45
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
@ -334,7 +321,7 @@ msgid ""
"and/or create new posts for you?" "and/or create new posts for you?"
msgstr "" msgstr ""
#: ../../mod/api.php:105 ../../mod/dfrn_request.php:788 #: ../../mod/api.php:105 ../../mod/dfrn_request.php:800
#: ../../mod/settings.php:844 ../../mod/settings.php:850 #: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862 #: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873 #: ../../mod/settings.php:867 ../../mod/settings.php:873
@ -345,7 +332,7 @@ msgstr ""
msgid "Yes" msgid "Yes"
msgstr "" msgstr ""
#: ../../mod/api.php:106 ../../mod/dfrn_request.php:789 #: ../../mod/api.php:106 ../../mod/dfrn_request.php:801
#: ../../mod/settings.php:844 ../../mod/settings.php:850 #: ../../mod/settings.php:844 ../../mod/settings.php:850
#: ../../mod/settings.php:858 ../../mod/settings.php:862 #: ../../mod/settings.php:858 ../../mod/settings.php:862
#: ../../mod/settings.php:867 ../../mod/settings.php:873 #: ../../mod/settings.php:867 ../../mod/settings.php:873
@ -363,13 +350,7 @@ msgstr ""
#: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879 #: ../../mod/photos.php:51 ../../mod/photos.php:151 ../../mod/photos.php:879
#: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382 #: ../../mod/photos.php:950 ../../mod/photos.php:965 ../../mod/photos.php:1382
#: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110 #: ../../mod/photos.php:1394 ../../addon/communityhome/communityhome.php:110
#: ../../view/theme/diabook/diabook-green/theme.php:116
#: ../../view/theme/diabook/diabook-red/theme.php:115
#: ../../view/theme/diabook/diabook-blue/theme.php:115
#: ../../view/theme/diabook/theme.php:130 #: ../../view/theme/diabook/theme.php:130
#: ../../view/theme/diabook/diabook-dark/theme.php:116
#: ../../view/theme/diabook/diabook-aerith/theme.php:116
#: ../../view/theme/diabook/diabook-pink/theme.php:116
msgid "Contact Photos" msgid "Contact Photos"
msgstr "" msgstr ""
@ -392,13 +373,7 @@ msgstr ""
#: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174 #: ../../mod/profile_photo.php:74 ../../mod/profile_photo.php:174
#: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261 #: ../../mod/profile_photo.php:252 ../../mod/profile_photo.php:261
#: ../../addon/communityhome/communityhome.php:111 #: ../../addon/communityhome/communityhome.php:111
#: ../../view/theme/diabook/diabook-green/theme.php:117
#: ../../view/theme/diabook/diabook-red/theme.php:116
#: ../../view/theme/diabook/diabook-blue/theme.php:116
#: ../../view/theme/diabook/theme.php:131 #: ../../view/theme/diabook/theme.php:131
#: ../../view/theme/diabook/diabook-dark/theme.php:117
#: ../../view/theme/diabook/diabook-aerith/theme.php:117
#: ../../view/theme/diabook/diabook-pink/theme.php:117
msgid "Profile Photos" msgid "Profile Photos"
msgstr "" msgstr ""
@ -420,15 +395,9 @@ msgstr ""
#: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70 #: ../../mod/photos.php:528 ../../mod/like.php:127 ../../mod/tagger.php:70
#: ../../addon/communityhome/communityhome.php:163 #: ../../addon/communityhome/communityhome.php:163
#: ../../view/theme/diabook/diabook-green/theme.php:88 #: ../../view/theme/diabook/theme.php:102 ../../include/text.php:1304
#: ../../view/theme/diabook/diabook-red/theme.php:87 #: ../../include/diaspora.php:1654 ../../include/conversation.php:53
#: ../../view/theme/diabook/diabook-blue/theme.php:87 #: ../../include/conversation.php:126
#: ../../view/theme/diabook/theme.php:102
#: ../../view/theme/diabook/diabook-dark/theme.php:88
#: ../../view/theme/diabook/diabook-aerith/theme.php:88
#: ../../view/theme/diabook/diabook-pink/theme.php:88
#: ../../include/text.php:1304 ../../include/diaspora.php:1654
#: ../../include/conversation.php:53 ../../include/conversation.php:126
msgid "photo" msgid "photo"
msgstr "" msgstr ""
@ -455,7 +424,7 @@ msgid "Image upload failed."
msgstr "" msgstr ""
#: ../../mod/photos.php:759 ../../mod/community.php:16 #: ../../mod/photos.php:759 ../../mod/community.php:16
#: ../../mod/dfrn_request.php:719 ../../mod/viewcontacts.php:17 #: ../../mod/dfrn_request.php:731 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29 #: ../../mod/display.php:7 ../../mod/search.php:71 ../../mod/directory.php:29
msgid "Public access denied." msgid "Public access denied."
msgstr "" msgstr ""
@ -601,19 +570,12 @@ msgstr ""
msgid "Not available." msgid "Not available."
msgstr "" msgstr ""
#: ../../mod/community.php:30 #: ../../mod/community.php:30 ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook/diabook-green/theme.php:235
#: ../../view/theme/diabook/diabook-red/theme.php:233
#: ../../view/theme/diabook/diabook-blue/theme.php:233
#: ../../view/theme/diabook/theme.php:252
#: ../../view/theme/diabook/diabook-dark/theme.php:235
#: ../../view/theme/diabook/diabook-aerith/theme.php:235
#: ../../view/theme/diabook/diabook-pink/theme.php:235
#: ../../include/nav.php:101 #: ../../include/nav.php:101
msgid "Community" msgid "Community"
msgstr "" msgstr ""
#: ../../mod/community.php:61 ../../mod/search.php:115 #: ../../mod/community.php:61 ../../mod/search.php:128
msgid "No results." msgid "No results."
msgstr "" msgstr ""
@ -730,19 +692,19 @@ msgstr ""
msgid "This introduction has already been accepted." msgid "This introduction has already been accepted."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:475 #: ../../mod/dfrn_request.php:117 ../../mod/dfrn_request.php:487
msgid "Profile location is not valid or does not contain profile information." msgid "Profile location is not valid or does not contain profile information."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:480 #: ../../mod/dfrn_request.php:122 ../../mod/dfrn_request.php:492
msgid "Warning: profile location has no identifiable owner name." msgid "Warning: profile location has no identifiable owner name."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:482 #: ../../mod/dfrn_request.php:124 ../../mod/dfrn_request.php:494
msgid "Warning: profile location has no profile photo." msgid "Warning: profile location has no profile photo."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:485 #: ../../mod/dfrn_request.php:127 ../../mod/dfrn_request.php:497
#, php-format #, php-format
msgid "%d required parameter was not found at the given location" msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location" msgid_plural "%d required parameters were not found at the given location"
@ -786,128 +748,128 @@ msgstr ""
msgid "This account has not been configured for email. Request failed." msgid "This account has not been configured for email. Request failed."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:420 #: ../../mod/dfrn_request.php:432
msgid "Unable to resolve your name at the provided location." msgid "Unable to resolve your name at the provided location."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:433 #: ../../mod/dfrn_request.php:445
msgid "You have already introduced yourself here." msgid "You have already introduced yourself here."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:437 #: ../../mod/dfrn_request.php:449
#, php-format #, php-format
msgid "Apparently you are already friends with %s." msgid "Apparently you are already friends with %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:458 #: ../../mod/dfrn_request.php:470
msgid "Invalid profile URL." msgid "Invalid profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:464 ../../mod/follow.php:20 #: ../../mod/dfrn_request.php:476 ../../mod/follow.php:20
msgid "Disallowed profile URL." msgid "Disallowed profile URL."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:533 ../../mod/contacts.php:102 #: ../../mod/dfrn_request.php:545 ../../mod/contacts.php:102
msgid "Failed to update contact record." msgid "Failed to update contact record."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:554 #: ../../mod/dfrn_request.php:566
msgid "Your introduction has been sent." msgid "Your introduction has been sent."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:607 #: ../../mod/dfrn_request.php:619
msgid "Please login to confirm introduction." msgid "Please login to confirm introduction."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:621 #: ../../mod/dfrn_request.php:633
msgid "" msgid ""
"Incorrect identity currently logged in. Please login to <strong>this</" "Incorrect identity currently logged in. Please login to <strong>this</"
"strong> profile." "strong> profile."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:633 #: ../../mod/dfrn_request.php:645
#, php-format #, php-format
msgid "Welcome home %s." msgid "Welcome home %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:634 #: ../../mod/dfrn_request.php:646
#, php-format #, php-format
msgid "Please confirm your introduction/connection request to %s." msgid "Please confirm your introduction/connection request to %s."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:635 #: ../../mod/dfrn_request.php:647
msgid "Confirm" msgid "Confirm"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:676 ../../include/items.php:2691 #: ../../mod/dfrn_request.php:688 ../../include/items.php:2691
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:763 #: ../../mod/dfrn_request.php:775
msgid "" msgid ""
"Please enter your 'Identity Address' from one of the following supported " "Please enter your 'Identity Address' from one of the following supported "
"communications networks:" "communications networks:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:779 #: ../../mod/dfrn_request.php:791
msgid "<strike>Connect as an email follower</strike> (Coming soon)" msgid "<strike>Connect as an email follower</strike> (Coming soon)"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:781 #: ../../mod/dfrn_request.php:793
msgid "" msgid ""
"If you are not yet a member of the free social web, <a href=\"http://dir." "If you are not yet a member of the free social web, <a href=\"http://dir."
"friendica.com/siteinfo\">follow this link to find a public Friendica site " "friendica.com/siteinfo\">follow this link to find a public Friendica site "
"and join us today</a>." "and join us today</a>."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:784 #: ../../mod/dfrn_request.php:796
msgid "Friend/Connection Request" msgid "Friend/Connection Request"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:785 #: ../../mod/dfrn_request.php:797
msgid "" msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " "Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca" "testuser@identi.ca"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:786 #: ../../mod/dfrn_request.php:798
msgid "Please answer the following:" msgid "Please answer the following:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:787 #: ../../mod/dfrn_request.php:799
#, php-format #, php-format
msgid "Does %s know you?" msgid "Does %s know you?"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:790 #: ../../mod/dfrn_request.php:802
msgid "Add a personal note:" msgid "Add a personal note:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:792 ../../include/contact_selectors.php:76 #: ../../mod/dfrn_request.php:804 ../../include/contact_selectors.php:76
msgid "Friendica" msgid "Friendica"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:793 #: ../../mod/dfrn_request.php:805
msgid "StatusNet/Federated Social Web" msgid "StatusNet/Federated Social Web"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:794 ../../mod/settings.php:629 #: ../../mod/dfrn_request.php:806 ../../mod/settings.php:629
#: ../../include/contact_selectors.php:80 #: ../../include/contact_selectors.php:80
msgid "Diaspora" msgid "Diaspora"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:795 #: ../../mod/dfrn_request.php:807
#, php-format #, php-format
msgid "" msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search " " - please do not use this form. Instead, enter %s into your Diaspora search "
"bar." "bar."
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:796 #: ../../mod/dfrn_request.php:808
msgid "Your Identity Address:" msgid "Your Identity Address:"
msgstr "" msgstr ""
#: ../../mod/dfrn_request.php:799 #: ../../mod/dfrn_request.php:811
msgid "Submit Request" msgid "Submit Request"
msgstr "" msgstr ""
@ -1233,8 +1195,8 @@ msgid "Discard"
msgstr "" msgstr ""
#: ../../mod/notifications.php:51 ../../mod/notifications.php:160 #: ../../mod/notifications.php:51 ../../mod/notifications.php:160
#: ../../mod/notifications.php:206 ../../mod/contacts.php:308 #: ../../mod/notifications.php:206 ../../mod/contacts.php:279
#: ../../mod/contacts.php:351 #: ../../mod/contacts.php:322
msgid "Ignore" msgid "Ignore"
msgstr "" msgstr ""
@ -1250,14 +1212,7 @@ msgstr ""
msgid "Personal" msgid "Personal"
msgstr "" msgstr ""
#: ../../mod/notifications.php:90 #: ../../mod/notifications.php:90 ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook/diabook-green/theme.php:229
#: ../../view/theme/diabook/diabook-red/theme.php:227
#: ../../view/theme/diabook/diabook-blue/theme.php:227
#: ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook/diabook-dark/theme.php:229
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
#: ../../view/theme/diabook/diabook-pink/theme.php:229
#: ../../include/nav.php:77 ../../include/nav.php:115 #: ../../include/nav.php:77 ../../include/nav.php:115
msgid "Home" msgid "Home"
msgstr "" msgstr ""
@ -1293,7 +1248,7 @@ msgid "suggested by %s"
msgstr "" msgstr ""
#: ../../mod/notifications.php:153 ../../mod/notifications.php:200 #: ../../mod/notifications.php:153 ../../mod/notifications.php:200
#: ../../mod/contacts.php:356 #: ../../mod/contacts.php:327
msgid "Hide this contact from others" msgid "Hide this contact from others"
msgstr "" msgstr ""
@ -1443,218 +1398,207 @@ msgstr ""
msgid "Contact has been unignored" msgid "Contact has been unignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:200 #: ../../mod/contacts.php:192
msgid "stopped following"
msgstr ""
#: ../../mod/contacts.php:221
msgid "Contact has been removed." msgid "Contact has been removed."
msgstr "" msgstr ""
#: ../../mod/contacts.php:251 #: ../../mod/contacts.php:222
#, php-format #, php-format
msgid "You are mutual friends with %s" msgid "You are mutual friends with %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:255 #: ../../mod/contacts.php:226
#, php-format #, php-format
msgid "You are sharing with %s" msgid "You are sharing with %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:260 #: ../../mod/contacts.php:231
#, php-format #, php-format
msgid "%s is sharing with you" msgid "%s is sharing with you"
msgstr "" msgstr ""
#: ../../mod/contacts.php:277 #: ../../mod/contacts.php:248
msgid "Private communications are not available for this contact." msgid "Private communications are not available for this contact."
msgstr "" msgstr ""
#: ../../mod/contacts.php:280 #: ../../mod/contacts.php:251
msgid "Never" msgid "Never"
msgstr "" msgstr ""
#: ../../mod/contacts.php:284 #: ../../mod/contacts.php:255
msgid "(Update was successful)" msgid "(Update was successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:284 #: ../../mod/contacts.php:255
msgid "(Update was not successful)" msgid "(Update was not successful)"
msgstr "" msgstr ""
#: ../../mod/contacts.php:286 #: ../../mod/contacts.php:257
msgid "Suggest friends" msgid "Suggest friends"
msgstr "" msgstr ""
#: ../../mod/contacts.php:290 #: ../../mod/contacts.php:261
#, php-format #, php-format
msgid "Network type: %s" msgid "Network type: %s"
msgstr "" msgstr ""
#: ../../mod/contacts.php:293 #: ../../mod/contacts.php:264
#, php-format #, php-format
msgid "%d contact in common" msgid "%d contact in common"
msgid_plural "%d contacts in common" msgid_plural "%d contacts in common"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../mod/contacts.php:298 #: ../../mod/contacts.php:269
msgid "View all contacts" msgid "View all contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 #: ../../mod/contacts.php:274 ../../mod/contacts.php:321
#: ../../mod/admin.php:579 #: ../../mod/admin.php:579
msgid "Unblock" msgid "Unblock"
msgstr "" msgstr ""
#: ../../mod/contacts.php:303 ../../mod/contacts.php:350 #: ../../mod/contacts.php:274 ../../mod/contacts.php:321
#: ../../mod/admin.php:578 #: ../../mod/admin.php:578
msgid "Block" msgid "Block"
msgstr "" msgstr ""
#: ../../mod/contacts.php:308 ../../mod/contacts.php:351 #: ../../mod/contacts.php:279 ../../mod/contacts.php:322
msgid "Unignore" msgid "Unignore"
msgstr "" msgstr ""
#: ../../mod/contacts.php:313 #: ../../mod/contacts.php:284
msgid "Repair" msgid "Repair"
msgstr "" msgstr ""
#: ../../mod/contacts.php:323 #: ../../mod/contacts.php:294
msgid "Contact Editor" msgid "Contact Editor"
msgstr "" msgstr ""
#: ../../mod/contacts.php:326 #: ../../mod/contacts.php:297
msgid "Profile Visibility" msgid "Profile Visibility"
msgstr "" msgstr ""
#: ../../mod/contacts.php:327 #: ../../mod/contacts.php:298
#, php-format #, php-format
msgid "" msgid ""
"Please choose the profile you would like to display to %s when viewing your " "Please choose the profile you would like to display to %s when viewing your "
"profile securely." "profile securely."
msgstr "" msgstr ""
#: ../../mod/contacts.php:328 #: ../../mod/contacts.php:299
msgid "Contact Information / Notes" msgid "Contact Information / Notes"
msgstr "" msgstr ""
#: ../../mod/contacts.php:329 #: ../../mod/contacts.php:300
msgid "Edit contact notes" msgid "Edit contact notes"
msgstr "" msgstr ""
#: ../../mod/contacts.php:334 ../../mod/contacts.php:507 #: ../../mod/contacts.php:305 ../../mod/contacts.php:478
#: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40 #: ../../mod/viewcontacts.php:62 ../../mod/nogroup.php:40
#, php-format #, php-format
msgid "Visit %s's profile [%s]" msgid "Visit %s's profile [%s]"
msgstr "" msgstr ""
#: ../../mod/contacts.php:335 #: ../../mod/contacts.php:306
msgid "Block/Unblock contact" msgid "Block/Unblock contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:336 #: ../../mod/contacts.php:307
msgid "Ignore contact" msgid "Ignore contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:337 #: ../../mod/contacts.php:308
msgid "Repair URL settings" msgid "Repair URL settings"
msgstr "" msgstr ""
#: ../../mod/contacts.php:338 #: ../../mod/contacts.php:309
msgid "View conversations" msgid "View conversations"
msgstr "" msgstr ""
#: ../../mod/contacts.php:340 #: ../../mod/contacts.php:311
msgid "Delete contact" msgid "Delete contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:344 #: ../../mod/contacts.php:315
msgid "Last update:" msgid "Last update:"
msgstr "" msgstr ""
#: ../../mod/contacts.php:345 #: ../../mod/contacts.php:316
msgid "Update public posts" msgid "Update public posts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:347 ../../mod/admin.php:1051 #: ../../mod/contacts.php:318 ../../mod/admin.php:1051
msgid "Update now" msgid "Update now"
msgstr "" msgstr ""
#: ../../mod/contacts.php:354 #: ../../mod/contacts.php:325
msgid "Currently blocked" msgid "Currently blocked"
msgstr "" msgstr ""
#: ../../mod/contacts.php:355 #: ../../mod/contacts.php:326
msgid "Currently ignored" msgid "Currently ignored"
msgstr "" msgstr ""
#: ../../mod/contacts.php:356 #: ../../mod/contacts.php:327
msgid "" msgid ""
"Replies/likes to your public posts <strong>may</strong> still be visible" "Replies/likes to your public posts <strong>may</strong> still be visible"
msgstr "" msgstr ""
#: ../../mod/contacts.php:405 #: ../../mod/contacts.php:376
msgid "Suggestions" msgid "Suggestions"
msgstr "" msgstr ""
#: ../../mod/contacts.php:410 ../../mod/group.php:191 #: ../../mod/contacts.php:381 ../../mod/group.php:191
msgid "All Contacts" msgid "All Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:415 #: ../../mod/contacts.php:386
msgid "Unblocked Contacts" msgid "Unblocked Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:421 #: ../../mod/contacts.php:392
msgid "Blocked Contacts" msgid "Blocked Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:427 #: ../../mod/contacts.php:398
msgid "Ignored Contacts" msgid "Ignored Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:433 #: ../../mod/contacts.php:404
msgid "Hidden Contacts" msgid "Hidden Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:483 #: ../../mod/contacts.php:454
msgid "Mutual Friendship" msgid "Mutual Friendship"
msgstr "" msgstr ""
#: ../../mod/contacts.php:487 #: ../../mod/contacts.php:458
msgid "is a fan of yours" msgid "is a fan of yours"
msgstr "" msgstr ""
#: ../../mod/contacts.php:491 #: ../../mod/contacts.php:462
msgid "you are a fan of" msgid "you are a fan of"
msgstr "" msgstr ""
#: ../../mod/contacts.php:508 ../../mod/nogroup.php:41 #: ../../mod/contacts.php:479 ../../mod/nogroup.php:41
msgid "Edit contact" msgid "Edit contact"
msgstr "" msgstr ""
#: ../../mod/contacts.php:529 #: ../../mod/contacts.php:500 ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook/diabook-green/theme.php:231
#: ../../view/theme/diabook/diabook-red/theme.php:229
#: ../../view/theme/diabook/diabook-blue/theme.php:229
#: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook/diabook-dark/theme.php:231
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
#: ../../view/theme/diabook/diabook-pink/theme.php:231
#: ../../include/nav.php:139 #: ../../include/nav.php:139
msgid "Contacts" msgid "Contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:533 #: ../../mod/contacts.php:504
msgid "Search your contacts" msgid "Search your contacts"
msgstr "" msgstr ""
#: ../../mod/contacts.php:534 ../../mod/directory.php:57 #: ../../mod/contacts.php:505 ../../mod/directory.php:57
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/contacts.php:535 ../../mod/directory.php:59 #: ../../mod/contacts.php:506 ../../mod/directory.php:59
#: ../../include/contact_widgets.php:33 #: ../../include/contact_widgets.php:33
msgid "Find" msgid "Find"
msgstr "" msgstr ""
@ -1810,7 +1754,7 @@ msgid " Cannot change to that email."
msgstr "" msgstr ""
#: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469 #: ../../mod/settings.php:461 ../../addon/facebook/facebook.php:469
#: ../../addon/impressum/impressum.php:75 #: ../../addon/impressum/impressum.php:77
#: ../../addon/openstreetmap/openstreetmap.php:80 #: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105 #: ../../addon/mathjax/mathjax.php:66 ../../addon/piwik/piwik.php:105
#: ../../addon/twitter/twitter.php:370 #: ../../addon/twitter/twitter.php:370
@ -2554,14 +2498,7 @@ msgstr ""
msgid "Profile Visibility Editor" msgid "Profile Visibility Editor"
msgstr "" msgstr ""
#: ../../mod/profperm.php:103 #: ../../mod/profperm.php:103 ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook/diabook-green/theme.php:230
#: ../../view/theme/diabook/diabook-red/theme.php:228
#: ../../view/theme/diabook/diabook-blue/theme.php:228
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook/diabook-dark/theme.php:230
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
#: ../../view/theme/diabook/diabook-pink/theme.php:230
#: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74 #: ../../include/profile_advanced.php:7 ../../include/profile_advanced.php:74
#: ../../include/nav.php:50 ../../boot.php:1458 #: ../../include/nav.php:50 ../../boot.php:1458
msgid "Profile" msgid "Profile"
@ -2747,36 +2684,17 @@ msgstr ""
#: ../../addon/facebook/facebook.php:1533 #: ../../addon/facebook/facebook.php:1533
#: ../../addon/communityhome/communityhome.php:158 #: ../../addon/communityhome/communityhome.php:158
#: ../../addon/communityhome/communityhome.php:167 #: ../../addon/communityhome/communityhome.php:167
#: ../../view/theme/diabook/diabook-green/theme.php:83
#: ../../view/theme/diabook/diabook-green/theme.php:92
#: ../../view/theme/diabook/diabook-red/theme.php:82
#: ../../view/theme/diabook/diabook-red/theme.php:91
#: ../../view/theme/diabook/diabook-blue/theme.php:82
#: ../../view/theme/diabook/diabook-blue/theme.php:91
#: ../../view/theme/diabook/theme.php:97 #: ../../view/theme/diabook/theme.php:97
#: ../../view/theme/diabook/theme.php:106 #: ../../view/theme/diabook/theme.php:106 ../../include/diaspora.php:1654
#: ../../view/theme/diabook/diabook-dark/theme.php:83 #: ../../include/conversation.php:48 ../../include/conversation.php:57
#: ../../view/theme/diabook/diabook-dark/theme.php:92 #: ../../include/conversation.php:121 ../../include/conversation.php:130
#: ../../view/theme/diabook/diabook-aerith/theme.php:83
#: ../../view/theme/diabook/diabook-aerith/theme.php:92
#: ../../view/theme/diabook/diabook-pink/theme.php:83
#: ../../view/theme/diabook/diabook-pink/theme.php:92
#: ../../include/diaspora.php:1654 ../../include/conversation.php:48
#: ../../include/conversation.php:57 ../../include/conversation.php:121
#: ../../include/conversation.php:130
msgid "status" msgid "status"
msgstr "" msgstr ""
#: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1537 #: ../../mod/like.php:144 ../../addon/facebook/facebook.php:1537
#: ../../addon/communityhome/communityhome.php:172 #: ../../addon/communityhome/communityhome.php:172
#: ../../view/theme/diabook/diabook-green/theme.php:97 #: ../../view/theme/diabook/theme.php:111 ../../include/diaspora.php:1670
#: ../../view/theme/diabook/diabook-red/theme.php:96 #: ../../include/conversation.php:65
#: ../../view/theme/diabook/diabook-blue/theme.php:96
#: ../../view/theme/diabook/theme.php:111
#: ../../view/theme/diabook/diabook-dark/theme.php:97
#: ../../view/theme/diabook/diabook-aerith/theme.php:97
#: ../../view/theme/diabook/diabook-pink/theme.php:97
#: ../../include/diaspora.php:1670 ../../include/conversation.php:65
#, php-format #, php-format
msgid "%1$s likes %2$s's %3$s" msgid "%1$s likes %2$s's %3$s"
msgstr "" msgstr ""
@ -2796,14 +2714,7 @@ msgstr ""
msgid "Access denied." msgid "Access denied."
msgstr "" msgstr ""
#: ../../mod/fbrowser.php:23 #: ../../mod/fbrowser.php:23 ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook/diabook-green/theme.php:232
#: ../../view/theme/diabook/diabook-red/theme.php:230
#: ../../view/theme/diabook/diabook-blue/theme.php:230
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook/diabook-dark/theme.php:232
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
#: ../../view/theme/diabook/diabook-pink/theme.php:232
#: ../../include/nav.php:51 ../../boot.php:1463 #: ../../include/nav.php:51 ../../boot.php:1463
msgid "Photos" msgid "Photos"
msgstr "" msgstr ""
@ -3956,14 +3867,7 @@ msgstr ""
msgid "No entries." msgid "No entries."
msgstr "" msgstr ""
#: ../../mod/suggest.php:38 #: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:158
#: ../../view/theme/diabook/diabook-green/theme.php:145
#: ../../view/theme/diabook/diabook-red/theme.php:143
#: ../../view/theme/diabook/diabook-blue/theme.php:143
#: ../../view/theme/diabook/theme.php:158
#: ../../view/theme/diabook/diabook-dark/theme.php:145
#: ../../view/theme/diabook/diabook-aerith/theme.php:145
#: ../../view/theme/diabook/diabook-pink/theme.php:145
#: ../../include/contact_widgets.php:34 #: ../../include/contact_widgets.php:34
msgid "Friend Suggestions" msgid "Friend Suggestions"
msgstr "" msgstr ""
@ -3978,14 +3882,7 @@ msgstr ""
msgid "Ignore/Hide" msgid "Ignore/Hide"
msgstr "" msgstr ""
#: ../../mod/directory.php:47 #: ../../mod/directory.php:47 ../../view/theme/diabook/theme.php:156
#: ../../view/theme/diabook/diabook-green/theme.php:143
#: ../../view/theme/diabook/diabook-red/theme.php:141
#: ../../view/theme/diabook/diabook-blue/theme.php:141
#: ../../view/theme/diabook/theme.php:156
#: ../../view/theme/diabook/diabook-dark/theme.php:143
#: ../../view/theme/diabook/diabook-aerith/theme.php:143
#: ../../view/theme/diabook/diabook-pink/theme.php:143
msgid "Global Directory" msgid "Global Directory"
msgstr "" msgstr ""
@ -4543,15 +4440,8 @@ msgid "Latest likes"
msgstr "" msgstr ""
#: ../../addon/communityhome/communityhome.php:155 #: ../../addon/communityhome/communityhome.php:155
#: ../../view/theme/diabook/diabook-green/theme.php:80 #: ../../view/theme/diabook/theme.php:94 ../../include/text.php:1302
#: ../../view/theme/diabook/diabook-red/theme.php:79 #: ../../include/conversation.php:45 ../../include/conversation.php:118
#: ../../view/theme/diabook/diabook-blue/theme.php:79
#: ../../view/theme/diabook/theme.php:94
#: ../../view/theme/diabook/diabook-dark/theme.php:80
#: ../../view/theme/diabook/diabook-aerith/theme.php:80
#: ../../view/theme/diabook/diabook-pink/theme.php:80
#: ../../include/text.php:1302 ../../include/conversation.php:45
#: ../../include/conversation.php:118
msgid "event" msgid "event"
msgstr "" msgstr ""
@ -4758,67 +4648,69 @@ msgstr ""
msgid "URL to embed:" msgid "URL to embed:"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:34 #: ../../addon/impressum/impressum.php:36
msgid "Impressum" msgid "Impressum"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:47
#: ../../addon/impressum/impressum.php:49 #: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:81 #: ../../addon/impressum/impressum.php:51
#: ../../addon/impressum/impressum.php:83
msgid "Site Owner" msgid "Site Owner"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:47 #: ../../addon/impressum/impressum.php:49
#: ../../addon/impressum/impressum.php:85 #: ../../addon/impressum/impressum.php:87
msgid "Email Address" msgid "Email Address"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:52 #: ../../addon/impressum/impressum.php:54
#: ../../addon/impressum/impressum.php:83 #: ../../addon/impressum/impressum.php:85
msgid "Postal Address" msgid "Postal Address"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:58 #: ../../addon/impressum/impressum.php:60
msgid "" msgid ""
"The impressum addon needs to be configured!<br />Please add at least the " "The impressum addon needs to be configured!<br />Please add at least the "
"<tt>owner</tt> variable to your config file. For other variables please " "<tt>owner</tt> variable to your config file. For other variables please "
"refer to the README file of the addon." "refer to the README file of the addon."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:81 #: ../../addon/impressum/impressum.php:83
msgid "The page operators name." msgid "The page operators name."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:82 #: ../../addon/impressum/impressum.php:84
msgid "Site Owners Profile" msgid "Site Owners Profile"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:82 #: ../../addon/impressum/impressum.php:84
msgid "Profile address of the operator." msgid "Profile address of the operator."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:83 #: ../../addon/impressum/impressum.php:85
msgid "How to contact the operator via snail mail." msgid "How to contact the operator via snail mail. You can use BBCode here."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:84 #: ../../addon/impressum/impressum.php:86
msgid "Notes" msgid "Notes"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:84 #: ../../addon/impressum/impressum.php:86
msgid "Additional notes that are displayed beneath the contact information." msgid ""
"Additional notes that are displayed beneath the contact information. You can "
"use BBCode here."
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:85 #: ../../addon/impressum/impressum.php:87
msgid "How to contact the operator via email. (will be displayed obfuscated)" msgid "How to contact the operator via email. (will be displayed obfuscated)"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:86 #: ../../addon/impressum/impressum.php:88
msgid "Footer note" msgid "Footer note"
msgstr "" msgstr ""
#: ../../addon/impressum/impressum.php:86 #: ../../addon/impressum/impressum.php:88
msgid "Text for the footer." msgid "Text for the footer. You can use BBCode here."
msgstr "" msgstr ""
#: ../../addon/buglink/buglink.php:15 #: ../../addon/buglink/buglink.php:15
@ -5448,228 +5340,89 @@ msgstr ""
msgid "Post to Posterous by default" msgid "Post to Posterous by default"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:29
#: ../../view/theme/diabook/diabook-red/theme.php:28
#: ../../view/theme/diabook/diabook-blue/theme.php:28
#: ../../view/theme/diabook/theme.php:43 #: ../../view/theme/diabook/theme.php:43
#: ../../view/theme/diabook/diabook-dark/theme.php:29
#: ../../view/theme/diabook/diabook-aerith/theme.php:29
#: ../../view/theme/diabook/diabook-pink/theme.php:29
msgid "Last users" msgid "Last users"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:58
#: ../../view/theme/diabook/diabook-red/theme.php:57
#: ../../view/theme/diabook/diabook-blue/theme.php:57
#: ../../view/theme/diabook/theme.php:72 #: ../../view/theme/diabook/theme.php:72
#: ../../view/theme/diabook/diabook-dark/theme.php:58
#: ../../view/theme/diabook/diabook-aerith/theme.php:58
#: ../../view/theme/diabook/diabook-pink/theme.php:58
msgid "Last likes" msgid "Last likes"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:103
#: ../../view/theme/diabook/diabook-red/theme.php:102
#: ../../view/theme/diabook/diabook-blue/theme.php:102
#: ../../view/theme/diabook/theme.php:117 #: ../../view/theme/diabook/theme.php:117
#: ../../view/theme/diabook/diabook-dark/theme.php:103
#: ../../view/theme/diabook/diabook-aerith/theme.php:103
#: ../../view/theme/diabook/diabook-pink/theme.php:103
msgid "Last photos" msgid "Last photos"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:141
#: ../../view/theme/diabook/diabook-red/theme.php:139
#: ../../view/theme/diabook/diabook-blue/theme.php:139
#: ../../view/theme/diabook/theme.php:154 #: ../../view/theme/diabook/theme.php:154
#: ../../view/theme/diabook/diabook-dark/theme.php:141
#: ../../view/theme/diabook/diabook-aerith/theme.php:141
#: ../../view/theme/diabook/diabook-pink/theme.php:141
msgid "Find Friends" msgid "Find Friends"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:142
#: ../../view/theme/diabook/diabook-red/theme.php:140
#: ../../view/theme/diabook/diabook-blue/theme.php:140
#: ../../view/theme/diabook/theme.php:155 #: ../../view/theme/diabook/theme.php:155
#: ../../view/theme/diabook/diabook-dark/theme.php:142
#: ../../view/theme/diabook/diabook-aerith/theme.php:142
#: ../../view/theme/diabook/diabook-pink/theme.php:142
msgid "Local Directory" msgid "Local Directory"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:144 #: ../../view/theme/diabook/theme.php:157 ../../include/contact_widgets.php:35
#: ../../view/theme/diabook/diabook-red/theme.php:142
#: ../../view/theme/diabook/diabook-blue/theme.php:142
#: ../../view/theme/diabook/theme.php:157
#: ../../view/theme/diabook/diabook-dark/theme.php:144
#: ../../view/theme/diabook/diabook-aerith/theme.php:144
#: ../../view/theme/diabook/diabook-pink/theme.php:144
#: ../../include/contact_widgets.php:35
msgid "Similar Interests" msgid "Similar Interests"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:146 #: ../../view/theme/diabook/theme.php:159 ../../include/contact_widgets.php:37
#: ../../view/theme/diabook/diabook-red/theme.php:144
#: ../../view/theme/diabook/diabook-blue/theme.php:144
#: ../../view/theme/diabook/theme.php:159
#: ../../view/theme/diabook/diabook-dark/theme.php:146
#: ../../view/theme/diabook/diabook-aerith/theme.php:146
#: ../../view/theme/diabook/diabook-pink/theme.php:146
#: ../../include/contact_widgets.php:37
msgid "Invite Friends" msgid "Invite Friends"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:161
#: ../../view/theme/diabook/diabook-green/theme.php:236
#: ../../view/theme/diabook/diabook-red/theme.php:159
#: ../../view/theme/diabook/diabook-red/theme.php:234
#: ../../view/theme/diabook/diabook-blue/theme.php:159
#: ../../view/theme/diabook/diabook-blue/theme.php:234
#: ../../view/theme/diabook/theme.php:175 #: ../../view/theme/diabook/theme.php:175
#: ../../view/theme/diabook/theme.php:253 #: ../../view/theme/diabook/theme.php:253
#: ../../view/theme/diabook/diabook-dark/theme.php:161
#: ../../view/theme/diabook/diabook-dark/theme.php:236
#: ../../view/theme/diabook/diabook-aerith/theme.php:161
#: ../../view/theme/diabook/diabook-aerith/theme.php:236
#: ../../view/theme/diabook/diabook-pink/theme.php:161
#: ../../view/theme/diabook/diabook-pink/theme.php:236
msgid "Community Pages" msgid "Community Pages"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:194
#: ../../view/theme/diabook/diabook-red/theme.php:192
#: ../../view/theme/diabook/diabook-blue/theme.php:192
#: ../../view/theme/diabook/theme.php:208 #: ../../view/theme/diabook/theme.php:208
#: ../../view/theme/diabook/diabook-dark/theme.php:194
#: ../../view/theme/diabook/diabook-aerith/theme.php:194
#: ../../view/theme/diabook/diabook-pink/theme.php:194
msgid "Help or @NewHere ?" msgid "Help or @NewHere ?"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:200
#: ../../view/theme/diabook/diabook-red/theme.php:198
#: ../../view/theme/diabook/diabook-blue/theme.php:198
#: ../../view/theme/diabook/theme.php:214 #: ../../view/theme/diabook/theme.php:214
#: ../../view/theme/diabook/diabook-dark/theme.php:200
#: ../../view/theme/diabook/diabook-aerith/theme.php:200
#: ../../view/theme/diabook/diabook-pink/theme.php:200
msgid "Connect Services" msgid "Connect Services"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:229 #: ../../view/theme/diabook/theme.php:246 ../../include/nav.php:49
#: ../../view/theme/diabook/diabook-red/theme.php:227 #: ../../include/nav.php:115
#: ../../view/theme/diabook/diabook-blue/theme.php:227
#: ../../view/theme/diabook/theme.php:246
#: ../../view/theme/diabook/diabook-dark/theme.php:229
#: ../../view/theme/diabook/diabook-aerith/theme.php:229
#: ../../view/theme/diabook/diabook-pink/theme.php:229
#: ../../include/nav.php:49 ../../include/nav.php:115
msgid "Your posts and conversations" msgid "Your posts and conversations"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:230 #: ../../view/theme/diabook/theme.php:247 ../../include/nav.php:50
#: ../../view/theme/diabook/diabook-red/theme.php:228
#: ../../view/theme/diabook/diabook-blue/theme.php:228
#: ../../view/theme/diabook/theme.php:247
#: ../../view/theme/diabook/diabook-dark/theme.php:230
#: ../../view/theme/diabook/diabook-aerith/theme.php:230
#: ../../view/theme/diabook/diabook-pink/theme.php:230
#: ../../include/nav.php:50
msgid "Your profile page" msgid "Your profile page"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:231
#: ../../view/theme/diabook/diabook-red/theme.php:229
#: ../../view/theme/diabook/diabook-blue/theme.php:229
#: ../../view/theme/diabook/theme.php:248 #: ../../view/theme/diabook/theme.php:248
#: ../../view/theme/diabook/diabook-dark/theme.php:231
#: ../../view/theme/diabook/diabook-aerith/theme.php:231
#: ../../view/theme/diabook/diabook-pink/theme.php:231
msgid "Your contacts" msgid "Your contacts"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:232 #: ../../view/theme/diabook/theme.php:249 ../../include/nav.php:51
#: ../../view/theme/diabook/diabook-red/theme.php:230
#: ../../view/theme/diabook/diabook-blue/theme.php:230
#: ../../view/theme/diabook/theme.php:249
#: ../../view/theme/diabook/diabook-dark/theme.php:232
#: ../../view/theme/diabook/diabook-aerith/theme.php:232
#: ../../view/theme/diabook/diabook-pink/theme.php:232
#: ../../include/nav.php:51
msgid "Your photos" msgid "Your photos"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:233 #: ../../view/theme/diabook/theme.php:250 ../../include/nav.php:52
#: ../../view/theme/diabook/diabook-red/theme.php:231
#: ../../view/theme/diabook/diabook-blue/theme.php:231
#: ../../view/theme/diabook/theme.php:250
#: ../../view/theme/diabook/diabook-dark/theme.php:233
#: ../../view/theme/diabook/diabook-aerith/theme.php:233
#: ../../view/theme/diabook/diabook-pink/theme.php:233
#: ../../include/nav.php:52
msgid "Your events" msgid "Your events"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:234 #: ../../view/theme/diabook/theme.php:251 ../../include/nav.php:53
#: ../../view/theme/diabook/diabook-red/theme.php:232
#: ../../view/theme/diabook/diabook-blue/theme.php:232
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook/diabook-dark/theme.php:234
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
#: ../../view/theme/diabook/diabook-pink/theme.php:234
#: ../../include/nav.php:53
msgid "Personal notes" msgid "Personal notes"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/theme.php:234 #: ../../view/theme/diabook/theme.php:251 ../../include/nav.php:53
#: ../../view/theme/diabook/diabook-red/theme.php:232
#: ../../view/theme/diabook/diabook-blue/theme.php:232
#: ../../view/theme/diabook/theme.php:251
#: ../../view/theme/diabook/diabook-dark/theme.php:234
#: ../../view/theme/diabook/diabook-aerith/theme.php:234
#: ../../view/theme/diabook/diabook-pink/theme.php:234
#: ../../include/nav.php:53
msgid "Your personal photos" msgid "Your personal photos"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/config.php:78
#: ../../view/theme/diabook/diabook-red/config.php:78
#: ../../view/theme/diabook/diabook-blue/config.php:78
#: ../../view/theme/diabook/diabook-dark/config.php:78
#: ../../view/theme/diabook/diabook-aerith/config.php:78
#: ../../view/theme/diabook/diabook-pink/config.php:78
#: ../../view/theme/diabook/config.php:93 #: ../../view/theme/diabook/config.php:93
#: ../../view/theme/quattro/config.php:54 #: ../../view/theme/quattro/config.php:54
msgid "Theme settings" msgid "Theme settings"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/config.php:79
#: ../../view/theme/diabook/diabook-red/config.php:79
#: ../../view/theme/diabook/diabook-blue/config.php:79
#: ../../view/theme/diabook/diabook-dark/config.php:79
#: ../../view/theme/diabook/diabook-aerith/config.php:79
#: ../../view/theme/diabook/diabook-pink/config.php:79
#: ../../view/theme/diabook/config.php:94 #: ../../view/theme/diabook/config.php:94
msgid "Set font-size for posts and comments" msgid "Set font-size for posts and comments"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/config.php:80
#: ../../view/theme/diabook/diabook-red/config.php:80
#: ../../view/theme/diabook/diabook-blue/config.php:80
#: ../../view/theme/diabook/diabook-dark/config.php:80
#: ../../view/theme/diabook/diabook-aerith/config.php:80
#: ../../view/theme/diabook/diabook-pink/config.php:80
#: ../../view/theme/diabook/config.php:95 #: ../../view/theme/diabook/config.php:95
msgid "Set line-height for posts and comments" msgid "Set line-height for posts and comments"
msgstr "" msgstr ""
#: ../../view/theme/diabook/diabook-green/config.php:81
#: ../../view/theme/diabook/diabook-red/config.php:81
#: ../../view/theme/diabook/diabook-blue/config.php:81
#: ../../view/theme/diabook/diabook-dark/config.php:81
#: ../../view/theme/diabook/diabook-aerith/config.php:81
#: ../../view/theme/diabook/diabook-pink/config.php:81
#: ../../view/theme/diabook/config.php:96 #: ../../view/theme/diabook/config.php:96
msgid "Set resolution for middle column" msgid "Set resolution for middle column"
msgstr "" msgstr ""
@ -6817,29 +6570,33 @@ msgid ""
"form has been opened for too long (>3 hours) before submitting it." "form has been opened for too long (>3 hours) before submitting it."
msgstr "" msgstr ""
#: ../../include/Contact.php:145 ../../include/conversation.php:809 #: ../../include/Contact.php:96
msgid "stopped following"
msgstr ""
#: ../../include/Contact.php:188 ../../include/conversation.php:809
msgid "View Status" msgid "View Status"
msgstr "" msgstr ""
#: ../../include/Contact.php:146 ../../include/conversation.php:810 #: ../../include/Contact.php:189 ../../include/conversation.php:810
msgid "View Profile" msgid "View Profile"
msgstr "" msgstr ""
#: ../../include/Contact.php:147 ../../include/conversation.php:811 #: ../../include/Contact.php:190 ../../include/conversation.php:811
msgid "View Photos" msgid "View Photos"
msgstr "" msgstr ""
#: ../../include/Contact.php:148 ../../include/Contact.php:161 #: ../../include/Contact.php:191 ../../include/Contact.php:204
#: ../../include/conversation.php:812 #: ../../include/conversation.php:812
msgid "Network Posts" msgid "Network Posts"
msgstr "" msgstr ""
#: ../../include/Contact.php:149 ../../include/Contact.php:161 #: ../../include/Contact.php:192 ../../include/Contact.php:204
#: ../../include/conversation.php:813 #: ../../include/conversation.php:813
msgid "Edit Contact" msgid "Edit Contact"
msgstr "" msgstr ""
#: ../../include/Contact.php:150 ../../include/Contact.php:161 #: ../../include/Contact.php:193 ../../include/Contact.php:204
#: ../../include/conversation.php:814 #: ../../include/conversation.php:814
msgid "Send PM" msgid "Send PM"
msgstr "" msgstr ""

View file

@ -0,0 +1,10 @@
{{ if $count }}
<div id="birthday-notice" class="birthday-notice fakelink' $classtoday" onclick="openClose('birthday-wrapper');">$event_reminders ($count)</div>
<div id="birthday-wrapper" style="display: none;" ><div id="birthday-title">$event_title</div>
<div id="birthday-title-end"></div>
{{ for $events as $event }}
<div class="birthday-list" id="birthday-$event.id"></a> <a href="events/$event.link">$event.title</a> $event.date </div>
{{ endfor }}
</div></div>
{{ endif }}

View file

@ -3,8 +3,17 @@
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script> src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
<script> <script>
function showEvent(eventid) {
$.get(
'$baseurl/events/?id='+eventid,
function(data){
$.fancybox(data);
}
);
}
$(document).ready(function() { $(document).ready(function() {
$('#events-calendar').fullCalendar({ $('#events-calendar').fullCalendar({
events: '$baseurl/events/json/', events: '$baseurl/events/json/',
header: { header: {
left: 'prev,next today', left: 'prev,next today',
@ -13,12 +22,7 @@
}, },
timeFormat: 'H(:mm)', timeFormat: 'H(:mm)',
eventClick: function(calEvent, jsEvent, view) { eventClick: function(calEvent, jsEvent, view) {
$.get( showEvent(calEvent.id);
'$baseurl/events/?id='+calEvent.id,
function(data){
$.fancybox(data);
}
);
}, },
eventRender: function(event, element, view) { eventRender: function(event, element, view) {
@ -55,70 +59,81 @@
} }
}) })
// center on date
var args=location.href.replace(baseurl,"").split("/");
if (args.length>=4) {
$("#events-calendar").fullCalendar('gotoDate',args[2] , args[3]-1);
}
// show event popup
var hash = location.hash.split("-")
if (hash.length==2 && hash[0]=="#link") showEvent(hash[1]);
}); });
</script> </script>
<script language="javascript" type="text/javascript" <script language="javascript" type="text/javascript"
src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script> src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
<script language="javascript" type="text/javascript"> <script language="javascript" type="text/javascript">
tinyMCE.init({ tinyMCE.init({
theme : "advanced", theme : "advanced",
mode : "textareas", mode : "textareas",
plugins : "bbcode,paste", plugins : "bbcode,paste",
theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code", theme_advanced_buttons1 : "bold,italic,underline,undo,redo,link,unlink,image,forecolor,formatselect,code",
theme_advanced_buttons2 : "", theme_advanced_buttons2 : "",
theme_advanced_buttons3 : "", theme_advanced_buttons3 : "",
theme_advanced_toolbar_location : "top", theme_advanced_toolbar_location : "top",
theme_advanced_toolbar_align : "center", theme_advanced_toolbar_align : "center",
theme_advanced_blockformats : "blockquote,code", theme_advanced_blockformats : "blockquote,code",
gecko_spellcheck : true, gecko_spellcheck : true,
paste_text_sticky : true, paste_text_sticky : true,
entity_encoding : "raw", entity_encoding : "raw",
add_unload_trigger : false, add_unload_trigger : false,
remove_linebreaks : false, remove_linebreaks : false,
force_p_newlines : false, force_p_newlines : false,
force_br_newlines : true, force_br_newlines : true,
forced_root_block : '', forced_root_block : '',
content_css: "$baseurl/view/custom_tinymce.css", content_css: "$baseurl/view/custom_tinymce.css",
theme_advanced_path : false, theme_advanced_path : false,
setup : function(ed) { setup : function(ed) {
ed.onInit.add(function(ed) { ed.onInit.add(function(ed) {
ed.pasteAsPlainText = true; ed.pasteAsPlainText = true;
}); });
}
});
$(document).ready(function() {
$('#event-share-checkbox').change(function() {
if ($('#event-share-checkbox').is(':checked')) {
$('#acl-wrapper').show();
}
else {
$('#acl-wrapper').hide();
}
}).trigger('change');
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-public').hide();
});
if(selstr == null) {
$('#jot-public').show();
} }
}).trigger('change'); });
});
$(document).ready(function() {
$('#event-share-checkbox').change(function() {
if ($('#event-share-checkbox').is(':checked')) {
$('#acl-wrapper').show();
}
else {
$('#acl-wrapper').hide();
}
}).trigger('change');
$('#contact_allow, #contact_deny, #group_allow, #group_deny').change(function() {
var selstr;
$('#contact_allow option:selected, #contact_deny option:selected, #group_allow option:selected, #group_deny option:selected').each( function() {
selstr = $(this).text();
$('#jot-public').hide();
});
if(selstr == null) {
$('#jot-public').show();
}
}).trigger('change');
});
</script> </script>

10
view/events_reminder.tpl Normal file
View file

@ -0,0 +1,10 @@
{{ if $count }}
<div id="event-notice" class="birthday-notice fakelink $classtoday" onclick="openClose('event-wrapper');">$event_reminders ($count)</div>
<div id="event-wrapper" style="display: none;" ><div id="event-title">$event_title</div>
<div id="event-title-end"></div>
{{ for $events as $event }}
<div class="event-list" id="event-$event.id"></a> <a href="events/$event.link">$event.title</a> $event.date </div>
{{ endfor }}
</div></div>
{{ endif }}

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -14,6 +14,41 @@ $a->theme_info = array(
function darkzero_NS_init(&$a) { function darkzero_NS_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -15,6 +15,42 @@ $a->theme_info = array(
function darkzero_init(&$a) { function darkzero_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -1243,7 +1243,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

View file

@ -1241,7 +1241,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

View file

@ -1203,7 +1203,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

View file

@ -1201,7 +1201,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 B

After

Width:  |  Height:  |  Size: 567 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 384 B

After

Width:  |  Height:  |  Size: 567 B

Before After
Before After

Binary file not shown.

Before

Width:  |  Height:  |  Size: 296 B

After

Width:  |  Height:  |  Size: 1 KiB

Before After
Before After

View file

@ -493,7 +493,7 @@ code {
float: right; float: right;
} }
.tool a { .tool a {
color: #3465a4; color: #88a9d2;
} }
.tool a:hover { .tool a:hover {
text-decoration: none; text-decoration: none;

View file

@ -440,7 +440,7 @@ a:hover {
clear: both; clear: both;
} }
.fakelink { .fakelink {
color: #1872A2; color: #88a9d2;
/* color: #3e3e8c; */ /* color: #3e3e8c; */
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;
@ -493,7 +493,7 @@ code {
float: right; float: right;
} }
.tool a { .tool a {
color: ##3F8FBA; color: ##3465a4;
} }
.tool a:hover { .tool a:hover {
text-decoration: none; text-decoration: none;
@ -1261,7 +1261,7 @@ transition: all 0.2s ease-in-out;
padding-top: 10px; padding-top: 10px;
} }
.tread-wrapper a{ .tread-wrapper a{
color: #1872A2; color: #88a9d2;
} }
.wall-item-decor { .wall-item-decor {

View file

@ -1220,7 +1220,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../diabook/icons/selected.png") no-repeat left center; background: url("../diabook/icons/selected.png") no-repeat left center;

View file

@ -1224,7 +1224,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../diabook/icons/selected.png") no-repeat left center; background: url("../diabook/icons/selected.png") no-repeat left center;

View file

@ -1220,7 +1220,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../diabook/icons/selected.png") no-repeat left center; background: url("../diabook/icons/selected.png") no-repeat left center;

View file

@ -1224,7 +1224,14 @@ aside #likes a:hover{
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../diabook/icons/selected.png") no-repeat left center; background: url("../diabook/icons/selected.png") no-repeat left center;

View file

@ -1232,7 +1232,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

View file

@ -1230,7 +1230,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
.group_selected { .group_selected {
background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center; background: url("../../../view/theme/diabook/icons/selected.png") no-repeat left center;

Binary file not shown.

After

Width:  |  Height:  |  Size: 444 B

View file

@ -136,7 +136,7 @@
</nav> </nav>
<div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a href="#top"><img src="view/theme/diabook/icons/scroll_top.png" alt="back to top" title="Back to top"></a></div> <div id="scrollup" style="position: fixed; bottom: 5px; right: 10px;"><a id="down" onclick="scrolldown()" ><img id="scroll_top_bottom" src="view/theme/diabook/icons/scroll_bottom.png" style="display:cursor !important;" alt="back to top" title="Back to top"></a></div>
<div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div> <div style="position: fixed; bottom: 3px; left: 25px;">$langselector</div>
<div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div> <div style="position: fixed; bottom: 23px; left: 5px;"><a href="http://pad.toktan.org/p/diabook" target="blank" ><img src="view/theme/diabook/icons/bluebug.png" title="report bugs for the theme diabook"/></a></div>

View file

@ -1195,7 +1195,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
/* widget */ /* widget */
.widget { .widget {

View file

@ -1198,7 +1198,14 @@ aside #side-peoplefind-url {
margin-right: 20px; margin-right: 20px;
} }
#login-submit-wrapper{ #login-submit-wrapper{
margin-bottom: 15px; padding-top: 120px;
margin-bottom: 12px;
}
aside #login-submit-button{
margin-left: 0px!important;
}
aside #login-extra-links{
padding-top: 0px!important;
} }
/* widget */ /* widget */
.widget { .widget {

View file

@ -356,19 +356,13 @@ $(document).ready(function() {
$(this).attr("src",newString+"?"+wmode+"&"+oldString); $(this).attr("src",newString+"?"+wmode+"&"+oldString);
} }
else $(this).attr("src",ifr_source+"?"+wmode); else $(this).attr("src",ifr_source+"?"+wmode);
}); });
$("a[href=#top]").click(function() {
$("html, body").animate({scrollTop:0}, "slow");
return false;
});
}); });
function yt_iframe() { function yt_iframe() {
$("iframe").load(function() { $("iframe").load(function() {
var ifr_src = $(this).contents().find("body iframe").attr("src"); var ifr_src = $(this).contents().find("body iframe").attr("src");
$("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent"); $("iframe").contents().find("body iframe").attr("src", ifr_src+"&wmode=transparent");
@ -376,6 +370,35 @@ function yt_iframe() {
}; };
function scrolldown(){
$("html, body").animate({scrollTop:$(document).height()}, "slow");
return false;
};
function scrolltop(){
$("html, body").animate({scrollTop:0}, "slow");
return false;
};
$(window).scroll(function () {
var scrollInfo = $(window).scrollTop();
if (scrollInfo <= "900"){
$("a#top").attr("id","down");
$("a#down").attr("onclick","scrolldown()");
$("img#scroll_top_bottom").attr("src","view/theme/diabook/icons/scroll_bottom.png");
}
if (scrollInfo > "900"){
$("a#down").attr("id","top");
$("a#top").attr("onclick","scrolltop()");
$("img#scroll_top_bottom").attr("src","view/theme/diabook/icons/scroll_top.png");
}
});
</script>'; </script>';
if($a->argv[0] === "settings" && local_user()) { if($a->argv[0] === "settings" && local_user()) {

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -2937,6 +2937,79 @@ aside input[type='text'] {
} }
.icon.dim { opacity: 0.3;filter:alpha(opacity=30); } .icon.dim { opacity: 0.3;filter:alpha(opacity=30); }
[class^="comment-edit-bb"] {
list-style: none;
display: none;
margin: 0px 0 -5px 60px;
width: 75%;
}
[class^="comment-edit-bb"] > li {
display: inline-block;
margin: 10px 10px 0 0;
visibility: none;
}
[class^="comment-edit-bb-end"] {
clear: both;
}
.editicon {
display: inline-block;
width: 21px;
height: 21px;
background: url(editicons.png) no-repeat;
border: 0;
text-decoration: none;
}
.editicon:hover {
border: 0;
}
.boldbb {
background-position: 0px 0px;
}
.boldbb:hover {
background-position: -22px 0px;
}
.italicbb {
background-position: 0px -22px;
}
.italicbb:hover {
background-position: -22px -22px;
}
.underlinebb {
background-position: 0px -44px;
}
.underlinebb:hover {
background-position: -22px -44px;
}
.quotebb {
background-position: 0px -66px;
}
.quotebb:hover {
background-position: -22px -66px;
}
.codebb {
background-position: 0px -88px;
}
.codebb:hover {
background-position: -22px -88px;
}
.imagebb {
background-position: -44px 0px;
}
.imagebb:hover {
background-position: -66px 0px;
}
.urlbb {
background-position: -44px -22px;
}
.urlbb:hover {
background-position: -66px -22px;
}
.videobb {
background-position: -44px -44px;
}
.videobb:hover {
background-position: -66px -44px;
}
.attachtype { .attachtype {
display: block; width: 20px; height: 23px; display: block; width: 20px; height: 23px;

View file

@ -4,6 +4,41 @@ $a->theme_info = array();
function duepuntozero_init(&$a) { function duepuntozero_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -6,6 +6,41 @@ $a->theme_info = array(
function greenzero_init(&$a) { function greenzero_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -6,6 +6,41 @@ $a->theme_info = array(
function purplezero_init(&$a) { function purplezero_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -0,0 +1 @@

View file

@ -0,0 +1,39 @@
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
<script language="javascript" type="text/javascript"
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
<script>
// start calendar from yesterday
var yesterday= new Date()
yesterday.setDate(yesterday.getDate()-1)
function showEvent(eventid) {
$.get(
'$baseurl/events/?id='+eventid,
function(data){
$.fancybox(data);
}
);
}
$(document).ready(function() {
$('#events-reminder').fullCalendar({
firstDay: yesterday.getDay(),
year: yesterday.getFullYear(),
month: yesterday.getMonth(),
date: yesterday.getDate(),
events: '$baseurl/events/json/',
header: {
left: '',
center: '',
right: ''
},
timeFormat: 'H(:mm)',
defaultView: 'basicWeek',
height: 50,
eventClick: function(calEvent, jsEvent, view) {
showEvent(calEvent.id);
}
});
});
</script>
<div id="events-reminder"></div>
<br>

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -6,6 +6,41 @@ $a->theme_info = array(
function slack_NS_init(&$a) { function slack_NS_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });

View file

@ -0,0 +1,61 @@
<div class="comment-wwedit-wrapper" id="comment-edit-wrapper-$id" style="display: block;">
<form class="comment-edit-form" id="comment-edit-form-$id" action="item" method="post" onsubmit="post_comment($id); return false;">
<input type="hidden" name="type" value="$type" />
<input type="hidden" name="profile_uid" value="$profile_uid" />
<input type="hidden" name="parent" value="$parent" />
<input type="hidden" name="return" value="$return_path" />
<input type="hidden" name="jsreload" value="$jsreload" />
<input type="hidden" name="preview" id="comment-preview-inp-$id" value="0" />
<div class="comment-edit-photo" id="comment-edit-photo-$id" >
<a class="comment-edit-photo-link" href="$mylink" title="$mytitle"><img class="my-comment-photo" src="$myphoto" alt="$mytitle" title="$mytitle" /></a>
</div>
<div class="comment-edit-photo-end"></div>
<ul class="comment-edit-bb-$id">
<li><a class="editicon boldbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','b', $id);"></a></li>
<li><a class="editicon italicbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','i', $id);"></a></li>
<li><a class="editicon underlinebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','u', $id);"></a></li>
<li><a class="editicon quotebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','quote', $id);"></a></li>
<li><a class="editicon codebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','code', $id);"></a></li>
<li><a class="editicon imagebb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','img', $id);"></a></li>
<li><a class="editicon urlbb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','url', $id);"></a></li>
<li><a class="editicon videobb shadow"
style="cursor: pointer;"
onclick="insertFormatting('$comment','video', $id);"></a></li>
</ul>
<div class="comment-edit-bb-end"></div>
<textarea id="comment-edit-text-$id" class="comment-edit-text-empty" name="body" onFocus="commentOpen(this,$id);cmtBbOpen($id);" onBlur="commentClose(this,$id);" >$comment</textarea>
{{ if $qcomment }}
<select id="qcomment-select-$id" name="qcomment-$id" class="qcomment" onchange="qCommentInsert(this,$id);" >
<option value=""></option>
{{ for $qcomment as $qc }}
<option value="$qc">$qc</option>
{{ endfor }}
</select>
{{ endif }}
<div class="comment-edit-text-end"></div>
<div class="comment-edit-submit-wrapper" id="comment-edit-submit-wrapper-$id" style="display: none;" >
<input type="submit" onclick="post_comment($id); return false;" id="comment-edit-submit-$id" class="comment-edit-submit" name="submit" value="$submit" />
<span onclick="preview_comment($id);" id="comment-edit-preview-link-$id" class="fakelink">$preview</span>
<div id="comment-edit-preview-$id" class="comment-edit-preview" style="display:none;"></div>
</div>
<div class="comment-edit-end"></div>
</form>
</div>

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

View file

@ -6,6 +6,41 @@ $a->theme_info = array(
function slackr_init(&$a) { function slackr_init(&$a) {
$a->page['htmlhead'] .= <<< EOT $a->page['htmlhead'] .= <<< EOT
<script> <script>
function insertFormatting(comment,BBcode,id) {
var tmpStr = $("#comment-edit-text-" + id).val();
if(tmpStr == comment) {
tmpStr = "";
$("#comment-edit-text-" + id).addClass("comment-edit-text-full");
$("#comment-edit-text-" + id).removeClass("comment-edit-text-empty");
openMenu("comment-edit-submit-wrapper-" + id);
}
textarea = document.getElementById("comment-edit-text-" +id);
if (document.selection) {
textarea.focus();
selected = document.selection.createRange();
if (BBcode == "url"){
selected.text = "["+BBcode+"]" + "http://" + selected.text + "[/"+BBcode+"]";
} else
selected.text = "["+BBcode+"]" + selected.text + "[/"+BBcode+"]";
} else if (textarea.selectionStart || textarea.selectionStart == "0") {
var start = textarea.selectionStart;
var end = textarea.selectionEnd;
if (BBcode == "url"){
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + "http://" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
} else
textarea.value = textarea.value.substring(0, start) + "["+BBcode+"]" + textarea.value.substring(start, end) + "[/"+BBcode+"]" + textarea.value.substring(end, textarea.value.length);
}
return true;
}
function cmtBbOpen(id) {
$(".comment-edit-bb-" + id).show();
}
function cmtBbClose(id) {
$(".comment-edit-bb-" + id).hide();
}
$(document).ready(function() { $(document).ready(function() {
$('html').click(function() { $("#nav-notifications-menu" ).hide(); }); $('html').click(function() { $("#nav-notifications-menu" ).hide(); });