[Ext]Show Parent Folder

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
bugblatter
Posts: 59
Joined: June 21st, 2005, 12:31 am

Re: [Ext]Show Parent Folder

Post by bugblatter »

Just a minor bug note: (I know alice isn't supporting this anymore but if anyone else is interested)

If you have it set to reverse hierarchy (so lowest parent first), then if the first parent folder shown starts with an 's', that letter gets chopped off.
So "shopping<things to do<atlantis" is displayed as "hopping<things to do<atlantis"

If you want to fix it, this seems to work.
Go to showParentFolder@alice.xpi\chrome\content\overlay3.7.js: line 56:

Code: Select all

                folderTitle = folderTitle.replace(/^\s/,""); \
Then change '\s' to ' '; that is, replace those two characters (\s) with a single space.

Code: Select all

                folderTitle = folderTitle.replace(/^ /,""); \
I suspect there is some unexpected extra backslash processing going on.
User avatar
Alice0775
Posts: 2817
Joined: October 26th, 2007, 11:25 pm
Location: OSAKA

Re: [Ext]Show Parent Folder

Post by Alice0775 »

Thanks @ bugblatter
Please try Version 2.1.1(not yet reviewed) if still interested
bugblatter
Posts: 59
Joined: June 21st, 2005, 12:31 am

Re: [Ext]Show Parent Folder

Post by bugblatter »

Just tested it out. Works great now. Thanks.
davidhedlund
Posts: 2
Joined: October 30th, 2015, 7:00 am

Re: [Ext]Show Parent Folder

Post by davidhedlund »

Alice0775 wrote:Thanks @ bugblatter
Please try Version 2.1.1(not yet reviewed) if still interested
I want to help you by adding Swedish locale. Please send what you need to be translated.
User avatar
keithy397
Posts: 2352
Joined: August 29th, 2004, 6:49 pm
Location: North Wales, UK.

Re: [Ext]Show Parent Folder

Post by keithy397 »

I have just noticed SPF isn't working for me. Is it anything to do with the fact Firefox has just been upgraded to 52?
Cheers,
Keith
bugblatter
Posts: 59
Joined: June 21st, 2005, 12:31 am

Re: [Ext]Show Parent Folder

Post by bugblatter »

It's working for me on ff52. Have you tried any debug? Maybe I can help.
User avatar
keithy397
Posts: 2352
Joined: August 29th, 2004, 6:49 pm
Location: North Wales, UK.

Re: [Ext]Show Parent Folder

Post by keithy397 »

bugblatter wrote:It's working for me on ff52. Have you tried any debug? Maybe I can help.
I wouldn't know where to start!! Your help would be appreciated, thank you. :wink:
Cheers,
Keith
User avatar
DanRaisch
Moderator
Posts: 127187
Joined: September 23rd, 2004, 8:57 pm
Location: Somewhere on the right coast

Re: [Ext]Show Parent Folder

Post by DanRaisch »

Did you confirm that you have the latest version of the extension?
Does ot work if you disable all extensions except SPF?
bugblatter
Posts: 59
Joined: June 21st, 2005, 12:31 am

Re: [Ext]Show Parent Folder

Post by bugblatter »

Like Dan said. I have SPF 2.1.1 (Sept'16). Could be a conflict with another bookmark/library-related extension, so I would try disabling those first (before disabling them all).
User avatar
keithy397
Posts: 2352
Joined: August 29th, 2004, 6:49 pm
Location: North Wales, UK.

Re: [Ext]Show Parent Folder

Post by keithy397 »

What a wally! I forgot to enable it from the 'View' menu.....

Thanks for your help, sorry for my poor memory...!
Cheers,
Keith
Post Reply