Examples of BlogEntry


Examples of net.sourceforge.pebble.domain.BlogEntry

  private ContentDecoratorContext context;

  protected void setUp() throws Exception {
    super.setUp();

    blogEntry = new BlogEntry(blog);
    blogEntry.setTitle("Title");
    blogEntry.setBody("Body");
    Calendar cal= blog.getCalendar();
    cal.set(Calendar.YEAR, 2006);
    cal.set(Calendar.MONTH, 6);
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  protected void setUp() throws Exception {
    super.setUp();

    decorator = new PhotoDecorator();
    blogEntry = new BlogEntry(blog);
    staticPage = new StaticPage(blog);
    context = new ContentDecoratorContext();
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  protected void setUp() throws Exception {
    super.setUp();

    decorator = new DisableResponseDecorator();
    blogEntry = new BlogEntry(blog);
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  protected void setUp() throws Exception {
    super.setUp();

    decorator = new NoFollowDecorator();
    blogEntry = new BlogEntry(blog);
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  private ContentDecoratorContext context;

  protected void setUp() throws Exception {
    super.setUp();

    blogEntry = new BlogEntry(blog);
    decorator = new SocialBookmarksDecorator();
    context = new ContentDecoratorContext();
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  protected void setUp() throws Exception {
    super.setUp();

    decorator = new DisableCommentsDecorator();
    blogEntry = new BlogEntry(blog);
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  private ContentDecoratorContext context;

  protected void setUp() throws Exception {
    super.setUp();

    blogEntry = new BlogEntry(blog);
    decorator = new TechnoratiTagsDecorator();
    context = new ContentDecoratorContext();
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  private ContentDecoratorContext context;

  protected void setUp() throws Exception {
    super.setUp();

    blogEntry = new BlogEntry(blog);
    staticPage = new StaticPage(blog);
    decorator = new RelativeUriDecorator();
    context = new ContentDecoratorContext();
    decorator.setBlog(blog);
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  private static final String PDF_IMG = "<img src=\"common/images/pdf_logo.gif\" alt=\"Export this post as PDF document\" align=\"bottom\" border=\"0\" />";

  protected void setUp() throws Exception {
    super.setUp();
    blogEntryOne = new BlogEntry(blog);
    decorator = new EntryToPdfDecorator();
    context = new ContentDecoratorContext();
  }
View Full Code Here

Examples of net.sourceforge.pebble.domain.BlogEntry

  }

  public void testProcess() throws Exception {
    View view = action.process(request, response);

    BlogEntry blogEntry = (BlogEntry)action.getModel().get(Constants.BLOG_ENTRY_KEY);
    assertNotNull("No blog entry was created", blogEntry);
    assertFalse(blogEntry.isPersistent());

    assertTrue(view instanceof BlogEntryFormView);
  }
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.