privoxy.git
3 years agodeveloper-manual: Simplify privoxy-regression-test.pl command in the example
Fabian Keil [Mon, 14 Dec 2020 17:28:30 +0000 (18:28 +0100)]
developer-manual: Simplify privoxy-regression-test.pl command in the example

The --debug parameter adds bits without overriding default
flags so it's sufficient to add 4 (LL_PAGE_FETCHING).

3 years agodeveloper-manual: Fix typo
Fabian Keil [Mon, 14 Dec 2020 16:45:24 +0000 (17:45 +0100)]
developer-manual: Fix typo

3 years agoRebuild developer-manual
Fabian Keil [Mon, 14 Dec 2020 16:42:37 +0000 (17:42 +0100)]
Rebuild developer-manual

3 years agodeveloper-manual: Add privoxy-regression-test.pl example output
Fabian Keil [Mon, 14 Dec 2020 11:26:40 +0000 (12:26 +0100)]
developer-manual: Add privoxy-regression-test.pl example output

3 years agofix compiler warnings about including winsock2.h before windows.h
Lee [Mon, 14 Dec 2020 14:11:30 +0000 (09:11 -0500)]
fix compiler warnings about including winsock2.h before windows.h

getting plenty too many of these warnings:
i686-w64-mingw32-gcc -c -pipe -O2 -Wshadow -DWINVER=0x501   -mwindows -Wall -Ipcre  actions.c -o actions.o
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/ws2tcpip.h:17,
                 from project.h:95,
                 from actions.c:46:
/usr/i686-w64-mingw32/sys-root/mingw/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp]
   15 | #warning Please include winsock2.h before windows.h
      |  ^~~~~~~
i686-w64-mingw32-gcc -c -pipe -O2 -Wshadow -DWINVER=0x501   -mwindows -Wall -Ipcre  cgi.c -o cgi.o
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/ws2tcpip.h:17,
                 from project.h:95,
                 from cgi.c:52:
/usr/i686-w64-mingw32/sys-root/mingw/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp]
   15 | #warning Please include winsock2.h before windows.h
      |  ^~~~~~~
i686-w64-mingw32-gcc -c -pipe -O2 -Wshadow -DWINVER=0x501   -mwindows -Wall -Ipcre  cgiedit.c -o cgiedit.o
In file included from /usr/i686-w64-mingw32/sys-root/mingw/include/ws2tcpip.h:17,
                 from project.h:95,
                 from cgiedit.c:57:
/usr/i686-w64-mingw32/sys-root/mingw/include/winsock2.h:15:2: warning: #warning Please include winsock2.h before windows.h [-Wcpp]
   15 | #warning Please include winsock2.h before windows.h
      |  ^~~~~~~

3 years agoMerge branch 'master' of ssh://git.privoxy.org:23/git/privoxy
Lee [Mon, 14 Dec 2020 13:19:08 +0000 (08:19 -0500)]
Merge branch 'master' of ssh://git.privoxy.org:23/git/privoxy

3 years agoBring back the select()-based fallback code
Fabian Keil [Mon, 14 Dec 2020 12:48:08 +0000 (13:48 +0100)]
Bring back the select()-based fallback code

As reported by Lee it's stille needed on Windows.

This reverts commit 9126f0c935e4bb64a87be7c3a1855b7768791142.

3 years agoMerge branch 'master' of ssh://git.privoxy.org:23/git/privoxy
Lee [Mon, 14 Dec 2020 12:04:27 +0000 (07:04 -0500)]
Merge branch 'master' of ssh://git.privoxy.org:23/git/privoxy

3 years agoRegenerate docs
Fabian Keil [Mon, 14 Dec 2020 09:05:05 +0000 (10:05 +0100)]
Regenerate docs

3 years agoAdd the new action suppress-tag{}
Maxim Antonov [Tue, 13 Oct 2020 10:28:52 +0000 (17:28 +0700)]
Add the new action suppress-tag{}

