Bugs item #686736, was opened at 2003-02-14 19:31
Message generated for change (Comment added) made by anonymous2
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=432066&aid=686736&group_id=42081

Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Submitted By: Sarah Sweeney (sarah324)
Assigned to: Nobody/Anonymous (nobody)
Summary: maximized.htm only works when actually searching

Initial Comment:
I couldn't figure out why pages I was opening were 
not opening "maximized" (or using the whole 
window, at least) even though I have 
pagetemplate="maximized.htm"; in my 
localprefs.js. After trying a few different searches, I 
realized that maximized.htm only gets used when I 
actually search for something - so if I enter "amaz" 
the window will be smaller, but if I enter "amaz the 
two towers", it will use maximized.htm. 

----------------------------------------------------------------------

Comment By: Brent Dai (anonymous2)
Date: 2004-02-04 08:23

Message:
Logged In: YES 
user_id=967730

Change defer_tools.js like this.

// Open a search window in an existing frame
function openNamedSearchWindow(url, name)
{
  var w = null;
  if (useExternalBrowser && DQSDLauncher)
    DQSDLauncher.OpenDocument(url);
  else if (typeof windowOpenFeatures != "undefined") {
    w = window.open(pagetemplate, name, 
windowOpenFeatures);
    w.open(url, name, windowOpenFeatures);
  } else {
    w = window.open(pagetemplate, name);
    w.open(url, name);
  }
}

This only applies when useExternalBrowser is false.

----------------------------------------------------------------------

Comment By: Nobody/Anonymous (nobody)
Date: 2004-02-04 08:09

Message:
Logged In: NO 

Change defer_tools.js like this.

function openNamedSearchWindow(url, name)
{

  var w = null; /*Changed*/

  if (useExternalBrowser && DQSDLauncher)
    DQSDLauncher.OpenDocument(url);
  else if (typeof windowOpenFeatures != "undefined") {

    w = window.open(pagetemplate, name, 
windowOpenFeatures); /*Changed*/

    w.open(url, name, windowOpenFeatures);
  } else {

    w = window.open(pagetemplate, name); /*Changed*/

    w.open(url, name);
  }
}

This only applies when useExternalBrowser is false.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=432066&aid=686736&group_id=42081


-------------------------------------------------------
The SF.Net email is sponsored by EclipseCon 2004
Premiere Conference on Open Tools Development and Integration
See the breadth of Eclipse activity. February 3-5 in Anaheim, CA.
http://www.eclipsecon.org/osdn
_______________________________________________
DQSD-Devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/dqsd-devel

Reply via email to