Mac OS 9 Lives

Mac OS 9 Discussion => Software => Topic started by: OS923 on October 02, 2020, 08:57:30 AM

Title: Sorting Google Chrome MHTML files
Post by: OS923 on October 02, 2020, 08:57:30 AM
With Google Chrome you can save a page as an MHTML file. If you've downloaded many pages and they end up in the same folder then it's a dull job to sort them out especially if you have to do this every day. MHTML sorter can do this for you. There's also a version for Windows, tested on XP and Windows 10. This program is a companion for my next program, MHTML converter, which aims to convert them to HTML that you can view on OS 9.
Title: Re: Sorting Google Chrome MHTML files
Post by: OS923 on October 28, 2020, 08:15:01 AM
I abandoned the MHTML converter project. It had to be configured with so many regular expressions that I'm sure that nobody will ever use this program. It's easier to make a list of the URLs of your MHTML files and download them with a different browser.
Title: Re: Sorting Google Chrome MHTML files
Post by: OS923 on July 13, 2021, 07:31:10 AM
I rewrote this program in C++.
Instead of complex configuration I follow a simple scheme to rename the files.
I replace & with & in the URL.
The new filename is (CRC of the URL)-(length of the URL).(extension that matches the MIME)
The links are files instead of paths.
You can merge folders and the links will still work.
I tried this with a complex page with frames, fonts, SVG in XML and so on.
When it's opened in Chrome it's just like the original.
Title: Re: Sorting Google Chrome MHTML files
Post by: OS923 on August 18, 2021, 12:12:48 PM
I fixed 3 problems with this program:
- I found a URL of 1713 bytes but it was limited to 1020. I changed this into 4096.
- It works now with titles in UTF-8.
- It works now with parts like:
Content-Type: text/css
Content-Transfer-Encoding: binary
Content-Location: cid:[email protected]
Here's an example of all the things that it understands:
Code: [Select]
From: <Saved by Blink>
Snapshot-Content-Location: https://www.androidplanet.nl/apps/videoder-youtube-videos-downloaden/
Subject: Videoder: de beste app om YouTube-video's te downloaden
Date: Wed, 3 Jun 2020 15:45:28 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----"


From: <Saved by Blink>
Snapshot-Content-Location: http://macos9lives.com/smforum/index.php/topic,5189.0.htm
Subject: =?utf-8?Q?Timsort=E2=80=8A=E2=80=94=E2=80=8Athe=20fastest=20sorting=20alg?=
 =?utf-8?Q?orithm=20you=E2=80=99ve=20never=20heard=20of?=
Date: Tue, 3 Aug 2021 17:07:03 -0000
MIME-Version: 1.0
Content-Type: multipart/related;
type="text/html";
boundary="----MultipartBoundary--ApEEiBc8n2kauavw76i4GkY0cDzMhYwsVGJ7X6fY0z----"


------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: binary
Content-Location: https://www.androidplanet.nl/apps/videoder-youtube-videos-downloaden/

binary
------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----
Content-Type: text/css
Content-Transfer-Encoding: binary
Content-Location: https://www.androidplanet.nl/builds/style.884be201.css?ver=5.4

binary
------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: binary

binary
------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----
Content-Type: text/html
Content-ID: <[email protected]>
Content-Transfer-Encoding: binary
Content-Location: https://d3186xq5v1iosf.cloudfront.net/index.html

binary
------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01----
Content-Type: text/css
Content-Transfer-Encoding: binary
Content-Location: cid:[email protected]

binary
------MultipartBoundary--z2KZBdRlbm0FPAMVKnvWJxa8EMsG50uNOoNN0BSK01------


src="cid:[email protected]"
href="cid:[email protected]"
Title: Re: Sorting Google Chrome MHTML files
Post by: OS923 on October 16, 2021, 03:36:34 AM
I improved Convert MHTML. I used it for several months without issues.
Title: Re: Sorting Google Chrome MHTML files
Post by: OS923 on November 03, 2021, 11:03:22 AM
It can now convert MHTML files that were saved by Google Chrome for Android as well as Windows because it can now decode Base64 and quoted-printable. It will now accept ".mht" extensions too instead of only ".mhtml". I improved the error messages.