Tab Mix Plus

Official Home of TMP
It is currently Tue May 21, 2013 8:13 am

All times are UTC - 6 hours [ DST ]




Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 3278 posts ]  Go to page Previous  1 ... 92, 93, 94, 95, 96, 97, 98 ... 164  Next
Author Message
 Post subject:
PostPosted: Mon Sep 20, 2010 11:42 am 
tab_mix_plus-0.3.8.5pre.100920a results (briefly browsing Gmail was ok)

Code:
Tabmix Plus ERROR:
error when TMP_PC_init trying to change openUILinkIn
SyntaxError: missing ; before statement
Stack Trace:
((void 0),"openUILinkIn","function openUILinkIn(url, where, aAllowThirdPartyFixup, aPostData, aReferrerURI) { var bookMarkId, backgroundPref, tabmixArg = arguments.length > 5 ? arguments[5] : null;          if (tabmixArg) {            bookMarkId = \"bookMarkId\" in tabmixArg && tabmixArg.bookMarkId > -1 ? tabmixArg.bookMarkId : null;            backgroundPref = \"backgroundPref\" in tabmixArg ? tabmixArg.backgroundPref : null;          }\n    if (!where || !url) {\n        return;\n    }\n    var aRelatedToCurrent;\n    if (arguments.length == 3 && typeof arguments[2] == \"object\") {\n        let params = arguments[2];\n        aAllowThirdPartyFixup = params.allowThirdPartyFixup;\n        aPostData = params.postData;\n        aReferrerURI = params.referrerURI;\n        aRelatedToCurrent = params.relatedToCurrent;\n    }\n    if (where == \"save\") {\n        saveURL(url, null, null, true, null, aReferrerURI);\n        return;\n    }\n    const Cc = Components.classes;\n    const Ci = Components.interfaces;\n    var w = getTopWin();          if (where == \"window\" && getSingleWindowMode()) where = \"tab\";\n    if (!w || where == \"window\") {\n        var sa = Cc['@mozilla.org/supports-array;1'].createInstance(Ci.nsISupportsArray);\n        var wuri = Cc['@mozilla.org/supports-string;1'].createInstance(Ci.nsISupportsString);\n        wuri.data = url;\n        var allowThirdPartyFixupSupports = Cc['@mozilla.org/supports-PRBool;1'].createInstance(Ci.nsISupportsPRBool);\n        allowThirdPartyFixupSupports.data = aAllowThirdPartyFixup;\n        sa.AppendElement(wuri);\n        sa.AppendElement(null);\n        sa.AppendElement(aReferrerURI);\n        sa.AppendElement(aPostData);\n        sa.AppendElement(allowThirdPartyFixupSupports);\n        var ww = Cc['@mozilla.org/embedcomp/window-watcher;1'].getService(Ci.nsIWindowWatcher);\n        var newWin = ww.openWindow(w || window, getBrowserURL(), null, \"chrome,dialog=no,all\", sa);          if (bookMarkId) newWin.bookMarkIds = bookMarkId;\n        return;\n    }\n    var loadInBackground = getBoolPref(backgroundPref || \"browser.tabs.loadBookmarksInBackground\");\n    if (where == \"current\" && w.gBrowser.selectedTab.pinned) {\n        try {\n            let uriObj = Services.io.newURI(url, null, null);\n            if (!uriObj.schemeIs(\"javascript\") &&\n                w.gBrowser.currentURI.host != uriObj.host) {\n                where = \"tab\";\n            }\n        } catch (err) {\n            where = \"tab\";\n        }\n    }\n    switch (where) {\n      case \"current\":\n        w.loadURI(url, aReferrerURI, aPostData, aAllowThirdPartyFixup);\n        break;\n      case \"tabshifted\":\n        loadInBackground = !loadInBackground;\n      case \"tab\":\n        let browser = w.gBrowser;\n        browser.loadOneTab(url, {referrerURI: aReferrerURI, postData: aPostData, inBackground: loadInBackground, allowThirdPartyFixup: aAllowThirdPartyFixup, relatedToCurrent: aRelatedToCurrent});\n        break;\n      default:;\n    }\n    var fm = Components.classes['@mozilla.org/focus-manager;1'].getService(Components.interfaces.nsIFocusManager);\n    if (window == fm.activeWindow) {\n        w.content.focus();\n    } else {\n        w.gBrowser.selectedBrowser.focus();\n    }\nif (bookMarkId) {            var tab = where == \"current\" ? w.gBrowser.mCurrentTab : w.gBrowser.getTabForLastPanel();            tab.setAttribute(\"tabmix_bookmarkId\", bookMarkId);          }          }")@chrome://tabmixplus/content/utils.js:222
()@chrome://tabmixplus/content/utils.js:67
TMP_PC_init()@chrome://tabmixplus/content/places/places.js:132
TMP_PC_handleEvent([object Event])@chrome://tabmixplus/content/places/places.js:16


