*** ../maverick.1/src/java/org/infohazard/maverick/flow/MaverickContext.java	Thu Dec 12 15:16:24 2002
--- src/java/org/infohazard/maverick/flow/MaverickContext.java	Tue Feb 18 15:22:48 2003
***************
*** 26,31 ****
--- 26,34 ----
  	 */
  	private static Category log = Category.getInstance(MaverickContext.class.getName());
  	
+ 	/** Mime type used if we stop before last transform. */
+ 	protected final static String UNFINISHED_CONTENTTYPE = "text/xml";
+ 	
  	/**
  	 */
  	protected Dispatcher dispatcher;
***************
*** 188,193 ****
--- 191,199 ----
  			
  		if (this.nextTransform >= this.transformCount)
  		{
+ 			if (this.transformCount == 0)
+ 				this.getRealResponse().setContentType(UNFINISHED_CONTENTTYPE);
+ 
  			this.log.debug("...which is the LastStep");
  			return new LastStep(this);
  		}
