Examples of applyFormatter()


Examples of org.olat.modules.fo.archiver.ForumArchiveManager.applyFormatter()

      }
      container = (VFSContainer)vfsItem;
       
      ForumRTFFormatter rtff = new ForumRTFFormatter(container, false)
      ForumArchiveManager fam = ForumArchiveManager.getInstance();
      fam.applyFormatter(rtff, forumKey.longValue(), null);
    }
  }

  /**
   * @see org.olat.course.nodes.CourseNode#informOnDelete(org.olat.core.gui.UserRequest,
View Full Code Here

Examples of org.olat.modules.fo.archiver.ForumArchiveManager.applyFormatter()

  }

  private void doArchiveForum(UserRequest ureq) {
    ForumRTFFormatter rtff = new ForumRTFFormatter(getArchiveContainer(ureq), false);
    ForumArchiveManager fam = ForumArchiveManager.getInstance();
    fam.applyFormatter(rtff, forum.getKey().longValue(), focallback);
  }

  private void doArchiveThread(UserRequest ureq, Message currMsg) {
    Message m = currMsg.getThreadtop();
    Long topMessageId = (m == null) ? currMsg.getKey() : m.getKey();
View Full Code Here

Examples of org.olat.modules.fo.archiver.ForumArchiveManager.applyFormatter()

    diaNodeElemExportContainer.setLocalSecurityCallback(new FullAccessCallback());
    diaNodeElemExportContainer.copyFrom(dialogFile);

    ForumArchiveManager fam = ForumArchiveManager.getInstance();
    ForumFormatter ff = new ForumRTFFormatter(diaNodeElemExportContainer, false);
    fam.applyFormatter(ff, element.getForumKey().longValue(), null);
  }

  /**
   * @see org.olat.course.nodes.CourseNode#exportNode(java.io.File,
   *      org.olat.course.ICourse)
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.