stas 2004/04/19 16:14:50
Modified: lib/Apache ParseSource.pm
Log:
sort keys to make it easier to maintain (no code change)
Revision Changes Path
1.50 +13 -13 modperl-2.0/lib/Apache/ParseSource.pm
Index: ParseSource.pm
===================================================================
RCS file: /home/cvs/modperl-2.0/lib/Apache/ParseSource.pm,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -u -r1.49 -r1.50
--- ParseSource.pm 14 Apr 2004 03:39:31 -0000 1.49
+++ ParseSource.pm 19 Apr 2004 23:14:50 -0000 1.50
@@ -181,31 +181,31 @@
my %defines_wanted = (
Apache => {
common => [qw{OK DECLINED DONE}],
+ config => [qw{DECLINE_CMD}],
+ http => [qw{HTTP_}],
+ log => [qw(APLOG_)],
methods => [qw{M_ METHODS}],
+ mpmq => [qw{AP_MPMQ_}],
options => [qw{OPT_}],
- satisfy => [qw{SATISFY_}],
- remotehost => [qw{REMOTE_}],
- http => [qw{HTTP_}],
- config => [qw{DECLINE_CMD}],
- types => [qw{DIR_MAGIC_TYPE}],
override => [qw{OR_ ACCESS_CONF RSRC_CONF}],
- log => [qw(APLOG_)],
platform => [qw{CRLF CR LF}],
- mpmq => [qw{AP_MPMQ_}],
+ remotehost => [qw{REMOTE_}],
+ satisfy => [qw{SATISFY_}],
+ types => [qw{DIR_MAGIC_TYPE}],
},
APR => {
- table => [qw{APR_OVERLAP_TABLES_}],
- poll => [qw{APR_POLL}],
common => [qw{APR_SUCCESS}],
error => [qw{APR_E}],
+ filemode => ["APR_($filemode)"],
+ filepath => [qw{APR_FILEPATH_}],
fileperms => [qw{APR_\w(READ|WRITE|EXECUTE)}],
finfo => [qw{APR_FINFO_}],
- filepath => [qw{APR_FILEPATH_}],
- filemode => ["APR_($filemode)"],
flock => [qw{APR_FLOCK_}],
- socket => [qw{APR_SO_}],
- limit => [qw{APR_LIMIT}],
hook => [qw{APR_HOOK_}],
+ limit => [qw{APR_LIMIT}],
+ poll => [qw{APR_POLL}],
+ socket => [qw{APR_SO_}],
+ table => [qw{APR_OVERLAP_TABLES_}],
uri => [qw{APR_URI_}],
},
);