Mister Spy Say ="Hello Kids ... :D"
___ ____ _ _____
| \/ (_) | | / ___|
| . . |_ ___| |_ ___ _ __ \ `--. _ __ _ _
| |\/| | / __| __/ _ \ '__| `--. \ '_ \| | | |
| | | | \__ \ || __/ | /\__/ / |_) | |_| |
\_| |_/_|___/\__\___|_| \____/| .__/ \__, |
| | __/ |
|_| |___/
Bot Mister Spy V3
Mister Spy
Mister Spy
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head id="Head1">
<title> Mi Calendario </title>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<link href="css/dailog.css" rel="stylesheet" type="text/css" />
<link href="css/calendar.css" rel="stylesheet" type="text/css" />
<link href="css/dp.css" rel="stylesheet" type="text/css" />
<link href="css/alert.css" rel="stylesheet" type="text/css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
<script src="src/jquery.js" type="text/javascript"></script>
<script src="src/Plugins/Common.js" type="text/javascript"></script>
<script src="src/Plugins/datepicker_lang_ES.js" type="text/javascript"></script>
<script src="src/Plugins/jquery.datepicker.js" type="text/javascript"></script>
<script src="src/Plugins/jquery.alert.js" type="text/javascript"></script>
<script src="src/Plugins/jquery.ifrmdailog.js" defer="defer" type="text/javascript"></script>
<script src="src/Plugins/wdCalendar_lang_ES.js" type="text/javascript"></script>
<script src="src/Plugins/jquery.calendar.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function()
{
var view = "week";
var DATA_FEED_URL = "php/datafeed.php";
var op = {
view: view,
theme:3,
showday: new Date(),
EditCmdhandler:Edit,
DeleteCmdhandler:Delete,
ViewCmdhandler:View,
onWeekOrMonthToDay:wtd,
onBeforeRequestData: cal_beforerequest,
onAfterRequestData: cal_afterrequest,
onRequestDataError: cal_onerror,
autoload:true,
url: DATA_FEED_URL + "?Action=list",
quickAddUrl: DATA_FEED_URL + "?Action=Create",
quickUpdateUrl: DATA_FEED_URL + "?Action=Update",
quickDeleteUrl: DATA_FEED_URL + "?Action=Delete"
};
var $dv = $("#calhead");
var _MH = document.documentElement.clientHeight;
var dvH = $dv.height() + 2;
op.height = _MH - dvH;
op.eventItems = [];
var p = $("#gridcontainer").bcalendar(op).BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
$("#caltoolbar").noSelect();
$("#hdtxtshow").datepicker({ picker: "#txtdatetimeshow", showtarget: $("#txtdatetimeshow"),
onReturn:function(r)
{
var p = $("#gridcontainer").gotoDate(r).BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
}
});
function cal_beforerequest(type)
{
var t = "Cargando eventos...";
switch(type)
{
case 1:
t = "Cargando eventos...";
break;
case 2:
case 3:
case 4:
t = "Los datos estan siendo procesados ...";
break;
}
$("#errorpannel").hide();
$("#loadingpannel").html(t).show();
}
function cal_afterrequest(type)
{
switch(type)
{
case 1:
$("#loadingpannel").hide();
break;
case 2:
case 3:
case 4:
$("#loadingpannel").html("Success!");
window.setTimeout(function(){ $("#loadingpannel").hide();},2000);
break;
}
}
function cal_onerror(type,data)
{
$("#errorpannel").show();
}
function Edit(data)
{
var eurl="edit.php?id={0}";
if(data)
{
var url = StrFormat(eurl,data);
OpenModelWindow(url,{ width: 600, height: 400, caption:"Modificar Evento",onclose:function(){
$("#gridcontainer").reload();
}});
}
}
function View(data)
{
var str = "";
$.each(data, function(i, item)
{
str += "[" + i + "]: " + item + "\n";
});
alert(str);
}
function Delete(data,callback)
{
$.alerts.okButton = "Ok";
$.alerts.cancelButton = "Cancel";
hiConfirm("¿Desea eliminar el evento?", 'Confirm',function(r){ r && callback(0);});
}
function wtd(p)
{
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
$("#caltoolbar div.fcurrent").each(function()
{
$(this).removeClass("fcurrent");
})
$("#showdaybtn").addClass("fcurrent");
}
//to show day view
$("#showdaybtn").click(function(e)
{
//document.location.href="#day";
$("#caltoolbar div.fcurrent").each(function()
{
$(this).removeClass("fcurrent");
})
$(this).addClass("fcurrent");
var p = $("#gridcontainer").swtichView("day").BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
//to show week view
$("#showweekbtn").click(function(e)
{
//document.location.href="#week";
$("#caltoolbar div.fcurrent").each(function()
{
$(this).removeClass("fcurrent");
})
$(this).addClass("fcurrent");
var p = $("#gridcontainer").swtichView("week").BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
//to show month view
$("#showmonthbtn").click(function(e)
{
//document.location.href="#month";
$("#caltoolbar div.fcurrent").each(function()
{
$(this).removeClass("fcurrent");
})
$(this).addClass("fcurrent");
var p = $("#gridcontainer").swtichView("month").BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
$("#showreflashbtn").click(function(e)
{
$("#gridcontainer").reload();
});
//Add a new event
$("#faddbtn").click(function(e)
{
var url ="edit.php";
OpenModelWindow(url,{ width: 500, height: 450, caption: "Crear Evento",onclose:function(){
$("#gridcontainer").reload();
}});
});
//go to today
$("#showtodaybtn").click(function(e)
{
var p = $("#gridcontainer").gotoDate().BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
//previous date range
$("#sfprevbtn").click(function(e)
{
var p = $("#gridcontainer").previousRange().BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
//next date range
$("#sfnextbtn").click(function(e)
{
var p = $("#gridcontainer").nextRange().BcalGetOp();
if (p && p.datestrshow)
{
$("#txtdatetimeshow").text(p.datestrshow);
}
});
});
</script>
</head>
<body>
<div>
<div id="calhead" style="padding-left:1px;padding-right:1px;">
<div class="cHead">
<div class="ftitle">Calendario de Eventos</div>
<div id="loadingpannel" class="ptogtitle loadicon" style="display: none;">Cargando eventos...</div>
<div id="errorpannel" class="ptogtitle loaderror" style="display: none;">No se pueden cargar los eventos, por favor intente nuevamente mas tarde</div>
</div>
<div id="caltoolbar" class="ctoolbar">
<div class="btnseparator"></div>
<div id="showdaybtn" class="fbutton">
<div><span title='Dia' class="showdayview">Dia</span></div>
</div>
<div id="showweekbtn" class="fbutton fcurrent">
<div><span title='Semana' class="showweekview">Semana</span></div>
</div>
<div id="showmonthbtn" class="fbutton">
<div><span title='Mes' class="showmonthview">Mes</span></div>
</div>
<div class="btnseparator"></div>
<div id="showreflashbtn" class="fbutton">
<div><span title='Recargar Grilla' class="showdayflash">Recargar</span></div>
</div>
<div class="btnseparator"></div>
<div id="sfprevbtn" title="Anterior" class="fbutton">
<span class="fprev"></span>
</div>
<div id="sfnextbtn" title="Siguiente" class="fbutton">
<span class="fnext"></span>
</div>
<div class="fshowdatep fbutton">
<div>
<input type="hidden" name="txtshow" id="hdtxtshow" />
<span id="txtdatetimeshow">Calendario</span>
</div>
</div>
<div class="clear"></div>
</div>
</div>
<div style="padding:1px;">
<div class="t1 chromeColor"> </div>
<div class="t2 chromeColor"> </div>
<div id="dvCalMain" class="calmain printborder">
<div id="gridcontainer" style="overflow-y: visible;"></div>
</div>
<div class="t2 chromeColor"> </div>
<div class="t1 chromeColor"> </div>
</div>
</div>
</body>
</html>
Mr. DellatioNx196 GaLers xh3LL Backd00r 1.0, Coded By Mr. DellatioNx196 - Bogor BlackHat