Links browser and open in new window

I have 2 problems with links and elinks. All time when I type "open in new window" it work but it open always in xterm, not in the same terminal I`m using at that moment for example mrvxt
Second problem is that I can`t open new tab normal or in background in elinks or links-g
Last edited by yellowfox (2008-03-20 19:39:16)

I tried to change variable TERM in .bashrc  or in /etc/profile but I saw in console only
Error opening terminal: mrxvt.
When I set this variable to "xterm" I had`t see any message as above
I read too some about infocmp, this commned show some info included in /usr/share/terminfo about terminals but I found only info about xterm
infocmp Terminal
infocmp: couldn't open terminfo file /usr/share/terminfo/T/Terminal.
infocmp mrxvt
infocmp: couldn't open terminfo file /usr/share/terminfo/m/mrxvt.
infocmp xterm
# Reconstructed via infocmp from file: /usr/share/terminfo/x/xterm
xterm|xterm terminal emulator (X Window System),

Similar Messages

  • Open in New Tab and Open in New Window have switched places, how to revert?

    I was glad to find as i logged in today that Firefox had a update ready. I was even more excited when i learned that the browser itself has been updated. And while all these new and exciting things make Firefox an amazing choice for a browser, im at my wits end on this little change that is annoying the hell out of me.
    Apparently between 3.6 and the new Firefox, when you right click on a link, you see Open in New Window in the spot where Open in New Tab was. This may not seem like a big deal, but to a person who has been opening windows in tabs since tabbed browsing came out, i absolutely hate having multiple windows open.
    When i right click on a link, its an automatic reflex for me to open it in a new tab, but now i cant. Each time i end up opening a window instead. Is there an easy fix to this little problem that's driving me insane?

    Opening order of Tabs in 4.0.1
    To make TABS open to the right within each browser window in the same order as you opening them:
    What to do:
    Open a second window so you can read these instr.
    Enter "about:config" in URL address bar.
    Get a warning - 'Are you sure / advanced settings...blah, blah. '
    Click YES
    Scroll down the page until you find the described line:
    "browser.tabs.insertRelatedAfterCurrent"
    Find it a ways down, then right click on the line to then TOGGLE the menu pop-up option to "FALSE" DONE !
    It worked immediately, no need to restart.
    My tabs now all open to the right in order of them being opened.
    Nice.
    Thank you 'Platon' from a different Mozilla help site.

  • SRW.SET_HYPERLINK - Handle SPACE in filename AND open in NEW WINDOW

    Report 10g (10.1.2.3.0 - 32bit on Windows 7 64bit)
    Issue #1:
    using srw.set_hyperlink to get a handle on *.pdf file on remote server. Report is launched as PDF. PDF that is opened via the URL launches in same window as report. I need run report as PDF, click hyperlink to get handle on another file which should launch in New Window.
    SRW.SET_HYPERLINKATTR only useful with HTML and HTMLCSS. Javascript? If so, sample code?
    Issue #2:
    possible that file retrieved will have spaces in its name. Hyperlink defaults %20 in the spaces of the name, but the link does not successfully retrieve file. Tried replacing spaces w/ %20, but like defaults does not retrieve document; due to actual file name not having the %20 in its actual name. Is there are way to account for the spaces in the URL then "remove" them to find the correct file and open in new window?
    Tried using virtual path as well as physical path.
    Help with either or both issues is truly appreciated,
    Thanks!!

    Hello,
    When you set the property "Hyperlink", the property "Additionnal Hyperlink Attributes (HTML)" is displayed. Set this property to :
    target="_blank"
    Regards

  • Why the links are still opened in new windows?

    Why the links are still opened in new windows even I selected the option to open in tabs?
    This is one of the web I am reading (sorry that it is in simplified Chinese), I have no problems reading it in tabs in Firefox:
    http://www.sodu.com.cn/mulu_30498.html

    Hi,
    How are you trying to open the windows? Safari does not default to opening new windows in tabs. It can open +external application+ links (e.g. from your email program, RSS viewer, etc) in a new tab, but not links from an existing website.
    To open links in a new tab, you'll need to hold the ctrl key and click the link, or use the middle-mouse button if your mouse has one (or right-click on the link and choose to open it in a new tab).

  • HTML-DB OAE Javascript to close current window and open a new window

    Hi everybody,
    We work with 1.6.
    What we want is to close the current window and open a new window with the URL mentionned in the window.open('http://www.cf.qc/pls/portal/PORTAL.....,'newwindow').
    The new window opening fires only once although we call it many times.
    Our javascript is:
    function closeTest()
    { alert('closeTest');
    if('&REQUEST.'=='QUITTER2'){     
    w = window.self;
    w.opener = w;
    w.close();
    window.open('http://www.cf.qc/pls/portal/PORTAL.home','newwindow','toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,resizable=yes');
    We call it on our application attributes :
    OnLoad="closeTest()"
    Thanks. Bye.

    Try this on for size:
    I have included two functions.
    windowRebuild() - opens a new window, maximizes it based on the screen size, removes all toolbars, and then closes the old window.
    myLocation(appName, pageName) - builds a url referencing an HTMLDB application, specfic to what server you are currently on. Very useful when you have an application on 3 different servers(dev, test, prod servers), you wouldn't want the server name hardcoded if you plan to export the app to another server.
    Also, you need to be careful when using &APP_ID. I am not completely certain how that is resolved at runtime, but I've found it only works when the javascript is in the HTML Header of a page and not stored in the template of the page.
    <script language="JavaScript1.1" type="text/javascript">
      This functions is for internal application use.
      Examples of myLocation:
      url = myLocation('&APP_ID.', 'APP_PUBLIC_PAGE');
      url = myLocation('MY_APP_ALIAS', 'MY_PAGE_ALIAS');
      url = myLocation('184', '10');
    function myLocation(myApp, myPage){
      var myHost = location.host;
      var newURL;
      newURL = 'http://'+myHost+'/pls/htmldb/f?p='+myApp.toString()+':'+myPage.toString();
      return newURL;
    /*  Function windowRebuild()
    *   This function will open a new window and close the old window.
    *   This function will also maximize the new window and remove all toolbars.
    function windowRebuild(){
       if(window.name != 'myAppWin'){
        var url = myLocation('&APP_ID.', 'PAGE_ALIAS');
        var myWin = window.open(url,'myAppWin','toolbar=0,scrollbars=1,menubar=0,status=1,resizable=1,location=0');
        window.opener = 'x';
        window.close();
       if(window.name == 'myAppWin'){
        window.moveTo(0,0);
        window.resizeTo(screen.availWidth,screen.availHeight);
    </script>Let me know if that works or you need some more explanation.
    Chris

  • When I open a new window, the current window is closed. I would like to keep the current window and open the new window without losing my current window. I checked "Open new window in a new tab instead" under tabs

    When I open a new window, the current window is closed. I would like to keep the current window and open the new window without losing my current window. I checked "Open new window in a new tab instead" under tabs
    == This happened ==
    Every time Firefox opened
    == Noticed yesterday, June27, 2010

    i just went into preferences, deleted what was in the home page, and entered a new home page address which solved the problem, 

  • Firefox opens the old browsing window (previous session) every time i try and open a new window, how do I change this back?

    Every time I go to open a new window, the old one will come up instead. For a while it was working fine, then I kept needing the old window and would use the 'restore previous session' feature to access this. However, even after I didn't need it anymore (and without me selecting the feature, it would still open the previous session.

    Tools > Options > General > Startup: "When Firefox Starts": "Show my home page" "Show a blank page"
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js [2] and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups and open and closed (undo) tabs to get lost, so you will have to create them again (make a note or bookmark them).
    See also:
    * [1] http://kb.mozillazine.org/Session_Restore
    * [2] http://kb.mozillazine.org/sessionstore.js

  • AF Table-CommandLink and Open in New Window issue

    I am using af:table to display the result set and inside the af:table i use af:commandLink to display the link to users. When the user clicks the individual link , user will go to the correponding detail page which is working fine.
    But the problem is if i right click the commandLink from the browser and click "Open in New Window" in IE or "Open Link in New Window" . it opens a new window and displays the same page instead the detail page.
    My requirement is when user click the link user should see the corresponding detail page - which is working fine now.
    But when user clicks open in new window from browser in the new window user should see the corresponding detail page. How do i accomplilsh this scenario.
    Any help would be highly apprciateable..

    Hi Frank, thanks for the quick reply. But if u think of the end user, most of user always right click and click open in new browser to see the details. so that they can stay the results page. ..
    Do you mean, any link navigation in ADF faces, dont work if we click "open in new window"?

  • I can no longer hold down the Safari icon on the dock and open a new window

    I noticed after installing Snow Leopard that I am unable to hold down the icon for Safari on my dock and choose the option to open a new window. I have had to revert to (Command-Tabbing) through my open applications to get to Safari, then (Command-N).
    I found it much more convenient to do it the other way. Am I missing something, or is this something that has been removed with the new Snow Leopard operating system?
    Please help. Thanks!

    Thank you. What a pain though. Why would they make it a separate command now. It would be so easy to have kept it in the pop-up that shows when you hold the cursor down on it.

  • PDF in Frame - Open Web Link does not open in new window

    I actually have 2 problems.
    1. Acrobat 7.0.9. Added a link to open a web page. When the pdf is viewed from within a frame on a web page, the web page link in the pdf does not open in a new window but replaces the pdf in the frame.
    2. If I download the pdf to my workstation and open it and click on the link, it does open in a new window BUT opens up 2 browser windows where the 2nd one opened is blank (yes, I am single clicking on the link)
    Issue 1 occurs in both IE 6, IE 7 and Firefox ?.??
    Doug

    Try Ctrl-Y for preview.

  • Links will not open in new window from iPad but work in IE on desktop.

    I am trying to set some links to open in a new tab but for some reason they just keep opening in the original tab. External links work fine but when I try to make another page from my website open in new tab, it will not work.
    I have looked at the code and it all looks fine.
    <a class="nonblock nontext shadow rounded-corners clearfix grpelem" id="u105617-9" href="metro_tweets.html" target="_blank"><!-- content --><p id="u105617"> </p><p id="u105617-2"> </p><p id="u105617-3"> </p><p id="u105617-7">Metropolitan<br/>Region TWEETS</p></a>
    I have also ticked the box that says "open the link in a new window or tab".
    Any ideas what the issue could be? It has worked before so I am sure it can be done.
    Would it have anything to do with the site hierarchy?
    Cheers
    Garry

    Hi Aish,
    Thanks for the quick reply.
    I had a feeling you would ask me those questions so I'll give you a bit more background of what I am doing.
    I have created a locally accessed web app as part of project I am working on at Universty. It is a mockup of an iPad app that I will eventually build, although it is fully functional in it's web app state. For this reason it is not hosted on any web server but instead transferred to the iPad via DiskAid and accessed from Mercury Browser.
    Mercury browser is the only browser that I have found that can display html files from within it's own file storage and make it look like it is being served from a server. Safari browser will not let you do this and the only other browser that I found that could do it has been discontinued (Terra Browser).
    Adobe Muse has been fantastic for doing this kind of work and as I said before, the internal links opened in a new tab with Mercury Browser previously, so I am not really sure what is going on.
    Any ideas would be appreciated.
    Cheers
    Garry

  • Quick link does not open in new window

    Hi all
    I created an URL iView and assigned a quick link to it. The "launch in new New Window" property is set to
    "display in separate window".
    If i call the quick link url the iView is not shown in a separate window, but in the content area. Why?
    If I click in the portal on that iView, it opens in a new window.
    What am I missing here or is it a portal bug?
    Thanks for your help.
    Paul

    Hi Paul,
    I face the same problem, any findings so far?
    Thanks!
    Best regards,
    Sandra

  • JavaScript and "Open In New Window" not working.

    I've been using Safari 5 since it came out and there were no problems. But recently my JavaScript has stopped working. Whenever I click on a link that is supposed to run a script nothing happens. Similarly when I click a link that is supposed to open automatically in a new window, nothing happens. I've tried reseting Safari but that did not help. I had this same issue with Safari 4 and the update to 5 solved it, but now I do not know what to do.

    HI and welcome to Apple Discussions...
    From the Safari Menu Bar click Safari/Preferences then select the Security tab.
    Make sure Java is enabled.
    And, from a Finder window select your Home Folder in the Sidebar on the left. Then open the Library folder, then the Caches folder, then the com.apple.Safari folder. Move the cache.db file to the Trash.
    Relaunch Safari. If you still have problems, go to the Safari Menu Bar, click Safari/Preferences. Make note of all the preferences under each tab. Quit Safari. Now go to ~/Library/Preferences and move this file com.apple.safari.plist to the Desktop.
    Relaunch Safari and see if that makes a difference. If not, move the .plist file back to the Preferences folder. If Safari functions as it should, move that .plist file to the Trash.
    I had this same issue with Safari 4 and the update to 5 solved it, but now I do not know what to do.
    If nothing above helps, install the v10.6.4 Combo Update
    Then repair permissions.
    Launch Disk Utility. (Applications/Utilities) Select MacintoshHD in the panel on the left, select the FirstAid tab. Click: Repair Disk Permissions. When it's finished from the Menu Bar, Quit Disk Utility and restart your Mac. If you see a long list of "messages" in the permissions window, it's ok. That can be ignored. As long as you see, "Permissions Repair Complete" when it's finished... you're done. Quit Disk Utility and *restart your Mac*.
    Carolyn

  • Tabs disappear and open a new window when editing files in Wordpress

    When editing files in Wordpress built-in code editor, if I highlight and try to copy/paste to another file or even within the same file the tab I am on will often abruptly close and then reopen itself in a whole new window. This is extremely disruptive. I have to close the window that popped open and go back to my browser instance with the open tabs and create a new tab for that page then restore my tabs in their previous order. The have to do it all over again a few minutes later.
    Never had any type of trouble like this with previous versions of Firefox, and nothing else has changed on this PC.

    Hi Nicolas,
    I don't know about a pop-up, but if you are trying to open a page (page 2) in a new window (internet explorer window), then do the following:
    Instead of using a navigate pushbutton, use a hyperlink component.
    In the URL selection option insert the URL (web address) of page 2. You can find the URL by going to SE80, in the repository browser select "BSP Application" and "THE TECHNICAL NAME OF YOUR BPS". Open your BSP and go to the folder "pages with flow logic" and find your "page 2". Double click on your page and then select the "properties" tab and navigate to the bottom where you will see the pages URL.
    Insert this URL address into your hyperlink component back in the Web Interface Builder.
    Leave the Target selection as parent. Make sure your internet explorer enhanced options are set to "not reuse the same window" under the browser options.
    Good luck.
    Rael

  • HTML Snippets and Opening in New Window?

    Hello,
    New to iWeb and this forum. Have been developing a site and I have been using an html snippet on one page. I would like to have that page open in a new window, therefore, I would like the link to that page to open the window. I know about the "check box" when creating links that makes this happen. However, as this is in the navigational menu on the top of the page, there isn't an option for this in iWeb.
    Can you help please? Thanks in advance.

    Koeklin,
    Thanks for the reply. I was trying to do this a different way, and I'm sorry if I haven't expressed myself clearly.
    I have been using Blogspot for a company blog. I wanted to incorporate this blog into my iweb site. However, I don't want to lose what I have already done in Blogspot (can this easily be transferred? I don't know).
    So what I was doing was this...
    I have on my site a page labeled "blog." When this link is clicked, I show, via html snippet, the blog from Blogspot, but because of how the snippet shows on my page, it does not show the menu at the top of the Blogspot page (which is what I would like). I'm trying to make the blogspot blog appear to be an original part of my site, even though it isn't. I was hoping to have this blog page open in a new window with the Blogspot blog present on my blog page. I'm pretty sure everyone is confused by now...
    Or, maybe to make things easier, is there a way to incorporate a "back" button on this page to go back to the site?
    I'm sorry if this is confusing....

Maybe you are looking for

  • Audio books will not sync from itunes to iphone

    I have four audio books on ITunes that at one time were synced to Iphone.  Now they are not on the phone and I can not sync from Itunes, even though they are in Itunes as a purchase.  I have gone to book and audiobooks and checked sync all on both. t

  • How does the width parameter in the peak detector work?

    I would like to know how the window slides. For example if i take a width of 3. My first window is from 1 to 3. My next window will slide from 4 to 6 or from 2 to 4. Thank you.

  • PPro CC will not launch on my Mac (OSX 10.8.5)

    I'm a member of CC for teams and I've used the app to install PPro and Photoshop. Photoshop works fine, but when I try to launch PPro I'll just see the splash screen for about 1 second, and then it disappears again and nothing else happens. There are

  • Movement Types-Reg

    Dear All, How to create a movement type, after creating a movement type I need to attach one of the special stock indicator excessively for that movement type. How to check the effects of movement type Thanks&Regards, Krishna

  • Viewing 1080p content on Macbook pro

    Is it possible to hook up Sony Playstation 3 to Macbook Pro to watch blue ray discs on the Macbook? If not, is there a way to view HD movies on Macbook Pro without blue ray player, or can you buy a blueray drive thats installs on the Macbook Pro? Als