diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2008-12-25 16:31:58 -0500 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2008-12-25 16:31:58 -0500 |
commit | 0d406010ff8ffb8d891318bbaf6b6de1e2cb2578 (patch) | |
tree | 2101f7940988b9648a05efe06601465c8f1fab7f /IkiWiki | |
parent | e3b7d1892949090fd1f11e9a211b556b20558069 (diff) | |
download | ikiwiki-0d406010ff8ffb8d891318bbaf6b6de1e2cb2578.tar ikiwiki-0d406010ff8ffb8d891318bbaf6b6de1e2cb2578.tar.gz |
googlecalendar: Add runtime deprecation warning.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/googlecalendar.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/googlecalendar.pm b/IkiWiki/Plugin/googlecalendar.pm index 9e09d7dbb..24c2e1527 100644 --- a/IkiWiki/Plugin/googlecalendar.pm +++ b/IkiWiki/Plugin/googlecalendar.pm @@ -5,6 +5,8 @@ use warnings; use strict; use IkiWiki 2.00; +print STDERR "warning: the googlecalendar plugin is deprecated and will be removed in ikiwiki 3.0 (use the embed plugin instead)\n"; + sub import { hook(type => "getsetup", id => "googlecalendar", call => \&getsetup); |