Usage:
in user.filters:
--begin--
CLIENT-HEADER-TAGGER: maximum-url-length Tag for URLS longer than 600 characters.

s@(^GET\s+\/.{600,}\s+HTTP\/\d\.\d\s*$)@MAXIMUM-URL-LENGTH@i
--end--

in user.actions:
--begin--
{+client-header-tagger{maximum-url-length}}
/

{+block{Maximum URL length of 600 bytes reached.}}
TAG:^MAXIMUM-URL-LENGTH

{+suppress-tag{MAXIMUM-URL-LENGTH}}
.google.*
 --end--

will block all URLs with length > 600 bytes except for google.

Currently the online action editor supports modification/removal of any
number of existing tags and the creation of a single suppress tag per
one submit. The submit scheme that is used is similar to the existing
filter one but:

1. It uses 'string_filter[_r|_n|_o|_t][hex_index]' keys for existing
string filter values (id/name(value)/old_name(old value)/filter type)
and 'new_string_filter[_r|_n|_t][hex_index]' for new string filter
values. 'String filter values' here are parameters of the suppress-tag
action that are simple strings rather than parameters of, for example,
the client-header-tagger action that must be described in filters file.

2. String filter values are accessed by the value rather by the
index. Indexes must start from 0 and when there is no key with index+1
in parameters - we've done with existing or new string filters
processing.

Possible further improvements:

1. Extend suppress-tag action edit scheme to add-header action
   edit that is not supported now.
2. If needed, multiple suppress-tag addition can be added with
   some browser JS code.

Sponsored by: Robert Klemme

3 years agoRebuild docs for 3.0.29 UNRELEASED
Fabian Keil [Mon, 14 Dec 2020 07:50:13 +0000 (08:50 +0100)]
Rebuild docs for 3.0.29 UNRELEASED

3 years agodeveloper-manual: Mention Privoxy-Regression-Test
Fabian Keil [Sun, 13 Dec 2020 19:02:20 +0000 (20:02 +0100)]
developer-manual: Mention Privoxy-Regression-Test

3 years agodeveloper-manual: Add a section id to reduce link churn
Fabian Keil [Sun, 13 Dec 2020 18:49:06 +0000 (19:49 +0100)]
developer-manual: Add a section id to reduce link churn

3 years agodeveloper-manual: Recommend the dok-tidy target when building docs for the webserver
Fabian Keil [Sun, 13 Dec 2020 18:35:26 +0000 (19:35 +0100)]
developer-manual: Recommend the dok-tidy target when building docs for the webserver

3 years agodeveloper-manual: Add another plug for the privoxy-devel mailing list
Fabian Keil [Sun, 13 Dec 2020 18:30:46 +0000 (19:30 +0100)]
developer-manual: Add another plug for the privoxy-devel mailing list

3 years agodeveloper-manual: Mention that merges into 'master' should be avoided
Fabian Keil [Sun, 13 Dec 2020 18:28:26 +0000 (19:28 +0100)]
developer-manual: Mention that merges into 'master' should be avoided

3 years agodeveloper-manual: Let the intro link the copyright section in the user manual instead...
Fabian Keil [Sun, 13 Dec 2020 18:22:08 +0000 (19:22 +0100)]
developer-manual: Let the intro link the copyright section in the user manual instead of giving an incomplete summary of the license status

3 years agoprivoxy-regression-test: Replace an XXX comment with a better one
Fabian Keil [Sun, 13 Dec 2020 09:09:35 +0000 (10:09 +0100)]
privoxy-regression-test: Replace an XXX comment with a better one

3 years agoBump SMGL entities for 3.0.30 UNRELEASED
Fabian Keil [Sun, 13 Dec 2020 18:43:51 +0000 (19:43 +0100)]
Bump SMGL entities for 3.0.30 UNRELEASED

3 years agoprivoxy-regression-test: Skip the connection-established response in get_status_code()
Fabian Keil [Sun, 13 Dec 2020 08:02:04 +0000 (09:02 +0100)]
privoxy-regression-test: Skip the connection-established response in get_status_code()

