Package com.atlassian.jira.config.properties

Examples of com.atlassian.jira.config.properties.PropertiesManager


    private AtlassianWikiRenderer atlassianWikiRenderer;
    private PropertySet properties;

    public TinyMCERendererPlugin(EventPublisher eventPublisher, VelocityRequestContextFactory velocityRequestContextFactory) {
        this.atlassianWikiRenderer = new AtlassianWikiRenderer(eventPublisher, velocityRequestContextFactory);
        PropertiesManager propertiesManager = ComponentManager.getComponent(PropertiesManager.class);
        this.properties = propertiesManager.getPropertySet();
    }
View Full Code Here


    public static final String STRIP_SOME_TAGS_PROPERTY = "com.garyhodgson.jira.tinymce-renderer-plugin.stripSomeTags";
    public static final String STRIP_NO_TAGS_PROPERTY = "com.garyhodgson.jira.tinymce-renderer-plugin.stripNoTags";
    private PropertySet properties;

    public TinyMCERendererAdminAction() {
        PropertiesManager propertiesManager = ComponentManager.getComponent(PropertiesManager.class);
        this.properties = propertiesManager.getPropertySet();
    }
View Full Code Here

    private JiraRendererModuleDescriptor jiraRendererModuleDescriptor;
    private PropertySet properties;
    private Whitelist whitelist;

    public TinyMCERendererReversePlugin() {
        PropertiesManager propertiesManager = ComponentManager.getComponent(PropertiesManager.class);
        this.properties = propertiesManager.getPropertySet();
        this.whitelist = Whitelist.none();
        this.whitelist.addTags("table", "thead","tbody", "td", "tr", "img");
        this.whitelist.addAttributes("img", "src", "height", "width");
        this.whitelist.addAttributes("table", "cellpadding", "cellspacing", "border");
    }
View Full Code Here

TOP

Related Classes of com.atlassian.jira.config.properties.PropertiesManager

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.