Examples of WeblogRequest


Examples of org.apache.roller.ui.rendering.util.WeblogRequest

   
   
    public void init(Map initData) throws RollerException {
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("weblogRequest");
        if(weblogRequest == null) {
            throw new RollerException("expected weblogRequest from init data");
        }
       
        // PageModel only works on page requests, so cast weblogRequest
View Full Code Here

Examples of org.apache.roller.ui.rendering.util.WeblogRequest

    }
   
    public void init(Map initData) throws RollerException {
       
        // need a weblog request so that we can know the weblog and locale
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("weblogRequest");
        if(weblogRequest == null) {
            throw new RollerException("Expected 'weblogRequest' init param!");
        }
       
        this.weblog = weblogRequest.getWeblog();
        this.locale = weblogRequest.getLocale();
       
        // need page context as well :(
        pageContext = (PageContext) initData.get("pageContext");
    }
View Full Code Here

Examples of org.apache.roller.ui.rendering.util.WeblogRequest

       
        // extract page context
        this.pageContext = (PageContext) initData.get("pageContext");
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("weblogRequest");
        if(weblogRequest == null) {
            throw new RollerException("expected weblogRequest from init data");
        }
       
        // CalendarModel only works on page requests, so cast weblogRequest
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

       
        // extract page context
        this.pageContext = (PageContext) initData.get("pageContext");
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("expected weblogRequest from init data");
        }
       
        // CalendarModel only works on page requests, so cast weblogRequest
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

   
    public void init(Map initData) throws WebloggerException {
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("expected weblogRequest from init data");
        }
       
        if(weblogRequest instanceof WeblogFeedRequest) {
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

   
   
    public void init(Map initData) throws WebloggerException {
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("expected weblogRequest from init data");
        }
       
        // PageModel only works on page requests, so cast weblogRequest
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

    }
   
    public void init(Map initData) throws WebloggerException {
       
        // need a weblog request so that we can know the weblog and locale
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("Expected 'weblogRequest' init param!");
        }
       
        this.weblog = weblogRequest.getWeblog();
        this.locale = weblogRequest.getLocale();
       
        // look for url strategy
        urlStrategy = (URLStrategy) initData.get("urlStrategy");
        if(urlStrategy == null) {
            urlStrategy = WebloggerFactory.getWeblogger().getUrlStrategy();
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

            throw new WebloggerException("expected parsedRequest from init data");
        }
       
        // extract weblog object if possible
        if(parsedRequest instanceof WeblogRequest) {
            WeblogRequest weblogRequest = (WeblogRequest) parsedRequest;
            weblog = weblogRequest.getWeblog();
        }
    }
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

   
    /** Init page model based on request */
    public void init(Map initData) throws WebloggerException {
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("expected weblogRequest from init data");
        }
       
        // MenuModel only works on page requests, so cast weblogRequest
View Full Code Here

Examples of org.apache.roller.weblogger.ui.rendering.util.WeblogRequest

   
    public void init(Map initData) throws WebloggerException {
       
        // we expect the init data to contain a weblogRequest object
        WeblogRequest weblogRequest = (WeblogRequest) initData.get("parsedRequest");
        if(weblogRequest == null) {
            throw new WebloggerException("expected weblogRequest from init data");
        }
       
        if(weblogRequest instanceof WeblogFeedRequest) {
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.