Redirector addon: stopped working since v28

Add-ons for Pale Moon and other applications
General discussion, compatibility, contributed extensions, themes, plugins, and more.

Moderators: FranklinDM, Lootyhoof

User avatar
ketmar
Lunatic
Lunatic
Posts: 369
Joined: 2015-07-28, 11:10
Location: Earth

Re: Redirector addon: stopped working since v28

Unread post by ketmar » 2019-12-11, 05:11

this is quite easy again, you only have to copypaste object-watch polyfill at the top of the "chrome/js/redirectorprefs.js" file, right under the "var EXPORTED_SYMBOLS = ['RedirectorPrefs'];" line. `watch()` and `unwatch()` Object properties has been deprecated and removed in new EcmaScript versions.

TMINY

Re: Redirector addon: stopped working since v28

Unread post by TMINY » 2019-12-11, 15:38

ketmar wrote:
2019-12-11, 05:11
this is quite easy again, you only have to copypaste object-watch polyfill at the top of the "chrome/js/redirectorprefs.js" file, right under the "var EXPORTED_SYMBOLS = ['RedirectorPrefs'];" line. `watch()` and `unwatch()` Object properties has been deprecated and removed in new EcmaScript versions.
This works! Thank you so much!

New Tobin Paradigm

Re: Redirector addon: stopped working since v28

Unread post by New Tobin Paradigm » 2019-12-11, 15:49

Why isn't anyone forking this extension properly?

User avatar
Baloo
Fanatic
Fanatic
Posts: 167
Joined: 2017-08-24, 15:02

Re: Redirector addon: stopped working since v28

Unread post by Baloo » 2019-12-19, 05:14

ketmar wrote:
2019-12-11, 05:11
this is quite easy again, you only have to copypaste object-watch polyfill at the top of the "chrome/js/redirectorprefs.js" file, right under the "var EXPORTED_SYMBOLS = ['RedirectorPrefs'];" line. `watch()` and `unwatch()` Object properties has been deprecated and removed in new EcmaScript versions.
Thank you so much! This is very much appreciated. Now someone just needs to make it an official fork!
Image
Image

IMNdi
Moongazer
Moongazer
Posts: 13
Joined: 2017-07-12, 16:56

Re: Redirector addon: stopped working since v28

Unread post by IMNdi » 2020-01-17, 16:43

doofy wrote:
2019-12-05, 13:02
TMINY wrote:
2019-12-05, 12:53
This was working great until recently. Redirects aren't working... I noticed the preferences screen is empty of my rules and the buttons are non-responsive.
Anyone have any ideas on a fix? Thanks!
redirector_fixed is working here.
My only redirect works, as do buttons.
Mine's broken all right. When opening the addon setting page the console produces this:

Error: TypeError: this.unwatch is not a function
Source File: chrome://redirector/content/js/redirectorprefs.js
Line: 25

Buttons don't do anything.

TMINY

Re: Redirector addon: stopped working since v28

Unread post by TMINY » 2020-01-17, 17:05

IMNdi wrote:
2020-01-17, 16:43

Mine's broken all right. When opening the addon setting page the console produces this:

Error: TypeError: this.unwatch is not a function
Source File: chrome://redirector/content/js/redirectorprefs.js
Line: 25

Buttons don't do anything.
Have a look at ketmar's fix up above. That got mine working.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35474
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » 2020-01-17, 18:47

I'd like to make a point here that watch() and unwatch() have never been part of any ECMAScript version, contrary to what Ketmar has said.
They have been internal Firefox-only functions that, unfortunately, extension devs have been using regardless.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

User avatar
ketmar
Lunatic
Lunatic
Posts: 369
Joined: 2015-07-28, 11:10
Location: Earth

Re: Redirector addon: stopped working since v28

Unread post by ketmar » 2020-01-18, 04:03

yeah, i meant "in new Pale Moon js engine versions", but got it wrongly worded. sure, those calls are not in any official ES specification, and Pale Moon is not dropping something that was standardized. sorry.

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35474
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » 2020-01-18, 13:31

ketmar wrote:
2020-01-18, 04:03
yeah, i meant "in new Pale Moon js engine versions", but got it wrongly worded. sure, those calls are not in any official ES specification, and Pale Moon is not dropping something that was standardized. sorry.
It's an easy mistake to make, no worries -- just wanted to clarify the situation.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

IMNdi
Moongazer
Moongazer
Posts: 13
Joined: 2017-07-12, 16:56

Re: Redirector addon: stopped working since v28

Unread post by IMNdi » 2020-01-23, 17:30

