Versioner sammenlignet

Nøgle

  • Linjen blev tilføjet.
  • Denne linje blev fjernet.
  • Formatering blev ændret.

There are a lot of fine Lightboxes for jquery on the market, both free and commercials, but they all need to be installed into Your Confluence:

...

Advarsel

First, All of the stuff below is quite generic and samples only, refer to the Lignbox documentation.

Second, all the files are considered "foreign" during an upgrade and must be reimplemented.

 

...

Install below Confluence

Download the lightbox zip, upload it to the server and place the files under the install:

Kodeblok
cd /opt/confluence/confluence
mkdir mylightbox
cd mylightbox
mv ~/mylightbox.zip .
unzip mylightbox.zip

Somewhere else in the filesystem with symbolic linking

Download the lightbox zip, upload it to the server and place the files under the install:

...

Now these can be referenced as /opt/confluence/confluence id the server root, so in Custom HTML add:

Kodeblok
<!-- MyLignboxMyLightbox -->
<link rel="stylesheet" href="/mylightbox/css/mylightbox.css" type="text/css" media="screen" charset="utf-8" />
<script src="/mylightbox/js/jquery.mylightbox.js" type="text/javascript" charset="utf-8"></script>

...

Some lighboxes requires to be initiated (the Jquery reference $ is AJS.$ for Confluence):

...