From f3ea5d79a266864c159c161e91d65ae89e969f89 Mon Sep 17 00:00:00 2001 From: hns Date: Tue, 19 Mar 2002 19:14:09 +0000 Subject: [PATCH] added skinpath field to set skin resolution path from properties or from application code. --- src/helma/framework/ResponseTrans.java | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/src/helma/framework/ResponseTrans.java b/src/helma/framework/ResponseTrans.java index 326a5169..8d5760f5 100644 --- a/src/helma/framework/ResponseTrans.java +++ b/src/helma/framework/ResponseTrans.java @@ -35,10 +35,10 @@ public class ResponseTrans implements Externalizable { */ public int status = 0; - /** - * Used for HTTP authentication - */ - public String realm; + /** + * Used for HTTP authentication + */ + public String realm; // name of the skin to be rendered after completion, if any public transient String skin = null; @@ -60,6 +60,9 @@ public class ResponseTrans implements Externalizable { // these are used to implement the _as_string variants for Hop templates. private transient Stack buffers; + // the path used to resolve skin names + public transient String skinpath = null; + static final long serialVersionUID = -8627370766119740844L; /**