27 lines
686 B
Bash
Executable file
27 lines
686 B
Bash
Executable file
#!/bin/bash
|
|
|
|
JALBUM_ROOT=/opt/APPjalbum
|
|
SKIN_ROOT=$JALBUM_ROOT/skins/BluPlusPlus
|
|
|
|
cd $JALBUM_ROOT
|
|
tar zxf /home/frank/Patches/jalbum_flash_movie_patch.tar.gz
|
|
|
|
cat <<EOF_videos >> $SKIN_ROOT/config/supported-videos.txt
|
|
|
|
flv
|
|
EOF_videos
|
|
|
|
cat <<EOF_header >> $SKIN_ROOT/includes/common-header.inc
|
|
|
|
<ja:if exists="originalPath">
|
|
<ja:if test="<%= originalPath.endsWith(".flv") %>">
|
|
<!-- Flash Movies -->
|
|
<script language="javascript" type="text/javascript" src="\$resPath/flv_movie/swfobject.js"></script>
|
|
<script language="javascript">
|
|
function resPath1() {return "\$resPath";}
|
|
</script>
|
|
</ja:if>
|
|
</ja:if>
|
|
|
|
EOF_header
|
|
|