juanpablo-santos commented on code in PR #282:
URL: https://github.com/apache/jspwiki/pull/282#discussion_r1237476176


##########
jspwiki-bootstrap/src/main/java/org/apache/wiki/bootstrap/WikiBootstrapServletContextListener.java:
##########
@@ -98,4 +101,33 @@ ConfigurationSource createConfigurationSource( final 
Properties properties ) {
     public void contextDestroyed( final ServletContextEvent sce ) {
     }
 
+    /**
+     * This method sets the JSPWiki working directory (jspwiki.workDir). It 
first checks if this property
+     * is already set. If it isn't, it attempts to use the servlet container's 
temporary directory
+     * (javax.servlet.context.tempdir). If that is also unavailable, it 
defaults to the system's temporary
+     * directory (java.io.tmpdir).
+     * <p>
+     * This method is package-private to allow for unit testing.
+     *
+     * @param properties     the JSPWiki properties
+     * @param servletContext the Servlet context from which to fetch the 
tempdir if needed
+     * @since JSPWiki 2.11.1
+     */
+    void setWorkDir(final Properties properties, final ServletContext 
servletContext) {

Review Comment:
   Hi,
   
   my bad, I was meaning do all of these changes inside `PropertyReader`, just 
before the [variable 
expansion](https://github.com/apache/jspwiki/blob/master/jspwiki-util/src/main/java/org/apache/wiki/util/PropertyReader.java#L148).
 That way all property reading/mungling is done inside 
`PropertyReader#loadWebAppProps`



##########
jspwiki-main/src/main/java/org/apache/wiki/ui/Installer.java:
##########
@@ -86,6 +86,7 @@ public Installer( final HttpServletRequest request, final 
ServletConfig config )
         // Stash the request
         m_request = request;
         m_validated = false;
+        TMP_DIR = m_engine.getWikiProperties().getProperty( "java.io.tmpdir" );

Review Comment:
   should be `m_engine.getWikiProperties().getProperty( "jspwiki.workDir" )`



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: dev-unsubscr...@jspwiki.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to