From f7ef2c277181311444224e9041d5fc41141c662c Mon Sep 17 00:00:00 2001 From: Shish Date: Fri, 9 Oct 2009 13:12:18 +0100 Subject: [PATCH] but it is old --- contrib/oldtips/.main.php.swp | Bin 12288 -> 0 bytes contrib/oldtips/main.php | 29 ----------------------------- contrib/oldtips/main.php~ | 30 ------------------------------ contrib/oldtips/test.php | 23 ----------------------- contrib/oldtips/theme.php | 9 --------- 5 files changed, 91 deletions(-) delete mode 100644 contrib/oldtips/.main.php.swp delete mode 100644 contrib/oldtips/main.php delete mode 100644 contrib/oldtips/main.php~ delete mode 100644 contrib/oldtips/test.php delete mode 100644 contrib/oldtips/theme.php diff --git a/contrib/oldtips/.main.php.swp b/contrib/oldtips/.main.php.swp deleted file mode 100644 index 43f45cf6336544e02e0174b12ced98f4c1df1073..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 12288 zcmeI2zi-n(6vwX!h6qZlB1WV~$l#=;E=2-ViVGD#R8&ya0t-da*}m8(>^sYMZVIS$ z?mxl+5(5(x{{|~U{0$7iz&j_E5EaV80(w@yIs5#*yZ1il43S?r|7i6dT%Ma}cuX^v z?C;)P{WLf_HN}`orAb}?nBzIOyyRm{c>85Np^x8rF2!7ZrG%Z+W#Vry_>oq&l%a2B zVf>s+HCLp?_*uz81c<;`0+sD|uS~Lw3m592`nl#=I5qQd>@YGA0U|&IhyW2F0z`la z5CJ0a{}8an1lz-Oj*L<|GioP(Ye$#V5CI}U1c(3;AOb{y2oM1xKm>>Y5g-EpAORjT zwtIrH$w>?z-~S){|Nn;X|G%O>qu!%lp<>hq%16zjI;dl)k0%-XfZ9iGp}MH!s4qC@ zJJeg$8`Nvm9;%1BggT9yK~1CF`adv^?<3 z13!(H*cQrm4|N0uS0d{MJdS%|rlY4`%Y^N#ZiESk-I-R26+5=43oEtqny!4g=X#n4 zMz{t_3}92(s#vLKX+A(xeZQ!}Oh(YJROE((Rzq7QvskLc8%EZK7i<`*i?-3SSee}o zY$|fm4Pt4Ej6dt)!d_pOIk)xlUMrJIwCf-m^*P2-x8^Y~OB_&g6%Spe{lq0Tv>Eh? zog&k*@S0nyc^+CWr_n_26b(fwl3por;Rs#+mYVg^_(yvSi@W o(_xuDEDc1Mb7Mt${nx_!z&Y>p90zU;*TXcK-|4WWWmjJR6H`YlD*ylh diff --git a/contrib/oldtips/main.php b/contrib/oldtips/main.php deleted file mode 100644 index c963cf68..00000000 --- a/contrib/oldtips/main.php +++ /dev/null @@ -1,29 +0,0 @@ - - * License: GPLv2 - * Description: Show a random line of text in the subheader space - * Documentation: - * Formatting is done with bbcode - */ - -class Tips extends SimpleExtension { - public function onPostListBuilding($event) { - global $config, $page; - if(strlen($config->get_string("tips_text")) > 0) { - $tips = $config->get_string("tips_text"); - $tips = preg_replace("/\n+/", "\n", $tips); - $lines = explode("\n", $tips); - $line = $lines[array_rand($lines)]; - $this->theme->display_tip(format_text($line)); - } - } - - public function onSetupBuilding($event) { - $sb = new SetupBlock("Tips"); - $sb->add_longtext_option("tips_text"); - $event->panel->add_block($sb); - } -} -?> diff --git a/contrib/oldtips/main.php~ b/contrib/oldtips/main.php~ deleted file mode 100644 index 24db4dea..00000000 --- a/contrib/oldtips/main.php~ +++ /dev/null @@ -1,30 +0,0 @@ - - * License: GPLv2 - * Description: Show a random line of text in the subheader space - * Documentation: - * Formatting is done with bbcode - */ - -class Tips extends SimpleExtension { - public function onPostListBuilding($event) { - global $config, $page; - if(strlen($config->get_string("tips_text")) > 0) { - $icon = null; - $tips = $config->get_string("tips_text"); - $tips = preg_replace("/\n+/", "\n", $tips); - $lines = explode("\n", $tips); - $line = $lines[array_rand($lines)]; - $this->theme->display_tip(format_text($line)); - } - } - - public function onSetupBuilding($event) { - $sb = new SetupBlock("Tips"); - $sb->add_longtext_option("tips_text"); - $event->panel->add_block($sb); - } -} -?> diff --git a/contrib/oldtips/test.php b/contrib/oldtips/test.php deleted file mode 100644 index bdc2125d..00000000 --- a/contrib/oldtips/test.php +++ /dev/null @@ -1,23 +0,0 @@ -log_in_as_admin(); - - $this->get_page("setup"); - $this->setField("_config_tips_text", "alert:kittens"); - $this->click("Save Settings"); - - $this->get_page("post/list"); - $this->assertText("kittens"); - - $this->get_page("setup"); - $this->setField("_config_news_text", ""); - $this->click("Save Settings"); - - $this->get_page("post/list"); - $this->assertNoText("kittens"); - - $this->log_out(); - } -} -?> diff --git a/contrib/oldtips/theme.php b/contrib/oldtips/theme.php deleted file mode 100644 index 1aa0bb38..00000000 --- a/contrib/oldtips/theme.php +++ /dev/null @@ -1,9 +0,0 @@ -add_block(new Block(null, $text, "main", 5)); - } -} -?>