annotate Lib/DOM.pm @ 31:d59526f6310e
Small fixes to Test framework (correct handlinf of the compilation errors in the test units)
Imported and refactored SQL DB schema from the old project
author |
Sergey |
date |
Mon, 09 Nov 2009 01:39:16 +0300 |
parents |
03e58a454b20 |
children |
16ada169ca75 |
rev |
line source |
0
|
1 package DOM;
|
|
2 require DOM::Site;
|
|
3 use Common;
|
|
4
|
|
5 my $GlobalSite;
|
|
6
|
|
7 sub Site {
|
|
8 my $self = shift;
|
|
9
|
|
10 $GlobalSite = construct DOM::Site if not $GlobalSite;
|
|
11 return $GlobalSite;
|
|
12 }
|
|
13
|
|
14 sub Cleanup {
|
|
15 $GlobalSite->Dispose if $GlobalSite;
|
|
16 undef $GlobalSite;
|
|
17 }
|
|
18
|
|
19 1; |