... when looking for the status code with a CGI prefix
that starts with https://. We care about the status code
sent by the impersonated web server.

3 years agoprivoxy-regression-test: Use --proxy-header when using a CGI prefix with https://
Fabian Keil [Sun, 13 Dec 2020 07:33:48 +0000 (08:33 +0100)]
privoxy-regression-test: Use --proxy-header when using a CGI prefix with https://

... and a "Host:" header.

3 years agoprivoxy-regression-parser: Allow '|' in tokens and values
Fabian Keil [Mon, 14 Dec 2020 05:59:29 +0000 (06:59 +0100)]
privoxy-regression-parser: Allow '|' in tokens and values

... to allow tag patterns like:
TAG:^(application|text)/(x-)?javascript$

3 years agoExplain why the "Set Header = Host: whatever.example.org" test is expected to fail
Fabian Keil [Sun, 13 Dec 2020 08:14:41 +0000 (09:14 +0100)]
Explain why the "Set Header = Host: whatever.example.org" test is expected to fail

... when using a CGI prefix that starts with "https://".

3 years agoExplain why a connection-sharing test is known to fail
Fabian Keil [Sun, 13 Dec 2020 07:09:19 +0000 (08:09 +0100)]
Explain why a connection-sharing test is known to fail

... when using "https://p.p/" as CGI prefix.

3 years agoprivoxy-regression-test: When get_cgi_page_or_else() fails, include the URL of the...
Fabian Keil [Sun, 13 Dec 2020 06:56:01 +0000 (07:56 +0100)]
privoxy-regression-test: When get_cgi_page_or_else() fails, include the URL of the requested page in the log message

3 years agoprivoxy-regression-test: Add a --privoxy-cgi-prefix option
Fabian Keil [Sun, 13 Dec 2020 06:46:58 +0000 (07:46 +0100)]
privoxy-regression-test: Add a --privoxy-cgi-prefix option

... that specifies the prefix to use when building URLs that are
supposed to reach Privoxy's CGI interface. If it's not set,
http://p.p/ is used, which is supposed to work with the default
Privoxy configuration.

If Privoxy has been built with FEATURE_HTTPS_INSPECTION enabled,
and if https inspection is activated with the +https-inspection
action, this option can be used with "https://p.p/" provided the
system running Privoxy-Regression-Test has been configured to
trust the certificate used by Privoxy.

Note that there are currently two tests in the official
regression-tests.action file that are expected to fail
when using "https://p.p/" as privoxy-cgi-prefix.

3 years agoregression-tests.action: Clarify sentence
Fabian Keil [Sun, 13 Dec 2020 06:53:14 +0000 (07:53 +0100)]
regression-tests.action: Clarify sentence

3 years agoregression-tests.action: Add a link to Privoxy-Regression-Test in case it isn't packaged
Fabian Keil [Sun, 13 Dec 2020 06:52:41 +0000 (07:52 +0100)]
regression-tests.action: Add a link to Privoxy-Regression-Test in case it isn't packaged

3 years agoprivoxy-regression-test: Bump version to 0.7.2
Fabian Keil [Sun, 13 Dec 2020 06:29:26 +0000 (07:29 +0100)]
privoxy-regression-test: Bump version to 0.7.2

3 years agoprivoxy-regression-test: Consistently use '$privoxy_cgi_url'
Fabian Keil [Sun, 13 Dec 2020 06:28:20 +0000 (07:28 +0100)]
privoxy-regression-test: Consistently use '$privoxy_cgi_url'

3 years agoShorten the 'donate' and 'participate' links used by templates
Fabian Keil [Sun, 13 Dec 2020 05:16:29 +0000 (06:16 +0100)]
Shorten the 'donate' and 'participate' links used by templates

... using redirects.

Currently the redirects lead to the FAQ entries but
in the future we may want to relocate the content
and using redirects makes this more convenient.

