Adding the architecture for an external transformation engine to hook into Raptor's layout process. One way this architecture can be used is for doing XSL transforms using a 3rd party component that implements the XSL processor. More details will be posted in mozilla.layout.

Currently enabled on windows only.  Set MOZ_XSL to 1 in your environment and build mozilla/layout.
This commit is contained in:
nisheeth%netscape.com 1999-06-28 13:52:29 +00:00
parent 3ae7461b9d
commit 1395e7b219

View File

@ -48,6 +48,9 @@ MISCDEP = \
$(DIST)\lib\raptorhtmltable_s.lib \
$(DIST)\lib\raptorxmlcontent_s.lib \
$(DIST)\lib\raptorxmldoc_s.lib \
!if defined(MOZ_XSL)
$(DIST)\lib\raptorxsldoc_s.lib \
!endif
$(DIST)\lib\raptorxulbase_s.lib \
$(DIST)\lib\raptorxulcontent_s.lib \
$(DIST)\lib\raptorevents_s.lib \
@ -86,6 +89,9 @@ LLIBS= \
$(DIST)\lib\raptorhtmltable_s.lib \
$(DIST)\lib\raptorxmlcontent_s.lib \
$(DIST)\lib\raptorxmldoc_s.lib \
!if defined(MOZ_XSL)
$(DIST)\lib\raptorxsldoc_s.lib \
!endif
$(DIST)\lib\raptorxulbase_s.lib \
$(DIST)\lib\raptorxulcontent_s.lib \
$(DIST)\lib\raptorevents_s.lib \