Package net.sourceforge.pebble

Examples of net.sourceforge.pebble.BlogCompanion


      pe.printStackTrace();
    }

    refererFilterManager = new RefererFilterManager(this);
    pluginProperties = new PluginProperties(this);
    blogCompanion = new BlogCompanion(this);
    years = new ArrayList<Year>();

    // create the various indexes for this blog
    searchIndex = new SearchIndex(this);
    blogEntryIndex = new BlogEntryIndex(this);
View Full Code Here


    Blog blog = (Blog)getModel().get(Constants.BLOG_KEY);

    String content = request.getParameter("content");
    String status = "OK";
    if (content != null && content.length() > 0) {
      BlogCompanion bc = blog.getBlogCompanion();
      bc.setContent(content);

      try {
        bc.store();
      } catch (Exception e) {
        status = "Error";
      }
    }
View Full Code Here

TOP

Related Classes of net.sourceforge.pebble.BlogCompanion

Copyright © 2018 www.massapicom. 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.