File contents
<html>
<head>
<title>Seminario de Geometria Algebraica</title>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
</head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"> </script>
<script>
var SCRIPT_URL = "https://script.google.com/macros/s/AKfycbxb5gh0u2xb5ZAPXNAx-gLiOuk3evSUlfWpn7fTdB5DSeMmR4ARHzh__GbCTJPUYaP0/exec";
var charlas = {};
var abstracts = {};
function load_data(year,cuat) {
if (cuat.toString().length == 1) {cuat = "0" + cuat;}
$.getJSON(SCRIPT_URL+"?callback=?",
{year:year,cuat:cuat},
function (data) {
charlas = data[0];
abstracts = data[1];
loadVar(year + "" + cuat);
});
}
</script>
<body style="font-size: 14px; font-family: arial; overflow-y: scroll;" bgcolor="lightgoldenrodyellow">
<p align="center">
<span style="font-size: 25px; font-weight: bold;">Seminario de Geometria Algebraica </span>
<br>
<span style="font-size: 20px; font-weight: bold;">Buenos Aires, Argentina</span>
</p>
<br>
<p>
Coordinadores: Fernando Cukierman, Carlos Di Fiore, <a href = "mailto: cmassri@dm.uba.ar">César Massri</a>
<br>
</p>
<hr>
<p>
<span style="font-size: 16px; font-weight: bold;">Cronograma de charlas</span>
</p>
<ul>
<li> Cuatrimestre en curso:
<script type="text/javascript">
var d = new Date();
var year=d.getFullYear();
var cuat=1;
if(d.getMonth()>6){cuat=2;} // 7 es agosto
document.write("<a href=\"#\" onclick='load_data(" + year + "," + cuat + ")'>" + cuat + "/" + year + "</a>, ");
</script>
</li>
<li>
Cuatrimestres anteriores:
<script type="text/javascript">
var d = new Date();
var year=d.getFullYear();
if(d.getMonth()>6){
document.write("<a href=\"#\" onclick='load_data(" + year + ",1)'>1/" + year + "</a>, ");
}
for (var i=year-1;i>2005;i--){
for (var j=2; j>0; j--) {
var cuat = j + "/" + i;
if (i<=1908) {
document.write(cuat + ", ");
} else {
document.write("<a href=\"#\" onclick='load_data(" + i + "," + j + ")'>" + cuat + "</a>, ");
}
}
}
</script>
</li></ul>
<div id="fecha" style="font-size: 16px;"></div>
<br>
Aula de Seminarios, DM, FCEyN, UBA
<br>
Viernes 18 hs
<br>
<noscript>
<br><ul><font color="red" size="4">
You should have Javascript enabled on your browser to properly see this website.
</font></ul>
</noscript>
<div id='show' style="display: block"></div>
<script type="text/javascript">
function Hideshow(which){
if (!document.getElementById) {
return;
}
if (which.style.display=="none") {
which.style.display="block";
} else {
which.style.display="none";
}
}
function loadVar(wich) {
if (wich.substr(4,6) == 1) {
document.getElementById('fecha').innerHTML = "Primer cuatrimestre " + wich.substr(0,4);
} else {
document.getElementById('fecha').innerHTML = "Segundo cuatrimestre " + wich.substr(0,4);
}
document.getElementById('show').innerHTML = "";
// charlas['20220131'] = '<li>20/may - María Angélica Cueto (Ohio State University)<br><i>TBA</i>';
// abstracts['20220131'] = ''
for (var i=40; i>0; i--) {
var num = wich + "0" + i;
if ( i>= 10) {num = wich + "" + i;}
try{
if (charlas[num].length < 2) continue;
var textoVar = charlas[num];
console.log(num)
var texto = "<ul>";
if(Math.abs(Number(textoVar.substr(0,1)))<=3){
texto += "<li>";
}
texto += textoVar;
if (abstracts[num].length > 10) {
texto+= "<br><span><a href=\"javascript:void()\" onclick=\"Hideshow(document.getElementById('abs" + num + "'))\">Abstract</a></span><br><ul><ul>";
texto+="<span><div id='abs" + num + "' style=\"font-size: 14; background-color:Khaki; width:600px; display: none\"></div></span></ul></ul>";
}
texto += "</ul>";
document.getElementById('show').innerHTML += texto;
if (abstracts[num].length > 10) {
document.getElementById("abs" + num).innerHTML = abstracts[num];
}
} catch(err) {}
}
document.getElementById('show').innerHTML += "<hr><p></p>";
}
var d = new Date();
var year=d.getFullYear();
var cuat= "01";
if(d.getMonth()>6){ cuat = "02";}
document.onload = load_data(year,cuat);
</script>
</body>
</html>