There are 40 plants in blossom on May the 22nd.
Blue Toadflax Linaria canadensis blossoms between May 23 and Jun 17 Bluets Houstonia caerulea Apr 18 to Jun 18 Canada Mayflower Maianthemum canadense May 15 to Jun 03 Celandine Chelidonium majus May 07 to Sep 11 Cleavers Galium aparine May 15 to May 27 Common Chickweed Stellaria media Mar 26 to Jun 09 Common Cinquefoil Potentilla simplex Apr 30 to Aug 19 Common Dandelion Taraxacum officinale Apr 03 to May 21 Common Winter Cress Barbarea vulgaris Apr 25 to May 30 Cow Vetch Vicia cracca May 23 to Aug 29 Dame's Violet Hesperis matronalis May 15 to Jun 18 Dwarf Cinquefoil Potentilla canadensis Apr 18 to May 30 False Solomon's Seal Smilacina racemosa May 15 to May 30 Field Hawkweed Hieracium pratense May 23 to Sep 07 Garlic Mustard Alliaria officinalis Apr 29 to Jun 17 Golden Alexanders Zizia aurea May 15 to May 30 Great Chickweed Stellaria pubera May 07 to Jun 19 Ground Ivy Glechoma hederacea Apr 20 to Jun 18 Hooked Crowfoot Ranunculus recurvatus May 18 to May 23 Jack-in-the-pulpit Arisaema atrorubens May 18 to May 23 Japanese Honeysuckle Lonicera japonica May 21 to May 30 Larger Blueflag Iris versicolor May 21 to Jun 05 Moss Phlox Phlox subulata Apr 16 to Jun 01 Mouse-ear Chickweed Cerastium vulgatum Apr 24 to May 27 Myrtle Vinca minor Apr 11 to Jun 01 Northern White Violet Viola pallens Apr 21 to May 21 Oxeye Daisy Chrysanthemum leucanthemum May 15 to Aug 02 Pink Lady Slipper Cypripedium acaule May 15 to May 28 Red Clover Trifolium pratense May 23 to Oct 24 Small Jack-in-the-pulpit Arisaema triphyllum May 18 to May 23 Tall Buttercup Ranunculus acris May 15 to Jul 16 Thyme-leaved Speedwell Veronica serpyllifolia May 10 to Aug 02 True Forget-me-not Myosotis scorpioides May 02 to Jun 07 Water Hemlock Cicuta maculata May 15 to Jul 16 Whit.... |
Toot-O-Matic with Java 2 v1.4.2_05 For Support for this phpBB Forum MOD please visit the phpBB MOD Database Easy No BBcode LinksGreaseMonkey Userscripts - Really Valid? - Really Valid CSS? - Troll Blocker - Troll Blocker 2 - Troll Blocker 3 - No Pop-up Links phpBB2 Forum MODs - Easy Banned Ordering - Easy No BBcode Links - Block DNSBL Blacklisted Posting - Block DNSBL Blacklisted Posting - Black WordPress - Clean Options Plugin - Error Reporting Plugin - Ping Watcher Plugin - widgets.php Hack - 2.2 Classes and Functions - 2.3 Classes and Functions - 2.6 Classes and Functions - 2.7 Classes and Functions - 2.8 Classes and Functions - 2.9 Classes and Functions - 3.0 Classes and Functions bbPress - 1.0 Constants, Classes and Functions - 1.0 Actions and Filters - 1.0 Actions and Filters (refined list) anti-SPAM - DShield's IP list ##############################################################
## MOD Title: Easy No BBcode Links
## MOD Author: Mittineague < N/A > (N/A) http://www.mittineague.com
## MOD Description: Removes the ability to use URL BBcode.
## Removes "make clickable" text URLs.
## Removes URL BBcode button and it's "alt-key" help.
## MOD Version: 1.0.0
##
## Installation Level: Easy
## Installation Time: ~ 1 Minute
##
## Files To Edit: language/lang_english/lang_main.php
## includes/bbcode.php
## templates/subSilver/posting_body.tpl
## language/lang_english/lang_bbcode.php
##
## Included Files: N/A
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2
##############################################################
## For security purposes, please check: http://www.phpbb.com/mods/
## for the latest version of this MOD. Although MODs are checked
## before being allowed in the MODs Database there is no guarantee
## that there are no security problems within the MOD. No support
## will be given for MODs not found within the MODs Database which
## can be found at http://www.phpbb.com/mods/
##############################################################
## Author Notes:
##
## URLs - not links - can still be entered in posts and
## will be seen as non-clickable text (which can still
## be changed by using the ACP "word censors").
##
##############################################################
## MOD History:
##
## 2007-01-08 - Version 1.0.0
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD
##############################################################
#
#-----[ OPEN ]------------------------------------------
#
language/lang_english/lang_main.php
#
#-----[ FIND ]------------------------------------------
#
$lang['bbcode_w_help'] = 'Insert URL: [url]http://url[/url] or [url=http://url]URL text[/url] (alt+w)';
#
#-----[ REPLACE WITH ]------------------------------------
#
$lang['bbcode_w_help'] = 'No links in posts - Admin';
$lang['link_replacement_text'] = '<SNIP/> No links in posts - Admin ';
#
#-----[ OPEN ]------------------------------------------
#
includes/bbcode.php
#
#-----[ FIND ]------------------------------------------
#
$bbcode_tpl['url4'] = str_replace('{DESCRIPTION}', '\\3', $bbcode_tpl['url4']);
#
#-----[ AFTER, ADD ]------------------------------------
#
$bbcode_tpl['no_links'] = $lang['link_replacement_text'];
$bbcode_tpl['url1'] = $bbcode_tpl['no_links'];
$bbcode_tpl['url2'] = $bbcode_tpl['no_links'];
$bbcode_tpl['url3'] = $bbcode_tpl['no_links'];
$bbcode_tpl['url4'] = $bbcode_tpl['no_links'];
#
#-----[ FIND ]------------------------------------------
#
$ret = ' ' . $text;
#
#-----[ AFTER, ADD ]------------------------------------
#
/*
#
#-----[ FIND ]------------------------------------------
#
// Remove our padding..
$ret = substr($ret, 1);
#
#-----[ BEFORE, ADD ]------------------------------------
#
*/
#
#-----[ OPEN ]------------------------------------------
#
templates/subSilver/posting_body.tpl
#
#-----[ FIND ]------------------------------------------
#
<td><span class="genmed">
<input type="button" class="button" accesskey="w" name="addbbcode16" value="URL" style="text-decoration: underline; width: 40px" onClick="bbstyle(16)" onMouseOver="helpline('w')" />
</span></td>
#
#-----[ REPLACE WITH ]------------------------------------
#
<td><span class="genmed"></span></td>
#
#-----[ DIY INSTRUCTIONS ]------------------------------------
#
This MOD does NOT remove the instructions similar
to those below regarding the use of the URL bbtags.
OPEN - language/lang_english/lang_bbcode.php
FIND -
$faq[] = array("--", "Creating Links");
$faq[] = array("Linking to another site", "phpBB BBCode supports a number of ways of creating URIs, Uniform Resource Indicators better known as URLs.
The first of these uses the [url=][/url] tag; whatever you type after the = sign will cause the contents of that tag to act as a URL.
For example, to link to phpBB.com you could use:
[url=http://www.phpbb.com/]Visit phpBB![/url]
This would generate the following link, Visit phpBB! You will notice the link opens in a new window so the user can continue browsing the forums if they wish.
If you want the URL itself displayed as the link you can do this by simply using:
[url]http://www.phpbb.com/[/url]
This would generate the following link: http://www.phpbb.com/
Additionally phpBB features something called Magic Links which will turn any syntatically correct URL into a link without you needing to specify any tags or even the leading http://.
For example typing www.phpbb.com into your message will automatically lead to www.phpbb.com being output when you view the message.
The same thing applies equally to email addresses; you can either specify an address explicitly, like:
[email]no.one@domain.adr[/email]
which will output no.one@domain.adr or you can just type no.one@domain.adr into your message and it will be automatically converted when you view.
As with all the BBCode tags you can wrap URLs around any of the other tags such as [img][/img] (see next entry), [b][/b], etc.
As with the formatting tags it is up to you to ensure the correct open and close order is following. For example:
[url=http://www.phpbb.com/][img]http://www.phpbb.com/images/phplogo.gif[/url][/img]
is not correct which may lead to your post being deleted so take care.";
REMOVE
or
REPLACE WITH - your own message. Remember, using " will terminate the string.
#
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------
#
# EoM | |||||||
|
|
||||||||