Merge branch 'dev' of https://github.com/redmatrix/hubzilla into xdev_merge
This commit is contained in:
commit
76d8e59e9b
@ -152,7 +152,8 @@ class Channel extends \Zotlabs\Web\Controller {
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true,
|
||||
'jotnets' => true
|
||||
'jotnets' => true,
|
||||
'reset' => t('Reset form')
|
||||
);
|
||||
|
||||
$o .= status_editor($a,$x);
|
||||
|
@ -67,8 +67,7 @@ class Display extends \Zotlabs\Web\Controller {
|
||||
'default_location' => $channel['channel_location'],
|
||||
'nickname' => $channel['channel_address'],
|
||||
'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
||||
|
||||
'acl' => populate_acl($channel_acl),
|
||||
'acl' => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
||||
'permissions' => $channel_acl,
|
||||
'bang' => '',
|
||||
'visitor' => true,
|
||||
@ -78,7 +77,8 @@ class Display extends \Zotlabs\Web\Controller {
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true,
|
||||
'jotnets' => true
|
||||
'jotnets' => true,
|
||||
'reset' => t('Reset form')
|
||||
);
|
||||
|
||||
$o = '<div id="jot-popup">';
|
||||
|
@ -120,8 +120,7 @@ class Hq extends \Zotlabs\Web\Controller {
|
||||
'default_location' => $channel['channel_location'],
|
||||
'nickname' => $channel['channel_address'],
|
||||
'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
||||
|
||||
'acl' => populate_acl($channel_acl),
|
||||
'acl' => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
||||
'permissions' => $channel_acl,
|
||||
'bang' => '',
|
||||
'visitor' => true,
|
||||
@ -131,7 +130,8 @@ class Hq extends \Zotlabs\Web\Controller {
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true,
|
||||
'jotnets' => true
|
||||
'jotnets' => true,
|
||||
'reset' => t('Reset form')
|
||||
];
|
||||
|
||||
$o = replace_macros(get_markup_template("hq.tpl"),
|
||||
|
@ -66,8 +66,7 @@ class Pubstream extends \Zotlabs\Web\Controller {
|
||||
'default_location' => $channel['channel_location'],
|
||||
'nickname' => $channel['channel_address'],
|
||||
'lockstate' => (($group || $cid || $channel['channel_allow_cid'] || $channel['channel_allow_gid'] || $channel['channel_deny_cid'] || $channel['channel_deny_gid']) ? 'lock' : 'unlock'),
|
||||
|
||||
'acl' => populate_acl($channel_acl),
|
||||
'acl' => populate_acl($channel_acl,true, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_stream'), get_post_aclDialogDescription(), 'acl_dialog_post'),
|
||||
'permissions' => $channel_acl,
|
||||
'bang' => '',
|
||||
'visitor' => true,
|
||||
@ -77,7 +76,8 @@ class Pubstream extends \Zotlabs\Web\Controller {
|
||||
'editor_autocomplete' => true,
|
||||
'bbco_autocomplete' => 'bbcode',
|
||||
'bbcode' => true,
|
||||
'jotnets' => true
|
||||
'jotnets' => true,
|
||||
'reset' => t('Reset form')
|
||||
);
|
||||
|
||||
$o = '<div id="jot-popup">';
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo usage: $0 repo_url nickname
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo usage: $0 repo_url nickname
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
if [ $# -lt 2 ]; then
|
||||
echo usage: $0 repo_url nickname
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo usage: $0 repository
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
|
@ -1,4 +1,6 @@
|
||||
#!/usr/bin/env bash -f
|
||||
#!/usr/bin/env bash
|
||||
|
||||
set -f
|
||||
|
||||
if [ $# -ne 1 ]; then
|
||||
echo usage: $0 repository
|
||||
|
Reference in New Issue
Block a user