--- /dev/null
+#!/usr/bin/perl
+use CGI::Carp qw(warningsToBrowser fatalsToBrowser);
+use CGI;
+print "Content-type: text/html\n\n";
+
+my $cgi = new CGI();
+
+
+my $room = $cgi->param("room");
+if (!($room =~ /^[a-zA-Z0-9]+$/) || !(-d "store/$room")) {
+ print "Invalid room";
+ return 1;
+}
+
+
+my $t = $cgi->param("img");
+if(($t =~ /[\"\$\(\)\/]/ || !(-e "store/$room/$t")) && ($t =~ /.png$/i || $t =~ /.jpg$/i)) {
+ print "Invalid selection";
+ return 1;
+}
+
+system("rm store/$room/$t store/$room/thumb/$t");
+
+
+print <<REDOC;
+<!DOCTYPE html>
+<html>
+<head>
+ <meta http-equiv="refresh" content="0; url=showroom.pl?$room">
+</head>
+<body>
+</body>
+</html>
+REDOC
+
+1;
my $cmd = "cd store;cd $room; ls -1 -v";
my @files = qx($cmd);
-print "<select id=\"filelist\" size=\"20\">\n";
+print "<select onChange=\"previewSelected()\" id=\"filelist\" size=\"20\">\n";
foreach my $f (@files) {
chomp($f);
next if $f eq "currentstate";
- print "<option value='$f'>$f\n";
+ next if $f eq "thumb";
+ print "<option onMouseover=\"preview('$f')\" value='$f'>$f</option>\n";
}
print "</select>";
}
}
+function deletePic(f) {
+ if(f != "") {
+ getData("deletePic.pl?img="+f+"&room="+currentRoom);
+ }
+ else {
+ alert("Select a file to show!");
+ }
+ }
+
function pointer(e) {
var t = document.getElementById("screen");
// alert(t.offsetLeft);
setTimeout('getData("getPic.pl?old='+t+'&room='+currentRoom+'",null,updatepresentation)',1000);
}
+function preview(f) {
+ document.getElementById("preview").innerHTML = '<img src="store/'+currentRoom+'/thumb/'+f+'">';
+ }
+
+function previewSelected() {
+ f = document.getElementById("filelist").value;
+ document.getElementById("preview").innerHTML = '<img src="store/'+currentRoom+'/thumb/'+f+'">';
+ }
+
setTimeout('updatefiles();',500);
setTimeout('updatepresentation(" ");',200);
<div id="content">Remote Presenter<br><-- Click to show or just watch!</div>
<div id="control">
Select a file and press upload.
-<form method="post" action="uploadFiles.pl" enctype="multipart/form-data">
+<form method="post" action="uploadFiles.pl" enctype="multipart/form-data" >
<input type="hidden" name="room" value="$room">
-<input type="file" name="upfile"><input type="submit" name="button" value="Upload">
+<input type="file" name="upfile" ><input type="submit" name="button" value="Upload">
</form>
<hr>
<button type="button" onClick="updatefiles();">Update file list</button>
<div id="files"> </div>
<button type="button" onClick="window.open('store/$room/'+document.getElementById('filelist').value)">Show 2 Me</button>
<button type="button" onClick="present(document.getElementById('filelist').value)">Show 2 All</button>
+<button type="button" onClick="deletePic(document.getElementById('filelist').value)">Delete</button>
+<div id="preview"></div>
</body></html>
HDOC
left:-200px;
position:absolute;
top:0;
- border-right:40px solid #000;
+ border-right:70px solid #000;
background:#ccb;
- transition:left 0.3s;
+ transition:left 0.6s 3s ease-out, border 0.6s 3s ease-out;
overflow:hidden;
}
#control:hover {
left:0;
border:0;
+ transition:left 0.2s 0s ease-in, border 0.2s 0s ease-in;
}
#content {
position:absolute;
//animation: pointerani 1s infinite alternate;
}
+
+#preview {
+ width:205px;
+ border:1px solid #aaa;
+ margin:1px;
+ position:relative;
+ left:5px;
+ padding:1px;
+ text-align:center;
+ background:white;
+ }
$b =~ s/.pdf//i;
system("cd store/$room;../../convert.sh \"$basename\" \"$b\"");
system("rm \"store/$room/$basename\"");
+ system("cd store/$room;mogrify -path thumb -thumbnail 200x200 $b*.png");
}
+else {
+ system("cd store/$room;mogrify -path thumb -thumbnail 200x200 $basename");
+ }
+
sub GetBasename {
}
-
print <<REDOC;
<!DOCTYPE html>
<html>