]> ruin.nu Git - ndwebbie.git/blob - include.pl
minor fix
[ndwebbie.git] / include.pl
1 #**************************************************************************
2 #   Copyright (C) 2006 by Michael Andreen <harvATruinDOTnu>               *
3 #                                                                         *
4 #   This program is free software; you can redistribute it and/or modify  *
5 #   it under the terms of the GNU General Public License as published by  *
6 #   the Free Software Foundation; either version 2 of the License, or     *
7 #   (at your option) any later version.                                   *
8 #                                                                         *
9 #   This program is distributed in the hope that it will be useful,       *
10 #   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
11 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
12 #   GNU General Public License for more details.                          *
13 #                                                                         *
14 #   You should have received a copy of the GNU General Public License     *
15 #   along with this program; if not, write to the                         *
16 #   Free Software Foundation, Inc.,                                       *
17 #   51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.         *
18 #**************************************************************************/
19
20 use strict;
21
22
23 sub isMember {
24         return exists $ND::GROUPS{Members};
25 }
26
27 sub isHC {
28         return exists $ND::GROUPS{HC};
29 }
30
31 sub isDC {
32         return exists $ND::GROUPS{DC};
33 }
34
35 sub isBC {
36         return exists $ND::GROUPS{BC};
37 }
38
39 sub isOfficer {
40         return exists $ND::GROUPS{Officers};
41 }
42
43 sub parseMarkup {
44         my ($text) = @_;
45
46         $text =~ s{\n}{\n<br/>}g;
47         $text =~ s{\[B\](.*?)\[B\]}{<b>$1</b>};
48         return $text;
49 }
50
51 1;