Accéder au contenu.
Menu Sympa

devel - [Devel] r479 - in branches/generic: . adl-specific includes

Objet : devel-adl

Archives de la liste

[Devel] r479 - in branches/generic: . adl-specific includes


Chronologique Discussions 
  • From: svn AT agendadulibre.org
  • To: devel AT agendadulibre.org
  • Subject: [Devel] r479 - in branches/generic: . adl-specific includes
  • Date: Mon, 2 Aug 2010 23:40:31 +0200 (CEST)
  • List-archive: <http://agendadulibre.org/pipermail/devel>
  • List-id: Developpement de l'Agenda du Libre <devel.agendadulibre.org>

Author: ploc
Date: Mon Aug 2 23:40:29 2010
New Revision: 479

Log:
using calendar_absolute_url function instead of variable (and fixing a small
bug on moderation logout redirect)

Modified:
branches/generic/adl-specific/config.inc.php
branches/generic/icallist.php
branches/generic/includes/funcs.inc.php
branches/generic/rss.php
branches/generic/rsslist.php
branches/generic/xmllistevents.php

Modified: branches/generic/adl-specific/config.inc.php
==============================================================================
--- branches/generic/adl-specific/config.inc.php Mon Aug 2 22:25:38
2010 (r478)
+++ branches/generic/adl-specific/config.inc.php Mon Aug 2 23:40:29
2010 (r479)
@@ -1,10 +1,10 @@
<?php

/* main config */
-$websiteName = "agenda du libre"; /* title displayed on each
page */
+$websiteName = "agenda du libre"; /*
title displayed on each page */
$websiteSlogan = "l'agenda des évènements du logiciel libre en France"; /*
slogan displayed on some pages */
-$mailDomain = "agendadulibre.org"; /* domain used for sending
mails */
-$rootUrl = "http://www.$mailDomain";; /* root url, without
trailing slash */
+$mailDomain = "agendadulibre.org"; /*
domain used for sending mails */
+$rootUrl = "www.$mailDomain"; /*
root url, without leading protocol, without trailing slash */

/* template config */
$headerTemplate = "$specificContent/templates/header.html";

Modified: branches/generic/icallist.php
==============================================================================
--- branches/generic/icallist.php Mon Aug 2 22:25:38 2010 (r478)
+++ branches/generic/icallist.php Mon Aug 2 23:40:29 2010 (r479)
@@ -90,7 +90,7 @@
par votre association, à partir du moment où vous pensez à marquer
tous vos évènements avec un tag précis.<br/>
Exemple :
- <code><?php echo $rootUrl; ?>/ical.php?tag=exemple</code>.
+ <code><?php echo calendar_absolute_url("/ical.php?tag=exemple"); ?></code>.
</li>
</ul>


Modified: branches/generic/includes/funcs.inc.php
==============================================================================
--- branches/generic/includes/funcs.inc.php Mon Aug 2 22:25:38 2010
(r478)
+++ branches/generic/includes/funcs.inc.php Mon Aug 2 23:40:29 2010
(r479)
@@ -710,7 +710,7 @@
echo "</select>\n";

echo "<select name=\"__event_" . $ident . "_year\">\n";
- for ($i = 2005; $i <= 2015; $i++)
+ for ($i = 2005; $i <= 2010; $i++)
{
if ($i == date("Y", $current_time))
echo " <option value=\"$i\" selected=\"selected\">$i</option>\n";

Modified: branches/generic/rss.php
==============================================================================
--- branches/generic/rss.php Mon Aug 2 22:25:38 2010 (r478)
+++ branches/generic/rss.php Mon Aug 2 23:40:29 2010 (r479)
@@ -106,10 +106,10 @@
echo " xmlns:content=\"http://purl.org/rss/1.0/modules/content/\"\n";;
echo " xmlns:georss=\"http://www.georss.org/georss\";>\n";

-echo "<channel rdf:about=\"" . $rootUrl . "\">\n";
+echo "<channel rdf:about=\"" . calendar_absolute_url() . "\">\n";
echo " <title>" . $websiteName . " [ " . $region . " ]</title>\n";
echo " <description>" . $websiteSlogan . "</description>\n";
-echo " <link>" . $rootUrl . "</link>\n";
+echo " <link>" . calendar_absolute_url() . "</link>\n";
echo " <dc:language>fr</dc:language>\n";
echo " <dc:creator>" . $mailDomain . "</dc:creator>\n";


Modified: branches/generic/rsslist.php
==============================================================================
--- branches/generic/rsslist.php Mon Aug 2 22:25:38 2010 (r478)
+++ branches/generic/rsslist.php Mon Aug 2 23:40:29 2010 (r479)
@@ -69,13 +69,13 @@
par votre association, à partir du moment où vous pensez à marquer
tous vos évènements avec un tag précis.<br/>
Exemple:
- <code><?php echo $rootUrl; ?>/rss.php?tag=exemple</code>.
+ <code><?php echo calendar_absolute_url("/rss.php?tag=exemple"); ?></code>.
</li>

<li>Vous pouvez modifier la limite aux 30 prochains jours des flux
RSS en utilisant le paramètre <code>daylimit</code>.<br/>
Exemple:
- <code><?php echo $rootUrl; ?>/rss.php?region=6&amp;daylimit=42</code>
+ <code><?php echo
calendar_absolute_url("/rss.php?region=6&amp;daylimit=42"); ?></code>
</li>
</ul>


Modified: branches/generic/xmllistevents.php
==============================================================================
--- branches/generic/xmllistevents.php Mon Aug 2 22:25:38 2010 (r478)
+++ branches/generic/xmllistevents.php Mon Aug 2 23:40:29 2010 (r479)
@@ -75,7 +75,7 @@
$xml->writeElement("url", $event->url);
$xml->writeElement("tags", $event->tags);
$xml->writeElement("contact", $event->contact);
- $xml->writeElement("adlurl", $rootUrl . "/showevent.php?id=" . $event->id);
+ $xml->writeElement("adlurl", calendar_absolute_url("/showevent.php?id=" .
$event->id));
$xml->startElement("description");
$xml->writeCData($event->description);
$xml->endElement();




  • [Devel] r479 - in branches/generic: . adl-specific includes, svn, 02/08/2010

Archives gérées par MHonArc 2.6.16.

Haut de le page