source: nutchez-0.1/tomcat/webapps/ROOT/WEB-INF/classes/regex-normalize.xml @ 66

Last change on this file since 66 was 66, checked in by waue, 15 years ago

NutchEz - an easy way to nutch

File size: 2.3 KB
Line 
1<?xml version="1.0"?>
2<!--
3 Licensed to the Apache Software Foundation (ASF) under one or more
4 contributor license agreements.  See the NOTICE file distributed with
5 this work for additional information regarding copyright ownership.
6 The ASF licenses this file to You under the Apache License, Version 2.0
7 (the "License"); you may not use this file except in compliance with
8 the License.  You may obtain a copy of the License at
9
10     http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
18<!-- This is the configuration file for the RegexUrlNormalize Class.
19     This is intended so that users can specify substitutions to be
20     done on URLs. The regex engine that is used is Perl5 compatible.
21     The rules are applied to URLs in the order they occur in this file.  -->
22
23<!-- WATCH OUT: an xml parser reads this file an ampersands must be
24     expanded to &amp; -->
25
26<!-- The following rules show how to strip out session IDs, default pages,
27     interpage anchors, etc. Order does matter!  -->
28<regex-normalize>
29
30<!-- removes session ids from urls (such as jsessionid and PHPSESSID) -->
31<regex>
32  <pattern>([;_]?((?i)l|j|bv_)?((?i)sid|phpsessid|sessionid)=.*?)(\?|&amp;|#|$)</pattern>
33  <substitution>$4</substitution>
34</regex>
35
36<!-- changes default pages into standard for /index.html, etc. into /
37<regex>
38  <pattern>/((?i)index|default)\.((?i)js[pf]{1}?[afx]?|cgi|cfm|asp[x]?|[psx]?htm[l]?|php[3456]?)(\?|&amp;|#|$)</pattern>
39  <substitution>/$3</substitution>
40</regex> -->
41
42<!-- removes interpage href anchors such as site.com#location -->
43<regex>
44  <pattern>#.*?(\?|&amp;|$)</pattern>
45  <substitution>$1</substitution>
46</regex>
47
48<!-- cleans ?&amp;var=value into ?var=value -->
49<regex>
50  <pattern>\?&amp;</pattern>
51  <substitution>\?</substitution>
52</regex>
53
54<!-- cleans multiple sequential ampersands into a single ampersand -->
55<regex>
56  <pattern>&amp;{2,}</pattern>
57  <substitution>&amp;</substitution>
58</regex>
59
60<!-- removes trailing ? -->
61<regex>
62  <pattern>[\?&amp;\.]$</pattern>
63  <substitution></substitution>
64</regex>
65
66</regex-normalize>
Note: See TracBrowser for help on using the repository browser.