3 years agoShorten the 'donate' and 'participate' links by using redirects
Fabian Keil [Sun, 13 Dec 2020 05:12:47 +0000 (06:12 +0100)]
Shorten the 'donate' and 'participate' links by using redirects

Currently the redirects lead to the FAQ entries but
in the future we may want to relocate the content
and using redirects makes this more convenient.

3 years agoExplicitly mention Windows 10 as supported
Fabian Keil [Sun, 13 Dec 2020 05:01:22 +0000 (06:01 +0100)]
Explicitly mention Windows 10 as supported

... so search engines and users looking for it can find it.

3 years agoAdd #172: Create a public git repository for Privoxy-Filter-Test
Fabian Keil [Sun, 13 Dec 2020 04:39:50 +0000 (05:39 +0100)]
Add #172: Create a public git repository for Privoxy-Filter-Test

3 years agoAdd #171: Create a "view page using Privoxy" website
Fabian Keil [Sun, 13 Dec 2020 03:27:42 +0000 (04:27 +0100)]
Add #171: Create a "view page using Privoxy" website

3 years agoUnconditionally use CGI_PREFIX where possible
Fabian Keil [Sat, 12 Dec 2020 22:57:12 +0000 (23:57 +0100)]
Unconditionally use CGI_PREFIX where possible

3 years agoMake CGI_PREFIX protocol-relative when building with FEATURE_HTTPS_INSPECTION
Fabian Keil [Sat, 12 Dec 2020 22:49:22 +0000 (23:49 +0100)]
Make CGI_PREFIX protocol-relative when building with FEATURE_HTTPS_INSPECTION

This unbreaks (at least) https://config.privoxy.org/client-tags whose
buttons would previously use a http:// URL resulting in browser warnings.

Add and use new CGI_PREFIX_HTTP define in the one case we actually
need a http:// URL.

3 years agoAdd (optional) parens in an if condition in chat()
Fabian Keil [Sat, 12 Dec 2020 22:18:31 +0000 (23:18 +0100)]
Add (optional) parens in an if condition in chat()

3 years agoAdd #170: Serve the ca-cert-file through the CGI interface
Fabian Keil [Sat, 12 Dec 2020 21:12:21 +0000 (22:12 +0100)]
Add #170: Serve the ca-cert-file through the CGI interface

3 years agoLog an error when a PCRE-HOST-PATTERN is used with FEATURE_PCRE_HOST_PATTERNS disabled
Fabian Keil [Sat, 12 Dec 2020 10:45:32 +0000 (11:45 +0100)]
Log an error when a PCRE-HOST-PATTERN is used with FEATURE_PCRE_HOST_PATTERNS disabled

Don't treat this a fatal error so the regression tests
can be used with and without FEATURE_PCRE_HOST_PATTERNS.

3 years agoAdd regression tests for pcre host patterns
Fabian Keil [Sat, 12 Dec 2020 10:10:53 +0000 (11:10 +0100)]
Add regression tests for pcre host patterns

3 years agoUpdate a link to the libcurl mailinglist archive
Fabian Keil [Fri, 11 Dec 2020 17:47:57 +0000 (18:47 +0100)]
Update a link to the libcurl mailinglist archive

3 years agoAdd #169: Preserve all relevant copyright and license statements in binary packages
Fabian Keil [Fri, 11 Dec 2020 16:30:43 +0000 (17:30 +0100)]
Add #169: Preserve all relevant copyright and license statements in binary packages

3 years agoUpdate the +hide-user-agent example with uagen output
Fabian Keil [Fri, 11 Dec 2020 14:01:50 +0000 (15:01 +0100)]
Update the +hide-user-agent example with uagen output

3 years agoSlightly improve the wording of the ca-key-file documentation
Fabian Keil [Fri, 11 Dec 2020 13:37:40 +0000 (14:37 +0100)]
Slightly improve the wording of the ca-key-file documentation

