]> git.mxchange.org Git - friendica.git/commitdiff
use noscrape by default, add opt-out option to disable it
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 13 Oct 2014 17:19:54 +0000 (19:19 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 13 Oct 2014 17:19:54 +0000 (19:19 +0200)
mod/admin.php
mod/friendica.php
mod/noscrape.php
view/templates/admin_site.tpl

index 12ab2bea5fdc33829fa8ae830c8964c12f1b289f..99f72020def4fdaf2ec5349f839902c70ef56a1e 100644 (file)
@@ -366,7 +366,7 @@ function admin_page_site_post(&$a){
        $basepath               =       ((x($_POST,'basepath'))                 ? notags(trim($_POST['basepath']))              : '');
        $singleuser             =       ((x($_POST,'singleuser'))               ? notags(trim($_POST['singleuser']))            : '');
        $proxy_disabled         =       ((x($_POST,'proxy_disabled'))           ? True                                          : False);
-       $enable_noscrape = ((x($_POST,'enable_noscrape')) ? true : false);
+       $disable_noscrape = ((x($_POST,'disable_noscrape')) ? true : false);
        if($ssl_policy != intval(get_config('system','ssl_policy'))) {
                if($ssl_policy == SSL_POLICY_FULL) {
                        q("update `contact` set
@@ -491,7 +491,7 @@ function admin_page_site_post(&$a){
        set_config('system','temppath', $temppath);
        set_config('system','basepath', $basepath);
        set_config('system','proxy_disabled', $proxy_disabled);
-       set_config('system','enable_noscrape', $enable_noscrape);
+       set_config('system','disable_noscrape', $disable_noscrape);
 
        info( t('Site settings updated.') . EOL);
        goaway($a->get_baseurl(true) . '/admin/site' );
@@ -654,7 +654,7 @@ function admin_page_site(&$a) {
 
                '$relocate_url'     => array('relocate_url', t("New base url"), $a->get_baseurl(), "Change base url for this server. Sends relocate message to all DFRN contacts of all users."),
 
-               '$enable_noscrape'=> array('enable_noscrape', t("Enable noscrape"), get_config('system','enable_noscrape'), t("The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping.")),
+               '$disable_noscrape'=> array('disable_noscrape', t("Disable noscrape"), get_config('system','disable_noscrape'), t("The noscrape feature speeds up directory submissions by using JSON data instead of HTML scraping. Disabling it will cause higher load on your server and the directory server.")),
        '$form_security_token' => get_form_security_token("admin_site")
 
        ));
index 47d815dea91924d6c86f6494ab53e142facd3f34..ba212762950e65981e309682489e6fdf06c4e040 100644 (file)
@@ -41,7 +41,7 @@ function friendica_init(&$a) {
                );
                
                //Enable noscrape?
-               if(!!get_config('system','enable_noscrape'))
+               if(!get_config('system','disable_noscrape'))
                        $data['no_scrape_url'] = $a->get_baseurl().'/noscrape';
 
                echo json_encode($data);
index 8863d3391d2f169be8b8393bd95d339dbd98ec3f..e037300fc20c9b993fe7ca863ab23f022e537b62 100644 (file)
@@ -2,7 +2,7 @@
 
 function noscrape_init(&$a) {
        
-       if(!get_config('system','enable_noscrape'))
+       if(get_config('system','disable_noscrape'))
                killme();
        
        if($a->argc > 1)
index 2a4aa985e776b9308378c0e4504a117e852da9c7..21b0ec0196c2559339a8ac9a49e3fd0554fc081b 100644 (file)
        {{include file="field_checkbox.tpl" field=$suppress_language}}
 
        <h3>{{$performance}}</h3>
-       {{include file="field_checkbox.tpl" field=$enable_noscrape}}
+       {{include file="field_checkbox.tpl" field=$disable_noscrape}}
        {{include file="field_checkbox.tpl" field=$use_fulltext_engine}}
        {{include file="field_input.tpl" field=$itemcache}}
        {{include file="field_input.tpl" field=$itemcache_duration}}