Code:
Tabmix Plus ERROR:
error when TMP_PC_init trying to change whereToOpenLink
SyntaxError: missing ; before statement
Stack Trace:
((void 0),"whereToOpenLink","function whereToOpenLink(e, ignoreButton, ignoreAlt) {\n    if (!e) {\n        return \"current\";\n    }\n    var shift = e.shiftKey;\n    var ctrl = e.ctrlKey;\n    var meta = e.metaKey;\n    var alt = e.altKey && !ignoreAlt;\n    var middle = e instanceof MouseEvent && !ignoreButton && e.button == 1;\n    var middleUsesTabs = getBoolPref(\"browser.tabs.opentabfor.middleclick\", true);\n    if (ctrl || middle && middleUsesTabs) {\n        let inversefocus = getBoolPref(\"extensions.tabmix.inversefocusOther\", true);         return inversefocus || shift ? \"tabshifted\" : \"tab\";\n    }\n    if (alt) {\n        return \"save\";\n    }\n    if (shift || middle && !middleUsesTabs) {\n        return getSingleWindowMode() ? \"tab\" : \"window\";\n    }\n    return \"current\";\n}")@chrome://tabmixplus/content/utils.js:222
()@chrome://tabmixplus/content/utils.js:67
TMP_PC_init()@chrome://tabmixplus/content/places/places.js:99
TMP_PC_handleEvent([object Event])@chrome://tabmixplus/content/places/places.js:16

Code:
Tabmix Plus ERROR:
error when TMP_PC_initPlacesUIUtils trying to change TMP_Places.getURLsForContainerNode
SyntaxError: missing ; after for-loop initializer
Stack Trace:
((void 0),"TMP_Places.getURLsForContainerNode","function PU_getURLsForContainerNode(aNode) {\n    var urls = [];\n    if (!PlacesUtils.nodeIsContainer(aNode)) {\n        return urls;\n    }\n    var root = PlacesUtils.getContainerNodeWithOptions(aNode, false, true);\n    var result = root.parentResult;\n    var wasOpen = root.containerOpen;\n    var didSuppressNotifications = false;\n    if (!wasOpen) {\n        didSuppressNotifications = result.suppressNotifications;\n        if (!didSuppressNotifications) {\n            result.suppressNotifications = true;\n        }\n        root.containerOpen = true;\n    }\n    for (let i = 0; i < root.childCount; ++i) {\n        let child = root.getChild(i);\n        if (PlacesUtils.nodeIsURI(child)) {\n            urls.push({id: child.itemId, uri: child.uri, isBookmark: PlacesUtils.nodeIsBookmark(child)});\n        }\n    }\n    if (!wasOpen) {\n        root.containerOpen = false;\n        if (!didSuppressNotifications) {\n            result.suppressNotifications = false;\n        }\n    }\n    return urls;\n}")@chrome://tabmixplus/content/utils.js:222
()@chrome://tabmixplus/content/utils.js:67
TMP_PC_initPlacesUIUtils()@chrome://tabmixplus/content/places/places.js:159
TMP_PC_init()@chrome://tabmixplus/content/places/places.js:26
TMP_PC_handleEvent([object Event])@chrome://tabmixplus/content/places/places.js:16


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 11:47 am 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7288
Anon,
i need some more information
Firefox version
your extensions list

it look like incompatibility with some extensoin
can you help isolate the one ?

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 12:10 pm 
Offline
Admin

Joined: Wed Aug 03, 2005 1:13 am
Posts: 5194
Location: Rocky Mountains
Love the experimental - works well here so far (goog search and gmail tested, not extensively, sorry, as i try to avoid using goog).

Thanks you very much, onemen!

_________________
VistaHP/Fx latest beta/TMP latest dev.build/Troubleshooting TMP/My styles


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 12:46 pm 
Offline

Joined: Sun Dec 10, 2006 3:08 am
Posts: 151
experimental, 100920a works good.
I've tested on Google search, mail, reader, calendar and document.

_________________
Extension translator(ja), developer, ConQuery modifier...


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 2:08 pm 
onemen wrote:
Anon,
i need some more information
Firefox version
your extensions list

