summaryrefslogtreecommitdiff
path: root/templates/mime/flash/inline.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/mime/flash/inline.tpl')
-rw-r--r--templates/mime/flash/inline.tpl17
1 files changed, 17 insertions, 0 deletions
diff --git a/templates/mime/flash/inline.tpl b/templates/mime/flash/inline.tpl
new file mode 100644
index 0000000..d2d1eba
--- /dev/null
+++ b/templates/mime/flash/inline.tpl
@@ -0,0 +1,17 @@
+<div class="item">
+ {* this should really get a max h or w and base size on the bounding box -or- even better would be to thumbnail swfs for list views*}
+ {assign var=height value=$attachment.preferences.height}
+ {assign var=width value=$attachment.preferences.width}
+ {assign var=size value=$smarty.request.size|default:medium}
+ {assign var=swfwidth value=$gThumbSizes.$thumbsize.width}
+ {math assign=multiplier equation="$swfwidth/$width"}
+ {math assign=swfheight equation="round($height*$multiplier)"}
+ <object width="{$swfwidth}" height="{$swfheight}">
+ <param name="movie" value="{$attachment.source_url}" />
+ <embed src="{$attachment.source_url}" width="{$swfwidth}" height="{$swfheight}">
+ </embed>
+ <img src="{$smarty.const.LIBERTY_PKG_URL}templates/noflash.container.gif" width="200" height="100" alt="" />
+ </object>
+ <br />
+ <a href="{$attachment.display_url}">View SWF</a>
+</div>