~kosova/+junk/tuxfamily-twiki

« back to all changes in this revision

Viewing changes to foswiki/lib/TWiki/Prefs.pm

  • Committer: James Michael DuPont
  • Date: 2009-07-18 19:58:49 UTC
  • Revision ID: jamesmikedupont@gmail.com-20090718195849-vgbmaht2ys791uo2
added foswiki

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
package TWiki::Prefs;
 
2
 
 
3
# Bridge between TWiki::Prefs and Foswiki::Prefs
 
4
 
 
5
use strict;
 
6
 
 
7
use Foswiki::Prefs;
 
8
 
 
9
 
 
10
sub new { Foswiki::Prefs::new(@_) }
 
11
sub finish { Foswiki::Prefs::finish(@_) }
 
12
sub pushPreferences { Foswiki::Prefs::pushPreferences(@_) }
 
13
sub pushWebPreferences { Foswiki::Prefs::pushWebPreferences(@_) }
 
14
sub pushGlobalPreferences { Foswiki::Prefs::pushGlobalPreferences(@_) }
 
15
sub pushGlobalPreferencesSiteSpecific { Foswiki::Prefs::pushGlobalPreferencesSiteSpecific(@_) }
 
16
sub pushPreferenceValues { Foswiki::Prefs::pushPreferenceValues(@_) }
 
17
sub mark { Foswiki::Prefs::mark(@_) }
 
18
sub restore { Foswiki::Prefs::restore(@_) }
 
19
sub getPreferencesValue { Foswiki::Prefs::getPreferencesValue(@_) }
 
20
sub isFinalised { Foswiki::Prefs::isFinalised(@_) }
 
21
sub getTopicPreferencesValue { Foswiki::Prefs::getTopicPreferencesValue(@_) }
 
22
sub getTextPreferencesValue { Foswiki::Prefs::getTextPreferencesValue(@_) }
 
23
sub getWebPreferencesValue { Foswiki::Prefs::getWebPreferencesValue(@_) }
 
24
sub setPreferencesValue { Foswiki::Prefs::setPreferencesValue(@_) }
 
25
sub stringify { Foswiki::Prefs::stringify(@_) }
 
26
 
 
27
1;