TMINY wrote:
2020-01-17, 17:05
Have a look at ketmar's fix up above. That got mine working.
Oh sorry, I read the thread wrong I thought that's what the fix does.
Thanks for the heads up, fortunately the website that needed correction was fixed server-side so I am abandoning for now.

JohnAJ

Re: Redirector addon: stopped working since v28

Unread post by JohnAJ » 2020-02-04, 10:01

Lew Rockwell Fan wrote:
2018-10-04, 06:53
Thanks. I had given up on this. therube was kind enough to point this thread out to me at the end of my older one. Here is a corrected xpi for anybody who'd rather not do it themselves:redirector_fixed.xpi
ketmar wrote:
2019-12-11, 05:11
this is quite easy again, you only have to copypaste object-watch polyfill at the top of the "chrome/js/redirectorprefs.js" file, right under the "var EXPORTED_SYMBOLS = ['RedirectorPrefs'];" line. `watch()` and `unwatch()` Object properties has been deprecated and removed in new EcmaScript versions.
Here's an updated xpi for those who prefer to just download a ready-made file

Moderator note: edited extension removed. Please follow proper procedure to publish modified extensions.
Last edited by FranklinDM on 2020-02-04, 10:31, edited 1 time in total.
Reason: Removed attached extension.

Andrew Herbert

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » 2020-02-04, 21:53

Moderator note: edited extension removed. Please follow proper procedure to publish modified extensions.
Why? The other modified extension was allowed.

Lew Rockwell Fan

Re: Redirector addon: stopped working since v28

Unread post by Lew Rockwell Fan » 2020-02-06, 23:45

If somebody is going to work on this, may I make a suggestion (actually a shameless begging plea) to add an option to automatically send the regex matching url to an external program instead of opening an alternate url? There are probably a fair number of us who haven't managed to get a grip on xml and such but can still do some neat tricks with bash if the browser will just throw us a string.

I can do it with "Open With" but not automatically - I have to both know (and sometimes urls are hidden to casual view) and notice (which is a different matter) that the url is of a class I'd like to treat differently.

Thanks either way.

Andrew Herbert

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » 2020-03-21, 13:45

What about the versions 3.0.4 and 3.0.6? The error console doesn't show anything.

Andrew Herbert

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » 2020-03-26, 16:21

The version 3.0.6 requires the file resource://gre/modules/ExtensionStorage.jsm, which doesn't exist on Pale Moon or Basilisk. Why?

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35474
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » 2020-03-26, 16:25

Andrew Herbert wrote:
2020-03-26, 16:21
The version 3.0.6 requires the file resource://gre/modules/ExtensionStorage.jsm, which doesn't exist on Pale Moon or Basilisk. Why?
Because Pale Moon and Basilisk are not Firefox.
Please get this through your thick skull. Thank you.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

letmeindude

Re: Redirector addon: stopped working since v28

Unread post by letmeindude » 2020-03-26, 16:56

Andrew Herbert wrote:
2020-03-26, 16:21
The version 3.0.6 requires the file resource://gre/modules/ExtensionStorage.jsm, which doesn't exist on Pale Moon or Basilisk. Why?
Version 3.0.6 removed local copy of ExtensionStorage.jsm, because it ships with FF 44 and newer. Pale Moon is not Firefox.

Just copy ExtensionStorage.jsm from 3.0.4 maybe it will work.

New Tobin Paradigm

Re: Redirector addon: stopped working since v28

Unread post by New Tobin Paradigm » 2020-03-26, 19:05

We could bring that jsm back.. While it landed as part of the initial WebExtensions bullshit it actually isn't dependent WebEx it but WebEx was dependent on it.

We will consider it. No promises.

EDIT: https://github.com/MoonchildProductions/UXP/commit/5e03c9ad4cf63c3f15e19a0dd0d1ea5b8f9abed2

User avatar
Baloo
Fanatic
Fanatic
Posts: 167
Joined: 2017-08-24, 15:02

Re: Redirector addon: stopped working since v28

Unread post by Baloo » 2020-04-29, 08:18

It seems that even with bringing that jsm back, Redirector 3.0.6 does not function. Installs, but won't save or activate any created redirects. Looks like this add-on just needs a old-fashioned fork...
Image
Image

User avatar
Moonchild
Pale Moon guru
Pale Moon guru
Posts: 35474
Joined: 2011-08-28, 17:27
Location: Motala, SE
Contact:

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » 2020-04-29, 09:06

Well we tried. And it would also allow other extensions using the (otherwise stand-alone) module to work.
"Sometimes, the best way to get what you want is to be a good person." -- Louis Rossmann
"Seek wisdom, not knowledge. Knowledge is of the past; wisdom is of the future." -- Native American proverb
"Linux makes everything difficult." -- Lyceus Anubite

Locked