You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@jspwiki.apache.org by "Juan Pablo Santos Rodríguez (Jira)" <ji...@apache.org> on 2020/01/21 21:13:00 UTC

[jira] [Created] (JSPWIKI-1127) Get rid off jspwiki.referenceStyle

Juan Pablo Santos Rodríguez created JSPWIKI-1127:
----------------------------------------------------

             Summary: Get rid off jspwiki.referenceStyle
                 Key: JSPWIKI-1127
                 URL: https://issues.apache.org/jira/browse/JSPWIKI-1127
             Project: JSPWiki
          Issue Type: Task
            Reporter: Juan Pablo Santos Rodríguez
             Fix For: 2.11.0-M7


Given the following unit test:
{code:java}
    @ParameterizedTest
    @ValueSource( strings = { "DefaultURLConstructor", "ShortURLConstructor", "ShortViewURLConstructor" })
    public void testGetViewURL( final String urlc ) {
        final Properties props = TestEngine.getTestProperties();
        props.setProperty( "jspwiki.urlConstructor", urlc );
        final TestEngine engine = TestEngine.build( props );

        final WikiContext ctx = new WikiContext( engine, engine.getPageManager().getPage(NAME1 ) );
        ctx.setVariable( "jspwiki.referenceStyle", "relative" );
        Assertions.assertEquals( engine.getViewURL( NAME1 ), ctx.getViewURL( NAME1 ) );
        ctx.setVariable( "jspwiki.referenceStyle", "absolute" );
        Assertions.assertEquals( engine.getViewURL( NAME1 ), ctx.getViewURL( NAME1 ) );
    }
{code}
 * {{ctx.getViewURL(..)}} ultimately gets down to {{WikiEngine#getUrl(..)}}, using {{jspwiki.referenceStyle}} from jspwiki.properties to determine if it should generate "absolute" or "relative" urls

 * {{engine.getViewURL(..)}} also ends up going to {{WikiEngine#getUrl(..)}}, but always generating "absolute" urls.

Given these preconditions, the test above should not pass. But it does, most probably as a consequence of JSPWIKI-1035 (get rid of {{jspwiki.baseURL}}): {{getUrl(..)}} relied on {{jspwiki.baseURL}} to generate the "absolute" flavour of the url, whereas now it is using {{servletContext.getContextPath()}}.

As there isn't a way to generate absolute urls (no baseURL property anymore), my proposal is to drop the {{jspwiki.referenceStyle}} property altogether, which will allow 
 1) to simplify the URL constructors
 2) to also drop {{WikiEngine#getViewURL(..)}}, as its behaviour is exactly the same as the same method on {{WikiContext}}



--
This message was sent by Atlassian Jira
(v8.3.4#803005)