I was migrating a website from Wordpress to another proprietary CMS recently. The owners of the site had migrated it before my arrival, but didn't pay any attention to the fact that they would be causing pages already indexed by google to be listed as crawl errors. Clearly this has caused a serious drop in the number of visits to their site via search engine.
The Manual Migration of Posts
A few of the posts on the site were manually migrated by the staff, however when a post had been migrated to the new CMS, the URL to the site was different; but the title of the post would remain the same. The new CMS supported the edition of 301 redirects via import from a tab delimited file containing the old URL and the new URL to which browsers and crawlers will be redirected.
Obtaining the list of crawl errors
So in an attempt to fix these broken links, using 301 redirects, I obtained a list of crawl errors for the site from Google Webmaster Tools, and downloaded them as a csv file.

Obtaining the list of old Wordpress Posts
Using the old site's Wordpress database, I obtained a list of post titles and their URLs.
Finding just the titles of the crawl error urls
Taking both these CSV files, I imported each of them into a MySQL database and ran a query matching the URLs of the crawl errors with the Wordpress permalinks and their titles.
Soon I had a list of only the old Wordpress Permalinks posts that webmaster tools listed as a crawl error and their related post titles.
Finding the new urls of the manually migrated posts
So I had half the information I needed to fix the problem, but I still needed a list of the new urls to old posts manually added earlier to the new CMS by the staff. The host for the new proprietary CMS, does not give their clients access to the database they use to store the site content, so I improvised and wrote a Greasemonkey script to search the list of existing pages for titles, and from there obtain the new permalinks to those posts.
And thus I would have the two parts I needed for creating the csv file to import a list of the old Wordpress permalinks and the new CMS's permalinks to the same articles.
The Invalid Escape Character
I thought this was working fine, until I tried to use my Greasemonkey script to generate a list of non-matching titles in JSON and convert them into a csv file. At this point the tool I was using to convert json2csv threw a segmentation fault, and I didn't figure out why until I used python to parse the resultant json for pretty print and I received an exception about an invalid escape character.
Upon looking at the invalid escape character I discovered some escape characters like \xC3\xA9 contained in the title of a post in the JSON which escapes to é.
So it would seem to me at this point that I need to escape the characters in the json in two ways in order to match them:
- Escape from the JSON encoding to the HTML representation of the characters on the CMS
(so that the title searches in my Grease Monkey script will match when they contain special characters) - Escape from the JSON encoding back into UTF-8 so that I can convert from JSON back to csv displaying the special characters.
Edit:
I solved the second of my problems using python and a statement like
jsonFileLine.decode('string_escape')
Thanks to this question