it look like incompatibility with some extensoin
can you help isolate the one ?


I surely miss MR Tech toolkit to send you my full extensions list...

Using nightly build 20100920 4.0b7pre wow64 first I disabled all my extensions except TMP 100920a and All in One Sidebar 0.7.12 B4 for the error console (don't know how to use the new web console for this) and it seems that each time I open the history or bookmarks the same errors appear. The same happens when using TPM 100918a.

From further testing I notice the errors also appear with combinations of TMP 100918a, All in One Sidebar 0.7.12 B3, firefox 20100916 4.0b7pre win64 and the 32bits version with new clean profiles with only TMP and AiOS installed.

A new error that appeared:
Quote:
Tabmix Plus ERROR:
error when trying to change null
SyntaxError: missing ; before statement
Stack Trace:
([object XULElement],"loadURIWithFlags","function loadURIWithFlags(aURI, aFlags, aReferrerURI, aCharset, aPostData) {\n var allowLoad = this.tabmix_allowLoad != false || aURI.match(/^javascript:/);\n var tabbrowser = document.getBindingParent(this);\n var tab = tabbrowser.getTabForBrowser(this);\n var isBlankTab = tabbrowser.isBlankNotBusyTab(tab);\n var isLockedTab = tab.hasAttribute("locked");\n if (!allowLoad && !isBlankTab && isLockedTab) {\n let newTab = tabbrowser.addTab();\n tabbrowser.selectedTab = newTab;\n let browser = newTab.linkedBrowser;\n browser.stop();\n browser.tabmix_allowLoad = true;\n browser.loadURIWithFlags(aURI, aFlags, aReferrerURI, aCharset, aPostData);\n return;\n }\n this.tabmix_allowLoad = aURI == "about:blank" || !isLockedTab;\n \n if (!aURI) {\n aURI = "about:blank";\n }\n if (aCharset) {\n try {\n this.documentCharsetInfo.parentCharset = this.mAtomService.getAtom(aCharset);\n } catch (e) {\n }\n }\n if (!(aFlags & this.webNavigation.LOAD_FLAGS_FROM_EXTERNAL)) {\n this.userTypedClear++;\n }\n try {\n this.webNavigation.loadURI(aURI, aFlags, aReferrerURI, aPostData, null);\n } finally {\n if (this.userTypedClear) {\n this.userTypedClear--;\n }\n }\n}")@chrome://tabmixplus/content/utils.js:218
(false,[object XULElement],"loadURIWithFlags")@chrome://tabmixplus/content/utils.js:67
([object XULElement])@chrome://tabmixplus/content/minit/tablib.js:28
TMP_EL_onTabOpen([object Event])@chrome://tabmixplus/content/tabmix.js:789
TMP_EL_handleEvent([object Event])@chrome://tabmixplus/content/tabmix.js:266
addTab("http://www.exxile.de/aios_installed.htm?v=0.7.12 B4",(void 0))@chrome://tabmixplus/content/utils.js:305
loadTabs([object Array],false)@chrome://browser/content/tabbrowser.xml:1073
@chrome://aios/content/aios.js:297


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 2:19 pm 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7288
In Minefield you can use can use about:support for your extensions list
also you can set devtools.errorconsole.enabled to true to use the error console (need restart)

I'v found the problem. :idea:

new version in a day or 2

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 4:24 pm 
What about Open other tabs next to current one being broken in the latest nightly Minefield builds? I can type in a address and it opens last, not next to the current tab. Applies to any other links via right click, bookmarks, etc.


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 4:28 pm 
onemen wrote:
In Minefield you can use can use about:support for your extensions list
also you can set devtools.errorconsole.enabled to true to use the error console (need restart)

I'v found the problem. :idea:

new version in a day or 2


Thanks for the tips Onemen, looking forward to the new version!


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 6:30 pm 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7288
Gawd wrote:
What about Open other tabs next to current one being broken in the latest nightly Minefield builds? I can type in a address and it opens last, not next to the current tab. Applies to any other links via right click, bookmarks, etc.


look here for troubleshooting tips.

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 7:10 pm 
Figured it out, it only happens when Xmarks 3.8.7 is used.


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 7:12 pm 
Yep, it's definitely caused by Xmarks 3.8.7 which is available here. Looks like an incompatibility to me. :P


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 7:17 pm 
Oh, it only happens in the latest Minefield nightly builds, not Firefox 4.0 beta 6.


Top
  
 
 Post subject:
PostPosted: Mon Sep 20, 2010 8:00 pm 
Offline
User avatar

Joined: Tue Aug 04, 2009 12:35 pm
Posts: 10
Location: Hölle
onemen wrote:
KaaMoS wrote:
I have a little question... on menu customization I saw there isn't "Add this tab to Bookmarks" option.
It usually appeared on context menu (on tab) for Firefox 3.6.x.

Is this a feature deleted on Firefox 4 or was it something forgotten in TMP?

Thanks and keep the good work!!


this feature deleted on Firefox 4


:( that's bad NEWs...
Do you think is possible to you to re-add this feature?

I find it very useful since it pointed me directly to Bookmark form where I could change its name and location in just one (right) click, working even with tabs I'm not watching on the moment; on the other hand... on Firefox 4 without it, I HAVE to go to the tab I want to make bookmark and then make 2 clicks over the "star" on address bar to open the Bookmark form (forgot to mention I dislike that star, I usually hide it manually).

I hope you could add it, you have the magic after all.
Thanks again!

_________________
-=[ VERONIKA ZEMANOVÁ LOVER ]=- Windows 7 Ultimate (x64) ★ Firefox 8.0a1 (x86) ★ TMP 0.3.8.6


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 21, 2010 1:19 am 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7288
Gawd wrote:
Yep, it's definitely caused by Xmarks 3.8.7 which is available here. Looks like an incompatibility to me. :P


i'm working on this

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
 Post subject:
PostPosted: Tue Sep 21, 2010 4:29 pm 
It looks like it's fixed in the latest hourly build of Minefield. :)


Top
  
 
 Post subject:
PostPosted: Wed Sep 22, 2010 8:30 am 
Offline

Joined: Sun Dec 10, 2006 3:08 am
Posts: 151
Doesn't open link from other applications at end of tab bar when TMP session manager is enabled.

TMP 0.3.8.4, 0.3.8.5pre.100920a
Mozilla/5.0 (Windows; U; Windows NT 5.1; ja; rv:1.9.2.10) Gecko/20100914 Firefox/3.6.10

Steps to reproduce:
1. Exit Firefox with stored session.
2. Clink link from other application or execute 'firefox <URL>'

Actual results:
Open link from other application at top of tab bar, and stored tabs next to it.

Expected results:
Open stored tabs, and link from other application at end of tab bar same as the using Firefox's built-in session restore feature.

My TMP preferences is attached.


Attachments:
File comment: TMP preferences
TMPpref3.6.txt [7.86 KiB]
Downloaded 105 times

_________________
Extension translator(ja), developer, ConQuery modifier...
Top
 Profile  
 
 Post subject:
PostPosted: Wed Sep 22, 2010 10:48 am 
Offline
User avatar

Joined: Tue Feb 26, 2008 7:13 pm
Posts: 115
Location: Australia
The icon is missing from Reload (Icon+Text) when the reload timer menu is enabled with the Strata Reloaded theme.

a similar issue occured with the default theme but has since been fixed.

Is this an issue in TMP or the theme?


Top
 Profile  
 
 Post subject: TMP GUI error
PostPosted: Wed Sep 22, 2010 4:46 pm 
Using Minefield 4.0b7pre.US built on 16/09/2010 the following graphical errors appear when TMP is activated - when switched off, the errors disappear. Please note the buggy tablist.


Attachments:
File comment: Screenshot of Minefield graphical user interface bug when TMP is activated
tmperror.png
tmperror.png [ 133.41 KiB | Viewed 1381 times ]
Top
  
 
 Post subject:
PostPosted: Wed Sep 22, 2010 4:47 pm 
forgot to state the TMP version: 0.3.8.5pre-100918a


Top
  
 
 Post subject:
PostPosted: Wed Sep 22, 2010 5:39 pm 
Offline
Admin
User avatar

Joined: Thu Aug 04, 2005 1:12 pm
Posts: 7288
zyrill wrote:
forgot to state the TMP version: 0.3.8.5pre-100918a


you must be joking :lol:

you are still using 16/09 4.0b7pre version on 22/9

you need to update your 4.0b7pre version

_________________
Tab Mix Plus 0.4.1.0
latest Dev-Build
Forum RSS, Troubleshooting


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic This topic is locked, you cannot edit posts or make further replies.  [ 3278 posts ]  Go to page Previous  1 ... 92, 93, 94, 95, 96, 97, 98 ... 164  Next

All times are UTC - 6 hours [ DST ]


Who is online

Users browsing this forum: Exabot [Bot] and 2 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group