Added projects, updated names
After Width: | Height: | Size: 86 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/boats.gif
Normal file
After Width: | Height: | Size: 149 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/cottage.gif
Normal file
After Width: | Height: | Size: 65 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/creek.gif
Executable file
After Width: | Height: | Size: 5.1 MiB |
After Width: | Height: | Size: 1.3 MiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/desart.gif
Normal file
After Width: | Height: | Size: 415 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/firePit.gif
Normal file
After Width: | Height: | Size: 112 KiB |
After Width: | Height: | Size: 142 KiB |
After Width: | Height: | Size: 70 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy.gif
Normal file
After Width: | Height: | Size: 966 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy2.gif
Normal file
After Width: | Height: | Size: 2.0 MiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy3.gif
Executable file
After Width: | Height: | Size: 1.1 MiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy4.gif
Executable file
After Width: | Height: | Size: 114 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy5.gif
Normal file
After Width: | Height: | Size: 743 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy6.gif
Normal file
After Width: | Height: | Size: 993 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/rainy7.gif
Normal file
After Width: | Height: | Size: 716 KiB |
After Width: | Height: | Size: 151 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/ripple.gif
Normal file
After Width: | Height: | Size: 128 KiB |
After Width: | Height: | Size: 143 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/temple.gif
Normal file
After Width: | Height: | Size: 1.1 MiB |
After Width: | Height: | Size: 481 KiB |
After Width: | Height: | Size: 114 KiB |
BIN
Python Projects/other/MiniRoll/resources/backgrounds/waterFall.gif
Executable file
After Width: | Height: | Size: 540 KiB |
After Width: | Height: | Size: 472 KiB |
After Width: | Height: | Size: 112 KiB |
BIN
Python Projects/other/MiniRoll/resources/busybox
Executable file
104
Python Projects/other/MiniRoll/resources/cgi-bin/alphaList.cgi
Executable file
@@ -0,0 +1,104 @@
|
||||
#!/bin/bash
|
||||
|
||||
headOut()
|
||||
{
|
||||
touch ../tmp/tmpalphaListing
|
||||
letterIn=$(echo "$QUERY_STRING" | sed -n 's/^.*letter=\([^&]*\).*$/\1/p')
|
||||
wget http://www.crunchyroll.com/videos/anime/alpha?group=$letterIn -O ../tmp/tmpalphaListing
|
||||
sed 1,650d ../tmp/tmpalphaListing > ../tmp/alphaListing
|
||||
|
||||
IFS=$'\n'
|
||||
bgs=($(ls -L ../backgrounds/))
|
||||
numdirs=${#bgs[@]}
|
||||
index=$(( (( RANDOM % $numdirs ) - 2) + 1 ))
|
||||
|
||||
if [ -f ./000.jpg ]; then
|
||||
bg="<div id="bg"><img src="./000.jpg"/></div>";
|
||||
else
|
||||
bg="<div id="bg"><img src="\"../backgrounds/${bgs[index]}"\"/></div>";
|
||||
fi
|
||||
echo '<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="../themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="../themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
'${bg}'
|
||||
<center>
|
||||
<ul><a href="../index.html"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a href="../cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a href="../cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a href="../cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="../cgi-bin/quit.cgi"><li>Quit</li></a>
|
||||
<a href="#" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
</ul>
|
||||
</center>
|
||||
<br>
|
||||
' > ../tmp/alist.html
|
||||
main
|
||||
}
|
||||
main()
|
||||
{
|
||||
sed -n 's/.*title="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaTitles
|
||||
head -n -6 ../tmp/preaTitles > ../tmp/aTitles
|
||||
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaImgList
|
||||
sed -i '/.js/d' ../tmp/preaImgList
|
||||
sed -i '/.gif/d' ../tmp/preaImgList
|
||||
cat ../tmp/preaImgList > ../tmp/aImgList
|
||||
|
||||
sed -n 's/.*group_id="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/tmpaGrpIds
|
||||
head -n -7 ../tmp/tmpaGrpIds > ../tmp/aGrpIds
|
||||
|
||||
d=$(cat ../tmp/aGrpIds | wc -l) >> /dev/null ;
|
||||
i="1"
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/aTitles);
|
||||
imgLnk=$(sed -n "${i}p" ../tmp/aImgList);
|
||||
groupID=$(sed -n "${i}p" ../tmp/aGrpIds);
|
||||
vdoLnk="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D"$groupID""
|
||||
echo '
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="'${vdoLnk}'" style="color:#00E8FF;">
|
||||
<img src="'${imgLnk}'" /> <br>
|
||||
'${title}'</a>
|
||||
</div>' >> ../tmp/alist.html ;
|
||||
i=$[$i++1];
|
||||
done
|
||||
endOut
|
||||
}
|
||||
endOut()
|
||||
{
|
||||
echo '
|
||||
<iframe id="frame" name="frame" frameborder="0" class="iframer"></iframe>
|
||||
</body>
|
||||
</html>' >> ../tmp/alist.html
|
||||
redirect
|
||||
}
|
||||
redirect()
|
||||
{
|
||||
echo "Content-type: text/html"
|
||||
echo ""
|
||||
echo "<html>"
|
||||
echo "<head>"
|
||||
echo "<title>Loading...</title>"
|
||||
echo "<meta http-equiv='refresh' content='1;URL=../tmp/alist.html'>"
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo "<center>
|
||||
<font color='#FFFFFF'>You will be redirected in a few seconds...</font>
|
||||
<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</center>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
}
|
||||
headOut
|
124
Python Projects/other/MiniRoll/resources/cgi-bin/animeNtwrkScan.cgi
Executable file
@@ -0,0 +1,124 @@
|
||||
#!/bin/bash
|
||||
|
||||
headOut()
|
||||
{
|
||||
animeIn=$(echo "$QUERY_STRING" | sed -n 's/^.*anime=\([^&]*\).*$/\1/p')
|
||||
touch ../tmp/tmpShow ../tmp/animeShow ../tmp/tmpVdoPg
|
||||
wget http://www.theanimenetwork.com/Watch-Anime/"${animeIn}" -O ../tmp/tmpShow
|
||||
sed 1,195d ../tmp/tmpShow > ../tmp/animeShow
|
||||
|
||||
IFS=$'\n'
|
||||
bgs=($(ls -L ../backgrounds/))
|
||||
numdirs=${#bgs[@]}
|
||||
index=$(( (( RANDOM % $numdirs ) - 2) + 1 ))
|
||||
|
||||
if [ -f ./000.jpg ]; then
|
||||
bg="<div id="bg"><img src="./000.jpg"/></div>";
|
||||
else
|
||||
bg="<div id="bg"><img src="\"../backgrounds/${bgs[index]}"\"/></div>";
|
||||
fi
|
||||
echo '<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="../themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="../themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
'${bg}'
|
||||
<center>
|
||||
<ul><a href="../index.html"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a href="../cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a href="../cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a href="../cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="#" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
<a href="../cgi-bin/quit.cgi"><li>Quit</li></a>
|
||||
</ul>
|
||||
</center>
|
||||
<br>
|
||||
' > ../tmp/list.html
|
||||
main
|
||||
}
|
||||
main()
|
||||
{
|
||||
sed -n 's/.*title="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/tmptitles
|
||||
sed -i '/Spoilers!!!/d' ../tmp/tmptitles
|
||||
sed -i '/You must be a premium subscriber to watch this video./d' ../tmp/tmptitles
|
||||
sed -i '/The Add To Queue feature is available to premium subscribers./d' ../tmp/tmptitles
|
||||
sed -i '/^\s*$/d' ../tmp/tmptitles
|
||||
awk 'NR%2==1' ../tmp/tmptitles > ../tmp/titles
|
||||
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/imgList
|
||||
awk 'NR%2==1' ../tmp/imgList > ../tmp/tmpImgList
|
||||
head -n -3 ../tmp/tmpImgList > ../tmp/imgList
|
||||
|
||||
sed -n 's/.*href="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/mediaIds
|
||||
sed -i '/\/xx/d' ../tmp/mediaIds
|
||||
awk 'NR%2==1' ../tmp/mediaIds > ../tmp/tmpIds
|
||||
head -n -3 ../tmp/tmpIds > ../tmp/mediaIds
|
||||
|
||||
d=$(cat ../tmp/mediaIds | wc -l) >> /dev/null ;
|
||||
i="1"
|
||||
# World-God-Only-Knows-The-Season-1
|
||||
# Log-Horizon
|
||||
echo "" > ../tmp/tmpIds
|
||||
echo "" > ../tmp/tmpIds2
|
||||
|
||||
while [ $i -le $d ]; do
|
||||
meiaID=$(sed -n "${i}p" ../tmp/mediaIds);
|
||||
wget http://www.theanimenetwork.com"${meiaID}" -O ../tmp/tmpVdoPg
|
||||
sed -n 146,152p ../tmp/tmpVdoPg > ../tmp/tmpIds
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/tmpIds >> ../tmp/tmpIds2
|
||||
i=$[$i++1];
|
||||
done
|
||||
sed -i '/^\s*$/d' ../tmp/tmpIds2
|
||||
cat ../tmp/tmpIds2 > ../tmp/mediaIds
|
||||
i="1"
|
||||
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/titles);
|
||||
imgLnk=$(sed -n "${i}p" ../tmp/imgList)
|
||||
meiaID=$(sed -n "${i}p" ../tmp/mediaIds);
|
||||
vdoLnk=""$meiaID""
|
||||
echo '
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="'${vdoLnk}'" style="color:#00E8FF;">
|
||||
<img src="'${imgLnk}'" /> <br>
|
||||
'${title}'</a>
|
||||
</div>' >> ../tmp/list.html ;
|
||||
i=$[$i++1];
|
||||
done
|
||||
endOut
|
||||
}
|
||||
endOut()
|
||||
{
|
||||
echo '
|
||||
<iframe id="frame" name="frame" frameborder="0" class="iframer"></iframe>
|
||||
<iframe sandbox id="invisFrame" name="invisFrame" frameborder="0"></iframe>
|
||||
</body>
|
||||
</html>' >> ../tmp/list.html
|
||||
redirect
|
||||
}
|
||||
redirect()
|
||||
{
|
||||
echo "Content-type: text/html"
|
||||
echo ""
|
||||
echo "<html>"
|
||||
echo "<head>"
|
||||
echo "<title>Loading...</title>"
|
||||
echo "<meta http-equiv='refresh' content='1;URL=../tmp/list.html'>"
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo "<center><font color='#FFFFFF'>You will be redirected in a few seconds...</font></center>"
|
||||
echo "<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
}
|
||||
headOut
|
9
Python Projects/other/MiniRoll/resources/cgi-bin/centerList.cgi
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
. lastSearch.cgi
|
||||
|
||||
main()
|
||||
{
|
||||
cat ../themes/"List Centered.css" > ../themes/bodyCss.css
|
||||
check
|
||||
}
|
||||
main
|
122
Python Projects/other/MiniRoll/resources/cgi-bin/crunchyScan.cgi
Executable file
@@ -0,0 +1,122 @@
|
||||
#!/bin/bash
|
||||
|
||||
headOut()
|
||||
{
|
||||
animeIn=$(echo "$QUERY_STRING" | sed -n 's/^.*anime=\([^&]*\).*$/\1/p')
|
||||
touch ../tmp/tmpShow ../tmp/animeShow
|
||||
wget http://www.crunchyroll.com/"${animeIn}" -O ../tmp/tmpShow
|
||||
sed 1,335d ../tmp/tmpShow > ../tmp/animeShow
|
||||
|
||||
IFS=$'\n'
|
||||
bgs=($(ls -L ../backgrounds/))
|
||||
numdirs=${#bgs[@]}
|
||||
index=$(( (( RANDOM % $numdirs ) - 2) + 1 ))
|
||||
|
||||
if [ -f ./000.jpg ]; then
|
||||
bg="<div id="bg"><img src="./000.jpg"/></div>";
|
||||
else
|
||||
bg="<div id="bg"><img src="\"../backgrounds/${bgs[index]}"\"/></div>";
|
||||
fi
|
||||
echo '<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="../themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="../themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
'${bg}'
|
||||
<center>
|
||||
<ul><a href="../index.html"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a href="../cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a href="../cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a href="../cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="#" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
<a href="../cgi-bin/quit.cgi"><li>Quit</li></a>
|
||||
</ul>
|
||||
</center>
|
||||
<br>
|
||||
' > ../tmp/list.html
|
||||
main
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
rm ../tmp/titles ../tmp/imgList
|
||||
sed -n 's/.*title="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/tmptitles
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/tmpimgList
|
||||
sed -n 's/.*data-thumbnailUrl="\([^"]*\).*/\1/p' ../tmp/animeShow >> ../tmp/tmpimgList
|
||||
sed -n 's/.*media_id="\([^"]*\).*/\1/p' ../tmp/animeShow > ../tmp/mediaIds
|
||||
d=$(cat ../tmp/mediaIds | wc -l) >> /dev/null ;
|
||||
junkCount="1"
|
||||
i="1"
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/tmptitles);
|
||||
if [[ "${title}" == *"Episode"* ]]; then
|
||||
echo "${title}" >> ../tmp/titles
|
||||
else
|
||||
junkCount=$[$junkCount++1];
|
||||
fi
|
||||
i=$[$i++1];
|
||||
done
|
||||
i="1"
|
||||
while [ $i -le $d ]; do
|
||||
image=$(sed -n "${i}p" ../tmp/tmpimgList);
|
||||
if [[ "${image}" == *".jpg"* && \
|
||||
"${image}" != *"_full.jpg"* && \
|
||||
"${image}" != *"_thumb.jpg"* ]]; then
|
||||
echo "${image}" >> ../tmp/imgList
|
||||
else
|
||||
junkCount=$[$junkCount++1];
|
||||
fi
|
||||
i=$[$i++1];
|
||||
done
|
||||
i="1"
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/titles);
|
||||
imgLnk=$(sed -n "${i}p" ../tmp/imgList)
|
||||
meiaID=$(sed -n "${i}p" ../tmp/mediaIds);
|
||||
vdoLnk="http://static.ak.crunchyroll.com/versioned_assets/StandardVideoPlayer.cc7e8515.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D"$meiaID"video_format%3D106%26video_quality%3D61"
|
||||
echo '
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="'${vdoLnk}'" style="color:#00E8FF;">
|
||||
<img src="'${imgLnk}'" /> <br>
|
||||
'${title}'</a>
|
||||
</div>' >> ../tmp/list.html ;
|
||||
i=$[$i++1];
|
||||
done
|
||||
endOut
|
||||
}
|
||||
|
||||
endOut()
|
||||
{
|
||||
echo '
|
||||
<iframe id="frame" name="frame" frameborder="0" class="iframer"></iframe>
|
||||
<iframe id="invisFrame" name="invisFrame" frameborder="0"></iframe>
|
||||
</body>
|
||||
</html>' >> ../tmp/list.html
|
||||
redirect
|
||||
}
|
||||
redirect()
|
||||
{
|
||||
echo "Content-type: text/html"
|
||||
echo ""
|
||||
echo "<html>"
|
||||
echo "<head>"
|
||||
echo "<title>Loading...</title>"
|
||||
echo "<meta http-equiv='refresh' content='1;URL=../tmp/list.html'>"
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo "<center><font color='#FFFFFF'>You will be redirected in a few seconds...</font></center>"
|
||||
echo "<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
}
|
||||
headOut
|
129
Python Projects/other/MiniRoll/resources/cgi-bin/getVideo.cgi
Executable file
@@ -0,0 +1,129 @@
|
||||
#!/bin/bash
|
||||
|
||||
headOut()
|
||||
{
|
||||
letterIn=$(echo "$QUERY_STRING" | sed -n 's/^.*letter=\([^&]*\).*$/\1/p')
|
||||
touch ../tmp/alphaListing
|
||||
wget http://www.crunchyroll.com/videos/anime/alpha?group=$letterIn -O ../tmp/alphaListing
|
||||
|
||||
IFS=$'\n'
|
||||
bgs=($(ls -L ../backgrounds/))
|
||||
numdirs=${#bgs[@]}
|
||||
index=$(( (( RANDOM % $numdirs ) - 2) + 1 ))
|
||||
|
||||
if [ -f ./000.jpg ]; then
|
||||
bg="<div id="bg"><img src="./000.jpg"/></div>";
|
||||
else
|
||||
bg="<div id="bg"><img src="\"../backgrounds/${bgs[index]}"\"/></div>";
|
||||
fi
|
||||
echo '<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="../themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="../themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
'${bg}'
|
||||
<center>
|
||||
<ul><a href="../index.html"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a href="../cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a href="../cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a href="../cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="../cgi-bin/quit.cgi"><li>Quit</li></a>
|
||||
<a href="#" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
</ul>
|
||||
</center>
|
||||
<br>
|
||||
' > ../tmp/alist.html
|
||||
main
|
||||
}
|
||||
|
||||
main()
|
||||
{
|
||||
if [[ -f ../tmp/preaTitles.txt && -f ../tmp/preaImgList.txt && -f ../tmp/aTitles.txt && -f ../tmp/aImgList.txt && -f ../tmp/aMediaIds.txt ]]
|
||||
then
|
||||
touch ../tmp/preaTitles.txt ;
|
||||
touch ../tmp/preaImgList.txt ;
|
||||
touch ../tmp/aTitles.txt ;
|
||||
touch ../tmp/aImgList.txt ;
|
||||
touch ../tmp/aMediaIds.txt ;
|
||||
sed -n 's/.*title="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaTitles.txt
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaImgList.txt
|
||||
sed -n 's/.*group_id="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/aMediaIds.txt
|
||||
else
|
||||
sed -n 's/.*title="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaTitles.txt
|
||||
sed -n 's/.*src="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/preaImgList.txt
|
||||
sed -n 's/.*group_id="\([^"]*\).*/\1/p' ../tmp/alphaListing > ../tmp/aGrpIds.txt
|
||||
fi
|
||||
d=$(cat ../tmp/aGrpIds.txt | wc -l) >> /dev/null ;
|
||||
i="1"
|
||||
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/preaTitles.txt);
|
||||
imgLnk=$(sed -n "${i}p" ../tmp/preaImgList.txt);
|
||||
if [[ "$imgLnk" == *".jpg"* ]]
|
||||
then
|
||||
echo "$imgLnk" >> ../tmp/aImgList.txt
|
||||
else
|
||||
echo "Not an img..."
|
||||
fi
|
||||
if [[ "$title" == *"Spring"* || "$title" == *"Summer"* \
|
||||
|| "$title" == *"Fall"* || "$title" == *"Winter"* ]]
|
||||
then
|
||||
echo "Not a title..."
|
||||
else
|
||||
echo "$title" >> ../tmp/aTitles.txt ;
|
||||
fi
|
||||
i=$[$i++1];
|
||||
done
|
||||
i="1";
|
||||
while [ $i -le $d ]; do
|
||||
title=$(sed -n "${i}p" ../tmp/aTitles.txt);
|
||||
imgLnk=$(sed -n "${i}p" ../tmp/aImgList.txt);
|
||||
groupID=$(sed -n "${i}p" ../tmp/aGrpIds.txt);
|
||||
vdoLnk="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D"$groupID""
|
||||
echo '
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="'${vdoLnk}'" style="color:#00E8FF;">
|
||||
<img src="'${imgLnk}'" /> <br>
|
||||
'${title}'</a>
|
||||
</div>' >> ../tmp/alist.html ;
|
||||
i=$[$i++1];
|
||||
done
|
||||
endOut
|
||||
}
|
||||
|
||||
endOut()
|
||||
{
|
||||
echo '
|
||||
<iframe id="frame" name="frame" frameborder="0" class="iframer"></iframe>
|
||||
</body>
|
||||
</html>' >> ../tmp/alist.html
|
||||
redirect
|
||||
}
|
||||
redirect()
|
||||
{
|
||||
echo "Content-type: text/html"
|
||||
echo ""
|
||||
echo "<html>"
|
||||
echo "<head>"
|
||||
echo "<title>Loading...</title>"
|
||||
echo "<meta http-equiv='refresh' content='1;URL=../tmp/alist.html'>"
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo "<center>
|
||||
<font color='#FFFFFF'>You will be redirected in a few seconds...</font>
|
||||
<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</center>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
}
|
||||
headOut
|
9
Python Projects/other/MiniRoll/resources/cgi-bin/gridTheme.cgi
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
. lastSearch.cgi
|
||||
|
||||
main()
|
||||
{
|
||||
cat ../themes/"Grid List.css" > ../themes/bodyCss.css
|
||||
check
|
||||
}
|
||||
main
|
50
Python Projects/other/MiniRoll/resources/cgi-bin/lastSearch.cgi
Executable file
@@ -0,0 +1,50 @@
|
||||
#!/bin/bash
|
||||
|
||||
check()
|
||||
{
|
||||
start
|
||||
}
|
||||
|
||||
start()
|
||||
{
|
||||
if [[ -f ../tmp/list.html ]]
|
||||
then
|
||||
pre;
|
||||
echo "<meta http-equiv='refresh' content='0;URL=../tmp/list.html'>"
|
||||
post;
|
||||
elif [[ -f ../tmp/alist.html ]]
|
||||
then
|
||||
pre;
|
||||
echo "<meta http-equiv='refresh' content='0;URL=../tmp/alist.html'>"
|
||||
post;
|
||||
|
||||
elif [[ ! -f ../tmp/aList.html && ! -f ../tmp/alist.html ]]
|
||||
then
|
||||
pre;
|
||||
echo "<meta http-equiv='refresh' content='1;URL=../index.html'>"
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo -e "<center><font color='#FFFFFF'>No Last Search... \n Loading Home...</font></center>"
|
||||
echo "<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
fi
|
||||
}
|
||||
pre()
|
||||
{
|
||||
echo "Content-type: text/html"
|
||||
echo ""
|
||||
echo "<html>"
|
||||
echo "<head>"
|
||||
echo "<title>Loading...</title>"
|
||||
}
|
||||
post()
|
||||
{
|
||||
echo "</head>"
|
||||
echo "<body style='background-color:#000000'>"
|
||||
echo -e "<center><font color='#FFFFFF'>Loading Last Search...</font></center>"
|
||||
echo "<img style='width:30em;height:30em;margin-left:50%;margin-top:15%;' src='../icons/loading.gif'></img>"
|
||||
echo "</body>"
|
||||
echo "</html>"
|
||||
}
|
||||
check
|
9
Python Projects/other/MiniRoll/resources/cgi-bin/listOnLeftTheme.cgi
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
. lastSearch.cgi
|
||||
|
||||
main()
|
||||
{
|
||||
cat ../themes/"List On The Left.css" > ../themes/bodyCss.css
|
||||
check
|
||||
}
|
||||
main
|
1
Python Projects/other/MiniRoll/resources/cgi-bin/pids
Normal file
@@ -0,0 +1 @@
|
||||
|
24
Python Projects/other/MiniRoll/resources/cgi-bin/quit.cgi
Executable file
@@ -0,0 +1,24 @@
|
||||
#!/bin/bash
|
||||
|
||||
main()
|
||||
{
|
||||
readarray -t pids < pids
|
||||
programGuiID=${pids[0]}
|
||||
serverID=${pids[1]}
|
||||
|
||||
kill $programGuiID $serverID ;
|
||||
echo "" > ./pids
|
||||
rm -rf \
|
||||
../tmp/*tmp* \
|
||||
../tmp/*Show* \
|
||||
../tmp/*img* \
|
||||
../tmp/*titles* \
|
||||
../tmp/*media* \
|
||||
../tmp/aGrpIds \
|
||||
../tmp/aImgList \
|
||||
../tmp/alphaListing \
|
||||
../tmp/aTitles \
|
||||
../tmp/preaImgList \
|
||||
../tmp/preaTitles
|
||||
}
|
||||
main
|
BIN
Python Projects/other/MiniRoll/resources/icons/a.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/b.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/c.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/d.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/e.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/f.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/g.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/h.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/i.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/icon.png
Normal file
After Width: | Height: | Size: 1.5 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/j.png
Normal file
After Width: | Height: | Size: 32 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/k.png
Normal file
After Width: | Height: | Size: 34 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/l.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/loading.gif
Normal file
After Width: | Height: | Size: 25 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/m.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/n.png
Normal file
After Width: | Height: | Size: 30 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/o.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/p.png
Normal file
After Width: | Height: | Size: 31 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/q.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/r.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/s.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/t.png
Normal file
After Width: | Height: | Size: 29 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/u.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/v.png
Normal file
After Width: | Height: | Size: 35 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/w.png
Normal file
After Width: | Height: | Size: 36 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/x.png
Normal file
After Width: | Height: | Size: 37 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/y.png
Normal file
After Width: | Height: | Size: 33 KiB |
BIN
Python Projects/other/MiniRoll/resources/icons/z.png
Normal file
After Width: | Height: | Size: 32 KiB |
126
Python Projects/other/MiniRoll/resources/index.html
Normal file
@@ -0,0 +1,126 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div id=bg><img class="letterImg" src="backgrounds/boats.gif"/></div>
|
||||
<ul><a href="#" onclick="location.reload(true); return false;"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a target="invisFrame" href="cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a target="invisFrame" href="cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a target="invisFrame" href="cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="cgi-bin/lastSearch.cgi"><li>Last Search</li></a>
|
||||
<a href="cgi-bin/quit.cgi" style="float:right;"><li>Quit</li></a>
|
||||
<a href="#" style="float:right;" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
|
||||
</ul>
|
||||
<div style="float:left;">
|
||||
<form action="cgi-bin/crunchyScan.cgi" method="get">
|
||||
<font color="#FFFFFF">Crunchy Search :</font> <br/>
|
||||
<input type="text" name="anime"></input>
|
||||
<input type="submit" name="subbtn" value="Submit">
|
||||
</form>
|
||||
</div>
|
||||
<div style="clear:left;float:left;">
|
||||
<form action="cgi-bin/animeNtwrkScan.cgi" method="get">
|
||||
<font color="#FFFFFF">Anime Network Search :</font> <br/>
|
||||
<input type="text" name="anime"></input>
|
||||
<input type="submit" name="subbtn" value="Submit">
|
||||
</form>
|
||||
</div>
|
||||
|
||||
<div style="clear:left;z-index:0;">
|
||||
<form action="cgi-bin/alphaList.cgi" method="get" style="color:#00E8FF;">
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="a" class="letterImg" src="./icons/a.png" /></center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="b" class="letterImg" src="./icons/b.png" /></center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="c" class="letterImg" src="./icons/c.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="d" class="letterImg" src="./icons/d.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="e" class="letterImg" src="./icons/e.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="f" class="letterImg" src="./icons/f.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="g" class="letterImg" src="./icons/g.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="h" class="letterImg" src="./icons/h.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="i" class="letterImg" src="./icons/i.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="j" class="letterImg" src="./icons/j.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="k" class="letterImg" src="./icons/k.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="l" class="letterImg" src="./icons/l.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="m" class="letterImg" src="./icons/m.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="n" class="letterImg" src="./icons/n.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="o" class="letterImg" src="./icons/o.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="p" class="letterImg" src="./icons/p.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="q" class="letterImg" src="./icons/q.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="r" class="letterImg" src="./icons/r.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="s" class="letterImg" src="./icons/s.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="t" class="letterImg" src="./icons/t.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="u" class="letterImg" src="./icons/u.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="v" class="letterImg" src="./icons/v.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="w" class="letterImg" src="./icons/w.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="x" class="letterImg" src="./icons/x.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="y" class="letterImg" src="./icons/y.png" /> </center> <br/>
|
||||
</div>
|
||||
<div class="letters">
|
||||
<center> <input type="image" name="letter" value="z" class="letterImg" src="./icons/z.png" /> </center> <br/>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
<iframe id="frame" frameborder="0"></iframe>
|
||||
<iframe id="invisFrame" name="invisFrame" frameborder="0"></iframe>
|
||||
</body>
|
||||
</html>
|
38
Python Projects/other/MiniRoll/resources/miniRoll.glade
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<interface>
|
||||
<requires lib="gtk+" version="2.24"/>
|
||||
<object class="GtkWindow" id="Main">
|
||||
<property name="default_width">1100</property>
|
||||
<property name="default_height">690</property>
|
||||
<property name="can_focus">False</property>
|
||||
<property name="window_position">center</property>
|
||||
<property name="width_request">880</property>
|
||||
<property name="height_request">280</property>
|
||||
<property name="icon">icons/icon.png</property>
|
||||
<property name="deletable">False</property>
|
||||
<signal name="destroy" handler="on_Main_destroy" swapped="no"/>
|
||||
<child>
|
||||
<object class="GtkVBox" id="vbox1">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">False</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
<child>
|
||||
<object class="GtkScrolledWindow" id="scrolledwindow">
|
||||
<property name="visible">True</property>
|
||||
<property name="can_focus">True</property>
|
||||
<child>
|
||||
<placeholder/>
|
||||
</child>
|
||||
</object>
|
||||
<packing>
|
||||
<property name="expand">True</property>
|
||||
<property name="fill">True</property>
|
||||
<property name="position">2</property>
|
||||
</packing>
|
||||
</child>
|
||||
</object>
|
||||
</child>
|
||||
</object>
|
||||
</interface>
|
@@ -0,0 +1,91 @@
|
||||
/*START OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.homeSection {
|
||||
float: left;
|
||||
width: 40%;
|
||||
height: 14em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
border-style: solid;
|
||||
border-width: .2em;
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
background: rgba(19, 21, 21, .6);
|
||||
}
|
||||
/*END OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.header {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 99%;
|
||||
}
|
||||
.section, .lnksNdirs, .header {
|
||||
display: block;
|
||||
float: left;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
padding-top: 1em;
|
||||
margin: 1em;
|
||||
background: rgba(19, 21, 21, .7);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
/* border-style: solid;
|
||||
border-width: .2em;
|
||||
*/
|
||||
}
|
||||
.backbutton {
|
||||
top: 3.55em;
|
||||
clear: both;
|
||||
z-index: 2;
|
||||
position: fixed;
|
||||
float: left;
|
||||
width: 5%;
|
||||
height: 50px;
|
||||
opacity: .8;
|
||||
}
|
||||
iframe {
|
||||
position: fixed;
|
||||
bottom: 2em;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 360px;
|
||||
background: rgba(0,0,0,.5);
|
||||
transition: 0s;
|
||||
transition-delay:2s;
|
||||
}
|
||||
iframe:hover {
|
||||
left: 2%;
|
||||
width: 99%;
|
||||
height: 700px;
|
||||
transition-delay:2s;
|
||||
}
|
||||
.lnkStyl {
|
||||
clear: right;
|
||||
float: left;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.imgsStyl {
|
||||
margin-left: 50%;
|
||||
opacity: 0.699999988079071044921875;
|
||||
width: 32.333%;
|
||||
height: 20em;
|
||||
}
|
||||
.imgsStyl:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
#bg {
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
#bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
@@ -0,0 +1,89 @@
|
||||
body {
|
||||
width: 600%;
|
||||
}
|
||||
/*START OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.homeSection {
|
||||
float: left;
|
||||
width: 40%;
|
||||
height: 14em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
border-style: solid;
|
||||
border-width: .2em;
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
background: rgba(19, 21, 21, .6);
|
||||
}
|
||||
/*END OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.header {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 99%;
|
||||
}
|
||||
.section, .lnksNdirs, .header {
|
||||
display: block;
|
||||
clear: right;
|
||||
float: left;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
padding-top: 1em;
|
||||
margin: 1em;
|
||||
background: rgba(19, 21, 21, .7);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
/* border-style: solid;
|
||||
border-width: .2em;
|
||||
*/
|
||||
}
|
||||
.backbutton {
|
||||
top: 3.55em;
|
||||
clear: both;
|
||||
z-index: 2;
|
||||
position: fixed;
|
||||
float: left;
|
||||
width: 5%;
|
||||
height: 50px;
|
||||
opacity: .8;
|
||||
}
|
||||
iframe {
|
||||
position: fixed;
|
||||
bottom: 2em;
|
||||
left: 25%;
|
||||
width: 50%;
|
||||
height: 360px;
|
||||
background: rgba(0,0,0,.5)
|
||||
transition: 0s;
|
||||
transition-delay:2s;
|
||||
}
|
||||
.lnkStyl {
|
||||
clear: right;
|
||||
float: left;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.imgsStyl {
|
||||
margin-left: 50%;
|
||||
opacity: 0.699999988079071044921875;
|
||||
width: 32.333%;
|
||||
height: 20em;
|
||||
}
|
||||
.imgsStyl:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
#bg {
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
#bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
@@ -0,0 +1,89 @@
|
||||
/*START OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.homeSection {
|
||||
float: left;
|
||||
width: 40%;
|
||||
height: 14em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
border-style: solid;
|
||||
border-width: .2em;
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
background: rgba(19, 21, 21, .6);
|
||||
}
|
||||
/*END OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.header {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 99%;
|
||||
}
|
||||
.section, .lnksNdirs, .header {
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
padding-top: 1em;
|
||||
margin-top: 1em;
|
||||
background: rgba(19, 21, 21, .7);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
/* border-style: solid;
|
||||
border-width: .2em;
|
||||
*/
|
||||
}
|
||||
.backbutton {
|
||||
top: 3.55em;
|
||||
clear: both;
|
||||
z-index: 2;
|
||||
position: fixed;
|
||||
float: left;
|
||||
width: 5%;
|
||||
height: 50px;
|
||||
opacity: .8;
|
||||
}
|
||||
iframe {
|
||||
clear: both;
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
bottom: 5%;
|
||||
width: 40%;
|
||||
height: 500px;
|
||||
background: rgba(0,0,0,.5)
|
||||
transition: 0s;
|
||||
transition-delay:2s;
|
||||
}
|
||||
iframe:hover {
|
||||
width: 99%;
|
||||
transition-delay:2s;
|
||||
}
|
||||
.lnkStyl {
|
||||
clear: right;
|
||||
float: left;
|
||||
border-style: solid;
|
||||
}
|
||||
|
||||
.imgsStyl {
|
||||
margin-left: 50%;
|
||||
opacity: 0.699999988079071044921875;
|
||||
width: 32.333%;
|
||||
height: 20em;
|
||||
}
|
||||
.imgsStyl:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
#bg {
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
#bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
@@ -0,0 +1,109 @@
|
||||
/*START OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.homeSection {
|
||||
float: left;
|
||||
width: 40%;
|
||||
height: 14em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
border-style: solid;
|
||||
border-width: .2em;
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
background: rgba(19, 21, 21, .6);
|
||||
}
|
||||
/*END OF HOMEPAGE BUTTON SETTINGS*/
|
||||
|
||||
.lnkStyl {
|
||||
clear: right;
|
||||
float: left;
|
||||
border-style: solid;
|
||||
}
|
||||
.imgsStyl {
|
||||
clear: both;
|
||||
float: left;
|
||||
opacity: 0.699999988079071044921875;
|
||||
width: 20%;
|
||||
height: 15em;
|
||||
}
|
||||
.imgsStyl:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.header {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
.lnksNdirs {
|
||||
width: 20%;
|
||||
float:left;
|
||||
}
|
||||
/* used to format sections of pgs*/
|
||||
.section, .lnksNdirs, .header {
|
||||
clear: both;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
padding-top: 1em;
|
||||
margin-top: 1em;
|
||||
font-size: 100%;
|
||||
background: rgba(19, 21, 21, .6);
|
||||
background: rgba(19, 21, 21, .7);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
/* border-style: solid;
|
||||
border-width: .2em;
|
||||
*/
|
||||
}
|
||||
.backbutton {
|
||||
top: 3em;
|
||||
clear: both;
|
||||
z-index: 2;
|
||||
position: fixed;
|
||||
float: left;
|
||||
width: 5%;
|
||||
height: 55px;
|
||||
opacity: .8;
|
||||
}
|
||||
.ifrmbutton2 {
|
||||
top: 3em;
|
||||
float: right;
|
||||
right: .5em;
|
||||
z-index:2;
|
||||
position: fixed;
|
||||
width: 5%;
|
||||
height: 30px;
|
||||
opacity: .6;
|
||||
}
|
||||
iframe {
|
||||
margin-left: 2%;
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
top: 8em;
|
||||
bottom: 2%;
|
||||
width: 80%;
|
||||
height: 525px;
|
||||
background: rgba(0,0,0,.5)
|
||||
transition: 0s;
|
||||
transition-delay:2s;
|
||||
}
|
||||
iframe:hover {
|
||||
height: 775px;
|
||||
transition-delay:2s;
|
||||
}
|
||||
#bg {
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
#bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
109
Python Projects/other/MiniRoll/resources/themes/bodyCss.css
Normal file
@@ -0,0 +1,109 @@
|
||||
/*START OF HOMEPAGE BUTTON SETTINGS*/
|
||||
.homeSection {
|
||||
float: left;
|
||||
width: 40%;
|
||||
height: 14em;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
font-size: 100%;
|
||||
border-style: solid;
|
||||
border-width: .2em;
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
background: rgba(19, 21, 21, .6);
|
||||
}
|
||||
/*END OF HOMEPAGE BUTTON SETTINGS*/
|
||||
|
||||
.lnkStyl {
|
||||
clear: right;
|
||||
float: left;
|
||||
border-style: solid;
|
||||
}
|
||||
.imgsStyl {
|
||||
clear: both;
|
||||
float: left;
|
||||
opacity: 0.699999988079071044921875;
|
||||
width: 20%;
|
||||
height: 15em;
|
||||
}
|
||||
.imgsStyl:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
.header {
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
width: 100%;
|
||||
float: left;
|
||||
}
|
||||
.lnksNdirs {
|
||||
width: 20%;
|
||||
float:left;
|
||||
}
|
||||
/* used to format sections of pgs*/
|
||||
.section, .lnksNdirs, .header {
|
||||
clear: both;
|
||||
position: relative;
|
||||
text-align: center;
|
||||
padding-top: 1em;
|
||||
margin-top: 1em;
|
||||
font-size: 100%;
|
||||
background: rgba(19, 21, 21, .6);
|
||||
background: rgba(19, 21, 21, .7);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
/* border-style: solid;
|
||||
border-width: .2em;
|
||||
*/
|
||||
}
|
||||
.backbutton {
|
||||
top: 3em;
|
||||
clear: both;
|
||||
z-index: 2;
|
||||
position: fixed;
|
||||
float: left;
|
||||
width: 5%;
|
||||
height: 55px;
|
||||
opacity: .8;
|
||||
}
|
||||
.ifrmbutton2 {
|
||||
top: 3em;
|
||||
float: right;
|
||||
right: .5em;
|
||||
z-index:2;
|
||||
position: fixed;
|
||||
width: 5%;
|
||||
height: 30px;
|
||||
opacity: .6;
|
||||
}
|
||||
iframe {
|
||||
margin-left: 2%;
|
||||
z-index: 1;
|
||||
position: fixed;
|
||||
top: 8em;
|
||||
bottom: 2%;
|
||||
width: 80%;
|
||||
height: 525px;
|
||||
background: rgba(0,0,0,.5)
|
||||
transition: 0s;
|
||||
transition-delay:2s;
|
||||
}
|
||||
iframe:hover {
|
||||
height: 775px;
|
||||
transition-delay:2s;
|
||||
}
|
||||
#bg {
|
||||
position: fixed;
|
||||
top: 0%;
|
||||
left: 0%;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
||||
#bg img {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
z-index: -1;
|
||||
}
|
86
Python Projects/other/MiniRoll/resources/themes/menuCss.css
Normal file
@@ -0,0 +1,86 @@
|
||||
#invisFrame {
|
||||
position: absolute;
|
||||
z-index: -999;
|
||||
width: 0px;
|
||||
height: 0px;
|
||||
}
|
||||
.letters {
|
||||
position: relative;
|
||||
display: block;
|
||||
float: left;
|
||||
width: 12em;
|
||||
height: 6em;
|
||||
margin-top: 0.5em;
|
||||
margin-left: 2em;
|
||||
background: rgba(19, 21, 21, .6);
|
||||
color: rgba(0, 232, 255, .69); /*#00E8FF*/
|
||||
}
|
||||
.letters:hover {
|
||||
background-color: #f78c00;
|
||||
}
|
||||
.letterImg {
|
||||
width: 6em;
|
||||
height: 6em;
|
||||
}
|
||||
|
||||
ul {
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
top: .5em;
|
||||
left: 30%;
|
||||
color: #fff;
|
||||
text-align: left;
|
||||
display: inline;
|
||||
margin: 0;
|
||||
padding: 10px 5px 10px 0;
|
||||
list-style: none;
|
||||
-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
|
||||
box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
|
||||
}
|
||||
ul li {
|
||||
color: #fff;
|
||||
font: bold 12px/18px sans-serif;
|
||||
display: inline-block;
|
||||
margin-right: -4px;
|
||||
position: relative;
|
||||
padding: 10px 15px;
|
||||
background: #f78c00;
|
||||
cursor: pointer;
|
||||
-webkit-transition: all 0.2s;
|
||||
-moz-transition: all 0.2s;
|
||||
-ms-transition: all 0.2s;
|
||||
-o-transition: all 0.2s;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
ul li:hover {
|
||||
background: #555;
|
||||
color: #f78c00;
|
||||
}
|
||||
ul li ul {
|
||||
padding: 0;
|
||||
position: absolute;
|
||||
top: 38px;
|
||||
left: 0;
|
||||
width: 150px;
|
||||
-webkit-box-shadow: none;
|
||||
display: none;
|
||||
opacity: 0;
|
||||
visibility: hidden;
|
||||
-webkit-transiton: opacity 0.2s;
|
||||
-moz-transition: opacity 0.2s;
|
||||
-ms-transition: opacity 0.2s;
|
||||
-o-transition: opacity 0.2s;
|
||||
-transition: opacity 0.2s;
|
||||
}
|
||||
ul li ul li {
|
||||
background: #555;
|
||||
display: block;
|
||||
color: #fff;
|
||||
text-shadow: 0 -1px 0 #000;
|
||||
}
|
||||
ul li ul li:hover { background-color: #666; }
|
||||
ul li:hover ul {
|
||||
display: block;
|
||||
opacity: 1;
|
||||
visibility: visible;
|
||||
}
|
169
Python Projects/other/MiniRoll/resources/tmp/alist.html
Normal file
@@ -0,0 +1,169 @@
|
||||
<!doctype html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<title>MiniRoll App</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<link rel="stylesheet" href="../themes/bodyCss.css" type="text/css">
|
||||
<link rel="stylesheet" href="../themes/menuCss.css" type="text/css">
|
||||
</head>
|
||||
<body>
|
||||
<div id=bg><img src="../backgrounds/desart.gif"/></div>
|
||||
<center>
|
||||
<ul><a href="../index.html"><li>Home</li></a>
|
||||
<li>
|
||||
Layout
|
||||
<ul>
|
||||
<a href="../cgi-bin/listOnLeftTheme.cgi"><li>List On The Left</li></a>
|
||||
<a href="../cgi-bin/gridTheme.cgi"><li>Grid</li></a>
|
||||
<a href="../cgi-bin/centerList.cgi"><li>List Centered</li></a>
|
||||
</ul>
|
||||
</li>
|
||||
<li>About</li>
|
||||
<a href="../cgi-bin/quit.cgi"><li>Quit</li></a>
|
||||
<a href="#" onclick="location.reload(true); return false;"><li>Refresh</li></a>
|
||||
</ul>
|
||||
</center>
|
||||
<br>
|
||||
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D47258" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire2/383071a2c629ff64fb33669a793eac311293594874_small.png" /> <br>
|
||||
Spring 2009</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D260441" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/6853acee89086eaf46dfc47b69a225801396566265_small.jpg" /> <br>
|
||||
Winter 2009</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D119420" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/83cb31169595504bc45dd126938f9b271279149357_small.jpg" /> <br>
|
||||
La Corda d'Oro ~primo passo~ and ~secondo passo~</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D246838" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/fb245b43a27e980deb4d22344f6c9ee81341524726_small.jpg" /> <br>
|
||||
La corda d’oro -Blue Sky-</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D267939" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/7b4b3c9b76fcbaea76c050be3ca2d0701443566712_small.jpg" /> <br>
|
||||
La Maison en Petits Cubes</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D243602" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire3/68ce9afef020943e33944a0a75e571c91331943843_small.jpg" /> <br>
|
||||
La storia della Arcana Famiglia</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D206590" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/1d6757bf2a0ecd6009200ec8954986e21275429494_small.jpg" /> <br>
|
||||
Lance N' Masques</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D268231" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire2/2637c681c996da4b22ba40eb20b188431445571910_small.jpg" /> <br>
|
||||
Leiji Matsumoto's OZMA</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D240616" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/ab1040e21dceb2f4866d623507dcafdd1336684022_small.jpg" /> <br>
|
||||
Lilpri</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D251781" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/d95dc1eac5edc0d4358c0f7722d813931357760877_small.jpg" /> <br>
|
||||
Lily C.A.T</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D239534" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/55210d3a05241d869c36321590adfc8d1323300816_small.jpg" /> <br>
|
||||
Listen to Me, Girls, I’m Your Father!</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D261553" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/9ac1c4e1b0a649363477827e30050b881452031391_small.jpg" /> <br>
|
||||
Little Busters!</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D257333" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/f39842bd473e2db08ea8a1d8849c93ae1412197326_small.jpg" /> <br>
|
||||
Little Nemo: Adventures in Slumberland</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D256651" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/705b9f0f907db89429525652c69076fa1377559416_small.jpg" /> <br>
|
||||
Locodol</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D251705" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire3/deaf323b7654b1e9d6a63b9dfb1ae8cc1356541779_small.jpg" /> <br>
|
||||
Log Horizon</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D261671" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/d095879534187c6f57546b2aafb8b5361404912213_small.jpg" /> <br>
|
||||
Love Lab</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D259479" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire3/d6ee37b791b46c7c66cda8af1e72298b1392243736_small.jpg" /> <br>
|
||||
Love Live! School Idol Project</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D258777" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire2/bd95eeb756c8238b1be483af65b612e91390513213_small.jpg" /> <br>
|
||||
Love Stage!!</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D268053" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire3/00b0bd7aa79494632ae1843335cdd7af1444082390_small.jpg" /> <br>
|
||||
Love, Chunibyo & Other Delusions</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D269029" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/ee2d3bb6a90a2c471c18a7eed18ff0691451338768_small.jpg" /> <br>
|
||||
Love, Chunibyo & Other Delusions - Heart Throb -</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D266649" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire4/456699552b1cfcafd0adbd106bd8bee21443743181_small.jpg" /> <br>
|
||||
Lovely Muuuuuuuco!</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D266007" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire1/82881adcf7f2a64d0dae74af5e26f8591433555531_small.jpg" /> <br>
|
||||
LUPIN THE 3rd PART4</a>
|
||||
</div>
|
||||
|
||||
<div class="lnksNdirs">
|
||||
<a target="frame" href="http://www.crunchyroll.com/swf/StandardVideoPlayer.swf?config_url=http%3A%2F%2Fwww.crunchyroll.com%2Fxml%2F%3Freq%3DRpcApiVideoPlayer_GetStandardConfig%26media_id%3D267533" style="color:#00E8FF;">
|
||||
<img src="http://img1.ak.crunchyroll.com/i/spire2/bf0a6917ba7f4e58450bf75aa7afd9161443743896_small.jpg" /> <br>
|
||||
Lupin the Third Part 1</a>
|
||||
</div>
|
||||
|
||||
<iframe id="frame" name="frame" frameborder="0" class="iframer"></iframe>
|
||||
</body>
|
||||
</html>
|