Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

can be overridden to be something like:

Code Block

	public final String getMarkupType() {
		return "xhtml";
	}

	protected final void configureResponse() {
		super.configureResponse();
		getResponse().setContentType("text/html");
	}

...