Changeset 4679dc426e34233db01cfe4bbba462321eac2db9
- Timestamp:
- 01/29/07 12:55:28
(2 years ago)
- Author:
- Christopher Jung <bktheg@web.de>
- git-committer:
- Christopher Jung <bktheg@web.de> 1170071728 +0100
- git-parent:
[aa041306d3f06b2a81778b502260d0ccff630da0]
- git-author:
- Christopher Jung <bktheg@web.de> 1170071728 +0100
- Message:
Kleine Korrekturen an er Pipeline
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r238cbc1 |
r4679dc4 |
|
| 181 | 181 | </modules> |
|---|
| 182 | 182 | <rules> |
|---|
| | 183 | <match pattern="/downloads/auth/.*"> |
|---|
| | 184 | <actions> |
|---|
| | 185 | <action class="net.driftingsouls.ds2.server.framework.pipeline.actions.AuthenticateAction" /> |
|---|
| | 186 | </actions> |
|---|
| | 187 | <execute-reader> |
|---|
| | 188 | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| | 189 | <file pattern="/(.*)" file="data/$1" /> |
|---|
| | 190 | </execute-reader> |
|---|
| | 191 | </match> |
|---|
| | 192 | <match pattern="/downloads/-?[0-9]+/.+"> |
|---|
| | 193 | <actions> |
|---|
| | 194 | <action class="net.driftingsouls.ds2.server.framework.pipeline.actions.AuthenticateAction"> |
|---|
| | 195 | <parameter name="userid"> |
|---|
| | 196 | <urldirectory number="-2" /> |
|---|
| | 197 | </parameter> |
|---|
| | 198 | </action> |
|---|
| | 199 | </actions> |
|---|
| | 200 | <execute-reader> |
|---|
| | 201 | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| | 202 | <file pattern="/(.*)" file="data/$1" /> |
|---|
| | 203 | </execute-reader> |
|---|
| | 204 | </match> |
|---|
| | 205 | <match pattern="/downloads/[^/]+"> |
|---|
| | 206 | <execute-reader> |
|---|
| | 207 | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| | 208 | <file pattern="/(.*)" file="data/$1" /> |
|---|
| | 209 | </execute-reader> |
|---|
| | 210 | </match> |
|---|
| 183 | 211 | <match pattern="/.*data/.*\.(gif|png|jpg|css|js)"> |
|---|
| 184 | 212 | <execute-reader> |
|---|
| … | … | |
| 244 | 272 | </execute-reader> |
|---|
| 245 | 273 | </match> |
|---|
| 246 | | <match pattern="/downloads/auth/.*"> |
|---|
| 247 | | <actions> |
|---|
| 248 | | <action class="net.driftingsouls.ds2.server.framework.pipeline.actions.AuthenticateAction" /> |
|---|
| 249 | | </actions> |
|---|
| 250 | | <execute-reader> |
|---|
| 251 | | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| 252 | | <file pattern="/(.*)" file="data/$1" /> |
|---|
| 253 | | </execute-reader> |
|---|
| 254 | | </match> |
|---|
| 255 | | <match pattern="/downloads/-?[0-9]+/.+"> |
|---|
| 256 | | <actions> |
|---|
| 257 | | <action class="net.driftingsouls.ds2.server.framework.pipeline.actions.AuthenticateAction"> |
|---|
| 258 | | <parameter name="userid"> |
|---|
| 259 | | <urldirectory number="-2" /> |
|---|
| 260 | | </parameter> |
|---|
| 261 | | </action> |
|---|
| 262 | | </actions> |
|---|
| 263 | | <execute-reader> |
|---|
| 264 | | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| 265 | | <file pattern="/(.*)" file="data/$1" /> |
|---|
| 266 | | </execute-reader> |
|---|
| 267 | | </match> |
|---|
| 268 | | <match pattern="/downloads/[^/]+"> |
|---|
| 269 | | <execute-reader> |
|---|
| 270 | | <reader class="net.driftingsouls.ds2.server.framework.pipeline.reader.FileReader" /> |
|---|
| 271 | | <file pattern="/(.*)" file="data/$1" /> |
|---|
| 272 | | </execute-reader> |
|---|
| 273 | | </match> |
|---|
| 274 | 274 | <match pattern="/"> |
|---|
| 275 | 275 | <execute-module> |
|---|