3 years agocgi_show_request(): Use the https headers if the page is reached through https://
Fabian Keil [Fri, 11 Dec 2020 12:42:02 +0000 (13:42 +0100)]
cgi_show_request(): Use the https headers if the page is reached through https://

Previously Privoxy would use the http headers which
may be empty on a reused connection.

3 years agoLet the crude-parental filter insert a link to Privoxy's webinterface
Fabian Keil [Fri, 11 Dec 2020 11:57:57 +0000 (12:57 +0100)]
Let the crude-parental filter insert a link to Privoxy's webinterface

3 years agoUnblock metrics.sr.ht/
Fabian Keil [Fri, 11 Dec 2020 08:33:13 +0000 (09:33 +0100)]
Unblock metrics.sr.ht/

3 years agoDisplay the model photos in a single row and remove placeholder images
Fabian Keil [Fri, 11 Dec 2020 07:55:15 +0000 (08:55 +0100)]
Display the model photos in a single row and remove placeholder images

3 years agoAdd an alt text for the Privoxy logo shown on the homepage
Fabian Keil [Fri, 11 Dec 2020 07:06:18 +0000 (08:06 +0100)]
Add an alt text for the Privoxy logo shown on the homepage

3 years agoRemove --with-fdsetsize as select() is no longer supported
Fabian Keil [Thu, 10 Dec 2020 16:04:41 +0000 (17:04 +0100)]
Remove --with-fdsetsize as select() is no longer supported

3 years agoMake poll() non-optional and remove select()-based fallback code
Fabian Keil [Thu, 10 Dec 2020 13:12:16 +0000 (14:12 +0100)]
Make poll() non-optional and remove select()-based fallback code

3 years agoBump copyright
Fabian Keil [Sat, 5 Dec 2020 22:37:41 +0000 (23:37 +0100)]
Bump copyright

3 years agoRemove the packages feed from the source tarball
Fabian Keil [Sat, 5 Dec 2020 21:49:41 +0000 (22:49 +0100)]
Remove the packages feed from the source tarball

It's usually out of date when the source tarball is generated
for the release.

3 years agoMerge branch 'master' of ssh://git.privoxy.org:23/git/privoxy
Lee [Fri, 11 Dec 2020 15:20:11 +0000 (10:20 -0500)]
Merge branch 'master' of ssh://git.privoxy.org:23/git/privoxy

3 years agoRegenerate homepage with the new logo
Fabian Keil [Fri, 11 Dec 2020 06:13:03 +0000 (07:13 +0100)]
Regenerate homepage with the new logo

3 years agoLet the dok-webserver target inject the new logo into the homepage
Fabian Keil [Fri, 11 Dec 2020 06:11:50 +0000 (07:11 +0100)]
Let the dok-webserver target inject the new logo into the homepage

3 years agoImport a Privoxy logo for the website
Fabian Keil [Fri, 11 Dec 2020 05:40:20 +0000 (06:40 +0100)]
Import a Privoxy logo for the website

License: CC0

3 years agoAdd 168: Add a privacy policy
Fabian Keil [Fri, 11 Dec 2020 03:06:18 +0000 (04:06 +0100)]
Add 168: Add a privacy policy

3 years agoAdd #167: Set up a public Privoxy-Filter-Test instance.
Fabian Keil [Fri, 11 Dec 2020 03:00:38 +0000 (04:00 +0100)]
Add #167: Set up a public Privoxy-Filter-Test instance.

3 years agoRemove #141 as CloudABI is unmaintained
Fabian Keil [Thu, 10 Dec 2020 22:41:12 +0000 (23:41 +0100)]
Remove #141 as CloudABI is unmaintained

3 years agoDisable fast-redirects for .fsf.org/
Fabian Keil [Thu, 10 Dec 2020 19:58:45 +0000 (20:58 +0100)]
Disable fast-redirects for .fsf.org/

3 years agoRegenerate docs
Fabian Keil [Thu, 10 Dec 2020 17:00:24 +0000 (18:00 +0100)]
Regenerate docs

