ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/ext/map-style.ext
Revision: 1.1
Committed: Sat Jan 13 23:06:13 2007 UTC (17 years, 4 months ago) by root
Branch: MAIN
CVS Tags: rel-2_0, rel-2_1
Log Message:
WARNING: this release is BROKEN

- rewrote map handling. map types are now completely pluggable, maybe
  *too* pluggable, as everything is a plug-in now.
- mark mandatory extensions as such.
- handle overloaded attachable objects correctly.
- many minor changes.

File Contents

# User Rev Content
1 root 1.1 #! perl # MANDATORY
2    
3     cf::map->register (qr{^/styles/});
4    
5     sub init {
6     my ($self) = @_;
7    
8     $self->{deny_save} = 1;
9     $self->{deny_list} = 1;
10     $self->{deny_reset} = 1;
11     $self->{deny_activate} = 1;
12    
13     1
14     }
15    
16     1
17