summaryrefslogtreecommitdiff
path: root/templates/admin_liberty.tpl
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2007-06-24 07:00:36 +0000
committerMax Kremmel <xing@synapse.plus.com>2007-06-24 07:00:36 +0000
commit66a37c1a3fa21c76f083ec8fd4418a9cb35536ef (patch)
tree909c97ae17435b0cc7695e0f107ae2d0d53bdf23 /templates/admin_liberty.tpl
parent5d7d04de0d8cec7e1c174af8d3f46a3837a978ee (diff)
downloadliberty-66a37c1a3fa21c76f083ec8fd4418a9cb35536ef.tar.gz
liberty-66a37c1a3fa21c76f083ec8fd4418a9cb35536ef.tar.bz2
liberty-66a37c1a3fa21c76f083ec8fd4418a9cb35536ef.zip
add more help regarding image processors and modify layout slightly
Diffstat (limited to 'templates/admin_liberty.tpl')
-rw-r--r--templates/admin_liberty.tpl14
1 files changed, 10 insertions, 4 deletions
diff --git a/templates/admin_liberty.tpl b/templates/admin_liberty.tpl
index 00b1453..335c2d9 100644
--- a/templates/admin_liberty.tpl
+++ b/templates/admin_liberty.tpl
@@ -95,13 +95,13 @@
{forminput}
<label>
<input type="radio" id="gd" name="image_processor" value="gd" {if !$gdInstalled}disabled="disabled"{/if} {if !$gBitSystem->getConfig('image_processor') || $gBitSystem->getConfig('image_processor')=='gd'}checked="checked"{/if} />
- <br />
{if !$gdInstalled}
{biticon ipackage=icons iname="large/image-missing" iexplain="Not Installed"} {tr}Library is <strong>not</strong> installed{/tr}
{else}
{biticon ipackage=icons iname="large/image-x-generic" iexplain="Installed"} {tr}Library is installed{/tr}
{/if}
</label>
+ {formhelp note="The GD libaries are quite limited and <strong>don't support</strong> a number of image formats including <strong>bmp</strong>. If you are planning on uploading and using a lot of images, we recommend you use one of the other image processors."}
{/forminput}
</div>
@@ -114,13 +114,16 @@
{forminput}
<label>
<input type="radio" id="wand" name="image_processor" value="magickwand" {if !$magickwandInstalled}disabled="disabled"{/if} {if $gBitSystem->getConfig('image_processor')=='magickwand'}checked="checked"{/if}/>
- <br />
{if !$magickwandInstalled}
{biticon ipackage=icons iname="large/image-missing" iexplain="Not Installed"} {tr}Library is <strong>not</strong> installed{/tr}
{else}
{biticon ipackage=icons iname="large/image-x-generic" iexplain="Installed"} {tr}Library is installed{/tr}
{/if}
</label>
+ {formhelp note="MagickWand is the recommended image processor and supports a multitude of different image and video formats. Using these libraries will allow you to upload most image formats without any difficulties."}
+ {if $magickwandInstalled}
+ {formhelp note=' For installation help, please view our online documentation: <a class="external" href="http://www.bitweaver.org/wiki/ImageMagick">ImageMagick and MagickWand installation instructions</a> or visit the <a class="external" href="http://www.imagemagick.org">ImageMagick</a> homepage.'}
+ {/if}
{/forminput}
</div>
@@ -133,13 +136,16 @@
{forminput}
<label>
<input type="radio" id="magick" name="image_processor" value="imagick" {if !$imagickInstalled}disabled="disabled"{/if} {if $gBitSystem->getConfig('image_processor')=='imagick'}checked="checked"{/if}/>
- <br />
{if !$imagickInstalled}
- {biticon ipackage=icons iname="large/image-missing" iexplain="Not Installed"} {tr}Library is <strong>not</strong> installed{/tr}
+ {biticon ipackage=icons iname="image-missing" iexplain="Not Installed"} {tr}Library is <strong>not</strong> installed{/tr}
{else}
{biticon ipackage=icons iname="large/image-x-generic" iexplain="Installed"} {tr}Library is installed{/tr}
{/if}
</label>
+ {formhelp note="ImageMagick supports a multitude of different image and video formats. Using these libraries will allow you to upload most image formats without any difficulties."}
+ {if !$imagickInstalled}
+ {formhelp note=' For installation help, please view our online documentation: <a class="external" href="http://www.bitweaver.org/wiki/ImageMagick">ImageMagick and MagickWand installation instructions</a> or visit the <a class="external" href="http://www.imagemagick.org">ImageMagick</a> homepage.'}
+ {/if}
{/forminput}
</div>