3 years agoImport a bunch of contributors from the ChangeLog
Fabian Keil [Thu, 10 Dec 2020 16:56:57 +0000 (17:56 +0100)]
Import a bunch of contributors from the ChangeLog

3 years agowindows: Remove obsolete references to doc/gpl.html
Fabian Keil [Wed, 9 Dec 2020 18:42:26 +0000 (19:42 +0100)]
windows: Remove obsolete references to doc/gpl.html

3 years agoRemove obsolete doc/gpl.html
Fabian Keil [Wed, 9 Dec 2020 18:40:05 +0000 (19:40 +0100)]
Remove obsolete doc/gpl.html

3 years agoUpdate link to the Polipo website
Fabian Keil [Wed, 9 Dec 2020 18:28:09 +0000 (19:28 +0100)]
Update link to the Polipo website

3 years agoUpgrade SourceForge URL to https://
Fabian Keil [Wed, 9 Dec 2020 18:27:51 +0000 (19:27 +0100)]
Upgrade SourceForge URL to https://

3 years agouagen: Update example output
Fabian Keil [Thu, 10 Dec 2020 19:09:36 +0000 (20:09 +0100)]
uagen: Update example output

3 years agouagen: Bump copyright
Fabian Keil [Wed, 9 Dec 2020 18:22:11 +0000 (19:22 +0100)]
uagen: Bump copyright

3 years agouagen: Recommend the use of the https-inspection action in the documentation
Fabian Keil [Wed, 9 Dec 2020 18:09:33 +0000 (19:09 +0100)]
uagen: Recommend the use of the https-inspection action in the documentation

3 years agouagen: Upgrade a couple of URLs to https://
Fabian Keil [Wed, 9 Dec 2020 18:05:43 +0000 (19:05 +0100)]
uagen: Upgrade a couple of URLs to https://

3 years agouagen: Add ElectroBSD to the list of operating systems
Fabian Keil [Wed, 9 Dec 2020 17:12:10 +0000 (18:12 +0100)]
uagen: Add ElectroBSD to the list of operating systems

3 years agouagen: Bump version to 1.2.2
Fabian Keil [Wed, 9 Dec 2020 17:11:24 +0000 (18:11 +0100)]
uagen: Bump version to 1.2.2

3 years agouagen: Bump generated Firefox version to 78 (ESR)
Fabian Keil [Wed, 9 Dec 2020 17:08:19 +0000 (18:08 +0100)]
uagen: Bump generated Firefox version to 78 (ESR)

3 years agoAdd missing www in a website link
Fabian Keil [Wed, 9 Dec 2020 15:10:39 +0000 (16:10 +0100)]
Add missing www in a website link

3 years agoRebuild documentation
Fabian Keil [Wed, 9 Dec 2020 14:44:44 +0000 (15:44 +0100)]
Rebuild documentation

3 years agoClarify that the webserver target uploads to the SourceForge webserver
Fabian Keil [Wed, 9 Dec 2020 14:43:58 +0000 (15:43 +0100)]
Clarify that the webserver target uploads to the SourceForge webserver

3 years agoMark the documentation for the Mac OS X installers as out of date and change the...
Fabian Keil [Wed, 9 Dec 2020 14:39:59 +0000 (15:39 +0100)]
Mark the documentation for the Mac OS X installers as out of date and change the SCM name back to CVS

3 years agoFix the location of the installer modules for Mac OS X
Fabian Keil [Wed, 9 Dec 2020 14:36:22 +0000 (15:36 +0100)]
Fix the location of the installer modules for Mac OS X

They are not actually available through git (yet).

3 years agoUpdate the user-manual URL
Fabian Keil [Wed, 9 Dec 2020 14:27:36 +0000 (15:27 +0100)]
Update the user-manual URL

