Skip to content
Extraits de code Groupes Projets
Valider a04789ab rédigé par Cyril Bay's avatar Cyril Bay
Parcourir les fichiers

Refs #703 Added --query-string-delimiter

git-svn-id: http://dev.piwik.org/svn/trunk@6132 59fd770c-687e-43c8-a1e3-f5a4ff64c105
parent e0d1a669
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -238,6 +238,10 @@ class Configuration(object): ...@@ -238,6 +238,10 @@ class Configuration(object):
action='store_true', default=False, action='store_true', default=False,
help="Strip the query string from the URL" help="Strip the query string from the URL"
) )
option_parser.add_option(
'--query-string-delimiter', dest='query_string_delimiter', default='?',
help="The query string delimiter (default: %default)"
)
option_parser.add_option( option_parser.add_option(
'--log-format-name', dest='log_format_name', default=None, '--log-format-name', dest='log_format_name', default=None,
help=("Access log format to detect (supported are: common, common_vhost, ncsa_extended, common_complete). " help=("Access log format to detect (supported are: common, common_vhost, ncsa_extended, common_complete). "
...@@ -1028,7 +1032,7 @@ class Parser(object): ...@@ -1028,7 +1032,7 @@ class Parser(object):
# Strip query string # Strip query string
if config.options.strip_query_string: if config.options.strip_query_string:
hit.path = hit.full_path.split('?', 1)[0] hit.path = hit.full_path.split(config.options.query_string_delimiter, 1)[0]
else: else:
hit.path = hit.full_path hit.path = hit.full_path
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter