Redirector addon: stopped working since v28

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

Moderators: FranklinDM, Lootyhoof

User avatar
ketmar
Lunatic
Lunatic
Posts: 365
Joined: Tue Jul 28, 2015 11:10 am
Location: Earth

Re: Redirector addon: stopped working since v28

Unread post by ketmar » Wed Dec 11, 2019 5:11 am

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
Moonbather
Moonbather
Posts: 62
Joined: Tue Feb 02, 2016 4:58 am

Re: Redirector addon: stopped working since v28

Unread post by TMINY » Wed Dec 11, 2019 3:38 pm

ketmar wrote:
Wed Dec 11, 2019 5:11 am
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!

User avatar
New Tobin Paradigm
Knows the dark side
Knows the dark side
Posts: 10103
Joined: Tue Oct 09, 2012 7:37 pm
Location: Sector 001

Re: Redirector addon: stopped working since v28

Unread post by New Tobin Paradigm » Wed Dec 11, 2019 3:49 pm

Why isn't anyone forking this extension properly?
Face facts, people simply need to go to the next level and MAINTAIN these extensions not selfishly JustOff them to oblivion.
Image

User avatar
Baloo
Forum staff
Forum staff
Posts: 117
Joined: Thu Aug 24, 2017 3:02 pm

Re: Redirector addon: stopped working since v28

Unread post by Baloo » Thu Dec 19, 2019 5:14 am

ketmar wrote:
Wed Dec 11, 2019 5:11 am
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: 12
Joined: Wed Jul 12, 2017 4:56 pm

Re: Redirector addon: stopped working since v28

Unread post by IMNdi » Fri Jan 17, 2020 4:43 pm

doofy wrote:
Thu Dec 05, 2019 1:02 pm
TMINY wrote:
Thu Dec 05, 2019 12:53 pm
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
Moonbather
Moonbather
Posts: 62
Joined: Tue Feb 02, 2016 4:58 am

Re: Redirector addon: stopped working since v28

Unread post by TMINY » Fri Jan 17, 2020 5:05 pm

IMNdi wrote:
Fri Jan 17, 2020 4:43 pm

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: 30413
Joined: Sun Aug 28, 2011 5:27 pm
Location: Tranås, SE

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » Fri Jan 17, 2020 6:47 pm

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.
"Son, in life you do not fight battles because you expect to win, you fight them merely because they need to be fought." -- Snagglepuss
Image

User avatar
ketmar
Lunatic
Lunatic
Posts: 365
Joined: Tue Jul 28, 2015 11:10 am
Location: Earth

Re: Redirector addon: stopped working since v28

Unread post by ketmar » Sat Jan 18, 2020 4:03 am

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: 30413
Joined: Sun Aug 28, 2011 5:27 pm
Location: Tranås, SE

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » Sat Jan 18, 2020 1:31 pm

ketmar wrote:
Sat Jan 18, 2020 4:03 am
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.
"Son, in life you do not fight battles because you expect to win, you fight them merely because they need to be fought." -- Snagglepuss
Image

IMNdi
Moongazer
Moongazer
Posts: 12
Joined: Wed Jul 12, 2017 4:56 pm

Re: Redirector addon: stopped working since v28

Unread post by IMNdi » Thu Jan 23, 2020 5:30 pm

TMINY wrote:
Fri Jan 17, 2020 5:05 pm
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.

User avatar
JohnAJ
New to the forum
New to the forum
Posts: 1
Joined: Tue Feb 04, 2020 9:52 am

Re: Redirector addon: stopped working since v28

Unread post by JohnAJ » Tue Feb 04, 2020 10:01 am

Lew Rockwell Fan wrote:
Thu Oct 04, 2018 6:53 am
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:
Wed Dec 11, 2019 5:11 am
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 Tue Feb 04, 2020 10:31 am, edited 1 time in total.
Reason: Removed attached extension.

User avatar
Andrew Herbert
Fanatic
Fanatic
Posts: 165
Joined: Mon Nov 25, 2019 9:46 pm

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » Tue Feb 04, 2020 9:53 pm

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

Lew Rockwell Fan
Fanatic
Fanatic
Posts: 190
Joined: Wed Jun 14, 2017 3:20 pm

Re: Redirector addon: stopped working since v28

Unread post by Lew Rockwell Fan » Thu Feb 06, 2020 11:45 pm

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.
"To attempt to silence a man is to pay him homage, for it is an acknowledgement that his arguments are both impossible to answer and impossible to ignore." - John Bryant

User avatar
Andrew Herbert
Fanatic
Fanatic
Posts: 165
Joined: Mon Nov 25, 2019 9:46 pm

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » Sat Mar 21, 2020 1:45 pm

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

User avatar
Andrew Herbert
Fanatic
Fanatic
Posts: 165
Joined: Mon Nov 25, 2019 9:46 pm

Re: Redirector addon: stopped working since v28

Unread post by Andrew Herbert » Thu Mar 26, 2020 4:21 pm

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: 30413
Joined: Sun Aug 28, 2011 5:27 pm
Location: Tranås, SE

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » Thu Mar 26, 2020 4:25 pm

Andrew Herbert wrote:
Thu Mar 26, 2020 4:21 pm
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.
"Son, in life you do not fight battles because you expect to win, you fight them merely because they need to be fought." -- Snagglepuss
Image

User avatar
letmeindude
Banned user
Banned user
Posts: 150
Joined: Tue Oct 09, 2018 8:56 am

Re: Redirector addon: stopped working since v28

Unread post by letmeindude » Thu Mar 26, 2020 4:56 pm

Andrew Herbert wrote:
Thu Mar 26, 2020 4:21 pm
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.

User avatar
New Tobin Paradigm
Knows the dark side
Knows the dark side
Posts: 10103
Joined: Tue Oct 09, 2012 7:37 pm
Location: Sector 001

Re: Redirector addon: stopped working since v28

Unread post by New Tobin Paradigm » Thu Mar 26, 2020 7:05 pm

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
Face facts, people simply need to go to the next level and MAINTAIN these extensions not selfishly JustOff them to oblivion.
Image

User avatar
Baloo
Forum staff
Forum staff
Posts: 117
Joined: Thu Aug 24, 2017 3:02 pm

Re: Redirector addon: stopped working since v28

Unread post by Baloo » Wed Apr 29, 2020 8:18 am

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: 30413
Joined: Sun Aug 28, 2011 5:27 pm
Location: Tranås, SE

Re: Redirector addon: stopped working since v28

Unread post by Moonchild » Wed Apr 29, 2020 9:06 am

Well we tried. And it would also allow other extensions using the (otherwise stand-alone) module to work.
"Son, in life you do not fight battles because you expect to win, you fight them merely because they need to be fought." -- Snagglepuss
Image