X-Git-Url: http://www.privoxy.org/gitweb/?a=blobdiff_plain;f=tools%2Fuagen.pl;h=94002fa5333045202b31547d9301f5f984aa0aa3;hb=c942d2949825d2afb5ac4f8d18e27dc5bdb59482;hp=4ab9444aac421af349a7af3b530ac1748511043f;hpb=74da8556618cbd7e499e46ecd598aec0ae9feba4;p=privoxy.git diff --git a/tools/uagen.pl b/tools/uagen.pl index 4ab9444a..94002fa5 100755 --- a/tools/uagen.pl +++ b/tools/uagen.pl @@ -3,8 +3,6 @@ ############################################################################################## # uagen (http://www.fabiankeil.de/sourcecode/uagen/) # -# $Id: uagen.pl,v 1.19 2012/03/18 13:46:54 fabiankeil Exp $ -# # Generates a pseudo-random Firefox user agent and writes it into a Privoxy action file # and optionally into a Mozilla prefs file. For documentation see 'perldoc uagen(.pl)'. # @@ -60,8 +58,8 @@ use constant { # are too lazy to check, but want to change them anyway, take the values you # see in the "Help/About Mozilla Firefox" menu. - BROWSER_VERSION => "10.0.3", - BROWSER_REVISION => '10.0.3', + BROWSER_VERSION => "17.0", + BROWSER_REVISION => '17.0', BROWSER_RELEASE_DATE => '20100101', }; @@ -133,7 +131,7 @@ sub generate_platform_and_os() { FreeBSD => { karma => 1, platform => 'X11', - architectures => [ 'i386', 'amd64', 'sparc64', 'alpha' ], + architectures => [ 'i386', 'amd64', 'sparc64' ], order_is_inversed => 0, }, OpenBSD => { @@ -234,7 +232,7 @@ sub log_to_file($) { return if $no_logging; - open(my $log_fd, ">>" . $logfile) || die "Writing " . $logfile . " failed"; + open(my $log_fd, ">>", $logfile) || die "Writing " . $logfile . " failed"; printf $log_fd UAGEN_VERSION . " ($logtime) $message\n"; close($log_fd); } @@ -276,7 +274,7 @@ sub write_action_file() { $action_file_content .= sprintf " +hide-user-agent{%s} \\\n}\n/\n", $user_agent; } - open(my $actionfile_fd, ">" . $action_file) + open(my $actionfile_fd, ">", $action_file) or log_error "Writing action file $action_file failed!"; print $actionfile_fd $action_file_content; close($actionfile_fd); @@ -294,7 +292,7 @@ sub write_prefs_file() { my $prefs_file_content = ''; my $prefsfile_fd; - if (open($prefsfile_fd, $mozilla_prefs_file)) { + if (open($prefsfile_fd, "<", $mozilla_prefs_file)) { while (<$prefsfile_fd>) { s@user_pref\(\"general.useragent.override\",.*\);\n?@@; @@ -311,7 +309,7 @@ sub write_prefs_file() { sprintf("user_pref(\"intl.accept_languages\", \"%s\");\n", $accept_language) unless $clean_prefs; - open($prefsfile_fd, ">" . $mozilla_prefs_file) + open($prefsfile_fd, ">", $mozilla_prefs_file) or log_error "Writing prefs file $mozilla_prefs_file failed!"; print $prefsfile_fd $prefs_file_content; close($prefsfile_fd);