This page last changed on Dec 02, 2008 by smaddox.

Good style for web applications requires that JavaScript and CSS for web pages are kept separate to the HTML they enhance. Confluence itself is moving towards this model, and the tools that Confluence uses to do this are also available to plugin developers.

This functionality is only available in Confluence 2.8 and later.
If you are developing a theme plugin and would like to include css resources, see Theme Stylesheets instead.

On this page:

Error formatting macro: toc: java.lang.NullPointerException

Including a Custom JavaScript or CSS File from a Plugin

In your atlassian-plugin.xml, you should add a Web Resource module. See Web Resource Plugins.

For each resource, the location of the resource should match the path to the resource in your plugin JAR file. Resource paths are namespaced to your plugin, so they can't conflict with resources in other plugins with the same location (unlike say i18n or Velocity resources). However, you may find it convenient to use a path name which is specific to your plugin to be consistent with these other types.

Only one instance of each script or stylesheet will be included, and they will appear in the order they are requested in the Velocity rendering process.

The rich text editor and preview views do not currently use dynamic stylesheets provided by a macro rendered in this way.

Web Resource Configuration

Within your Web Resource plugin module, you will define one or more resource definitions. See Adding Plugin and Module Resources.

Note that you can declare the media type (for CSS resources) and whether the resource should be wrapped in an Internet Explorer conditional comment. This feature is also described in Adding Plugin and Module Resources.

Including a JavaScript Library provided by Confluence

Confluence currently includes several JavaScript libraries which plugins can use. The versions of these libraries are subject to change, but only across major versions of Confluence.

In the Confluence source code, these libraries are included in a plugin XML file called web-resources.xml.

Library Web resource key Current version Details
Scriptaculous confluence.web.resources:scriptaculous 1.5rc3 Includes effects, dragdrop, controls and util.
Prototype confluence.web.resources:prototype 1.4.0_pre11 Version found in the scriptaculous lib directory. Also includes a domready extension, see domready.js.
jQuery confluence.web.resources:jquery 1.2.3 For compatibility with prototype, you must use 'jQuery()' not '$' to access jQuery.
DWR confluence.web.resources:dwr 1.1.4 Includes engine and util.

To include one of these libraries in all pages in which your Velocity template appear, simply use the #requireResource macro as above. For example, if your macro requires jQuery, add the following to its Velocity template:

#requireResource("confluence.web.resources:jquery")

Note: Use of Scriptaculous and Prototype is deprecated as of Confluence 2.9. Use of these libraries in Confluence core will be gradually replaced with jQuery over the next few releases. Plugin developers should start doing the same with their front-end code, because both Prototype and Scriptaculous will be removed from a future release of Confluence.

Running Scripts when the Page Loads

The recommended way to load scripts when the page is ready, known as 'on-DOM-ready', is to use the Atlassian JavaScript (AJS) abstraction. This avoids depending on a particular JavaScript library which may not remain in Confluence.

AJS.toInit(function () {
    // ... your initialisation code here
});

This has the additional benefit of ensuring any functions or variables you declare here are not in the global scope, which is important for best interoperability with other plugins in Confluence.

Achieving Progressive Enhancement

We recommend you separate your markup, styles and JavaScript when developing a Confluence plugin, according to the design principles of progressive enhancement. To assist with this, there are a few hooks in AJS and in Confluence in general to make this easier.

Dynamic Content in JavaScript

If you need to pass information from Velocity to JavaScript, such as for localised text, you can use AJS.params. This automatically looks up values inside fieldsets marked with a class of "parameters" inside your markup. For example, given the following markup:

<fieldset class="parameters hidden">
    <input type="hidden" id="deleteCommentConfirmMessage" value="$action.getText('remove.comment.confirmation.message')">
</fieldset>

You can have your JavaScript access the localised text without embedding it by using AJS.params:

if (confirm(AJS.params.deleteCommentConfirmMessage)) {
    // ...
}
Getting the Context Path

Usually, you can use relative paths in stylesheets and JavaScript to avoid the need to know the context path. However, Confluence makes this available through a meta tag in the header which looks like this:

<meta id="confluence-context-path" name="confluence-context-path" content="/confluence">

With jQuery, or even normal JavaScript, it is quite easy to retrieve this for use in scripts:

// normal JS
document.getElementById("confluence-context-path").content

// jQuery
$("#confluence-context-path").attr("content")

More Information

Couldn't you do this already? What's changed in Confluence 2.8?

Since Confluence 2.6, you've been able to use #includeJavascript, which puts the script tag inline, exactly where that Velocity macro appears. You've also always been able to include inline scripts or styles in your macros. However, there are a couple of problems with this that we've solved in 2.8:

  1. The JavaScript might override other script already present in the page, including scripts used by Confluence.
  2. Inline JavaScript or styles might appear multiple times in the page, wasting bandwidth and potentially causing conflicts.

Many plugin authors found that including JavaScript in their plugins meant the plugin broke in some places, such as in the preview window, if two copies of the macro were on the same page.

By using the new #requireResource, you're guaranteed to get only one instance of the script appearing on a page, and it will be cached by browsers until your plugin is upgraded.

Do I have to use Velocity to request these resources? What about in Java?

You can achieve the same result in Java via the WebResourceManager. Use the same method as described above for Velocity: webResourceManager.requireResource(String)
The WebResourceManager is a bean you can get injected by Spring. Do this within the scope of the request.

In most cases, using Velocity makes more sense, because the declaration of the JS and CSS should be close to the code which uses it.

RELATED TOPICS

Web Resource Plugins
Adding Plugin and Module Resources
Writing Confluence Plugins
Installing and Configuring Plugins Manually

Document generated by Confluence on Dec 03, 2008 15:14