3 years agoDon't speak of Privoxy version 3 in the past tense
Fabian Keil [Wed, 9 Dec 2020 14:22:21 +0000 (15:22 +0100)]
Don't speak of Privoxy version 3 in the past tense

3 years agoUpdate the list of programs required for the release process
Fabian Keil [Wed, 9 Dec 2020 14:21:05 +0000 (15:21 +0100)]
Update the list of programs required for the release process

3 years agoPut openssl command in 'command' tags
Fabian Keil [Wed, 9 Dec 2020 14:02:04 +0000 (15:02 +0100)]
Put openssl command in 'command' tags

3 years agoUpdate description of the webserver target which uses ssh, not scp
Fabian Keil [Wed, 9 Dec 2020 13:58:04 +0000 (14:58 +0100)]
Update description of the webserver target which uses ssh, not scp

3 years agoRemove obsolete references to config.new
Fabian Keil [Wed, 9 Dec 2020 13:55:26 +0000 (14:55 +0100)]
Remove obsolete references to config.new

3 years agoRemove obsolete reference to config.new
Fabian Keil [Wed, 9 Dec 2020 13:54:47 +0000 (14:54 +0100)]
Remove obsolete reference to config.new

3 years agoUpgrade URL to https://
Fabian Keil [Wed, 9 Dec 2020 13:54:36 +0000 (14:54 +0100)]
Upgrade URL to https://

3 years agoDon't prefer the SourceForge patch tracker over the privoxy-devel mailing list
Fabian Keil [Wed, 9 Dec 2020 13:37:31 +0000 (14:37 +0100)]
Don't prefer the SourceForge patch tracker over the privoxy-devel mailing list

While at it, link to the SourceForge patch tracker.

3 years agoUpgrade a couple of URLs to https://
Fabian Keil [Wed, 9 Dec 2020 13:10:27 +0000 (14:10 +0100)]
Upgrade a couple of URLs to https://

3 years agoUpgrade an URL to https
Fabian Keil [Wed, 9 Dec 2020 12:53:37 +0000 (13:53 +0100)]
Upgrade an URL to https

3 years agoMention http-inspection in the 'my browser warns me about unauthenticated content...
Fabian Keil [Wed, 9 Dec 2020 12:48:24 +0000 (13:48 +0100)]
Mention http-inspection in the 'my browser warns me about unauthenticated content' FAQ entry

3 years agoUpgrade a couple of Wikipedia links to https://
Fabian Keil [Mon, 7 Dec 2020 21:37:58 +0000 (22:37 +0100)]
Upgrade a couple of Wikipedia links to https://

3 years agoSimplify the 'Is there is a license or fee?' FAQ entry
Fabian Keil [Mon, 7 Dec 2020 21:30:44 +0000 (22:30 +0100)]
Simplify the 'Is there is a license or fee?' FAQ entry

3 years agoBump copyright
Fabian Keil [Mon, 7 Dec 2020 21:20:55 +0000 (22:20 +0100)]
Bump copyright

3 years agoUpgrade link to GPLv2 on gnu.org to https://
Fabian Keil [Mon, 7 Dec 2020 21:20:35 +0000 (22:20 +0100)]
Upgrade link to GPLv2 on gnu.org to https://

3 years agoUpgrade link to GPLv2 on gnu.org to https://
Fabian Keil [Mon, 7 Dec 2020 21:20:29 +0000 (22:20 +0100)]
Upgrade link to GPLv2 on gnu.org to https://

3 years agoUpgrade link to GPLv2 on gnu.org to https://
Fabian Keil [Mon, 7 Dec 2020 21:17:39 +0000 (22:17 +0100)]
Upgrade link to GPLv2 on gnu.org to https://

3 years agoRemove empty .gitignore file
Fabian Keil [Mon, 7 Dec 2020 20:00:53 +0000 (21:00 +0100)]
Remove empty .gitignore file

3 years agoRegenerate docs
Fabian Keil [Mon, 7 Dec 2020 18:48:50 +0000 (19:48 +0100)]
Regenerate docs