Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/08/2009, 11:11
Avatar de GatorV
GatorV
$this->role('moderador');
 
Fecha de Ingreso: mayo-2006
Ubicación: /home/ams/
Mensajes: 38.567
Antigüedad: 18 años, 5 meses
Puntos: 2135
Respuesta: modificar lineas en archivo

Exacto, pero para procesar el archivo cambialo como .php y solo rescatas el valor y lo indicas donde quieras, por ejemplo:
Código PHP:
Ver original
  1. <title>Untitled Document</title>
  2.  
  3. <script src="http://simile.mit.edu/timeline/api/timeline-api.js" type="text/javascript"></script>
  4. <script>
  5. var tl;
  6. function onLoad() {
  7.   var eventSource = new Timeline.DefaultEventSource();
  8.   var bandInfos = [
  9.     Timeline.createBandInfo({
  10.         eventSource:    eventSource,
  11.         date:           "<?php echo $fecha; ?>",
  12.         width:          "70%",
  13.         intervalUnit:   Timeline.DateTime.DAY,
  14.         intervalPixels: 100
  15.     }),
  16.     Timeline.createBandInfo({
  17.         showEventText:  false,
  18.         trackHeight:    0.5,
  19.         trackGap:       0.2,
  20.         eventSource:    eventSource,
  21.         date:           "May 01 2009 00:00:00 GMT",
  22.         width:          "30%",
  23.         intervalUnit:   Timeline.DateTime.MONTH,
  24.         intervalPixels: 200
  25.     })
  26.   ];
  27.   bandInfos[1].syncWith = 0;
  28.   bandInfos[1].highlight = true;
  29.   bandInfos[1].eventPainter.setLayout(bandInfos[0].eventPainter.getLayout());
  30.  
  31.   tl = Timeline.create(document.getElementById("my-timeline"), bandInfos);
  32.   Timeline.loadXML("prueba1.xml", function(xml, url) { eventSource.loadXML(xml, url); });
  33. }
  34. </script>
  35.  
  36.  
  37. </head>
  38.  
  39. <body onload="onLoad();" onresize="onResize();">
  40.  
  41. <div id="my-timeline" style="height:200px; border:1px solid #aaa"></div>
  42.  
  43.  
  44. </body>
  45. </html>

Saludos.