[Prev][Next][Index][Thread]

frames





I have the following url and frame layout

(http:export-url #u"/hofmann/avionic-frame-layout.html"
		 :computed
		 :response-function #'avionic-frame-layout
		 :expiration `(:interval ,(* 15. 60.))
		 :keywords '(:dasa-http :demo)
		 :documentation "avionic-frame-layout")

(defmethod avionic-frame-layout ((url url:http-computed-url) stream)
  (http:with-successful-response (stream :html :expires
(url:expiration-universal-time url))
    (with-html-document (:stream stream)
      (with-document-preamble (:stream stream)
	(declare-title "Frame Layout Example" :stream stream))
      (ns2.0:with-document-frameset (:rows '((:constraint 1)
					     (:constraint 10)
					     ) :stream stream)
	(ns2.0:note-document-frame
	  :name "header" :reference #u"/hofmann/avs-header.htm"
	  :target "header" :scrolling nil :resizable-p nil :stream stream)
	(ns2.0:with-document-frameset (:columns '((:constraint 2)
						  (:constraint 10)) :stream
stream)
	  (ns2.0:with-document-frameset (:rows '((:constraint 10)
					         (:constraint 5)) :stream
stream)
	    (ns2.0:note-document-frame
	      :name "subsysteme" :reference #u"/hofmann/avs-subsysteme.htm"
	      :target "subsysteme" :resizable-p nil :stream stream)
	    (ns2.0:note-document-frame
	      :name "search" :reference #u"/hofmann/abbreviations-form.html"
	      :target "search" :scrolling nil :resizable-p nil :stream stream))
	  (ns2.0:note-document-frame
	    :name "architecture" :target "architecture"
	    :reference #u"/hofmann/avs-architektur.htm" :resizable-p nil
:stream stream))))))


The frame named "architecture" displays an image-map
(#u"/hofmann/avs-architektur.htm").
What i would like to do is this. IF i click in an area in the image displayed
in the frame named architecture the new html document should be displayed
in a new window (target="_blank"). At the moment when i click on the image the
new html document is displayed in frame "architecture".

It works in the frame "subsysteme". If a clink on a link in this frame
a new browsser window appears. The #u"/hofmann/avs-subsysteme.htm" is a simple
html-file with references like <A HREF="pdf/ferspec.pdf"
TARGET="_BLANK">General Requirements</A>.

Has anybody an idea what i have do to get my example running the right way.

-- 
-----------------------------------------------------------------------------
Daimler-Benz Aerospace		|	Siegfried Hora
81663 Munich (Germany)		|	Tel: +49 89 60725060
Software Development 		|	Fax: +49 89 60726451
and Technology			|	email: Siegfried.Hora@lm.otn.dasa.de
-----------------------------------------------------------------------------