Accéder au contenu.
Menu Sympa

devel - [Devel] r469 - in branches/generic: . includes

Objet : devel-adl

Archives de la liste

[Devel] r469 - in branches/generic: . includes


Chronologique Discussions 
  • From: svn AT agendadulibre.org
  • To: devel AT agendadulibre.org
  • Subject: [Devel] r469 - in branches/generic: . includes
  • Date: Wed, 21 Jul 2010 23:41:44 +0200 (CEST)
  • List-archive: <http://agendadulibre.org/pipermail/devel>
  • List-id: Developpement de l'Agenda du Libre <devel.agendadulibre.org>

Author: ploc
Date: Wed Jul 21 23:41:43 2010
New Revision: 469

Log:
small fixes

Modified:
branches/generic/includes/funcs.inc.php
branches/generic/showevent.php
branches/generic/testevent.php
branches/generic/validateevent.php
branches/generic/xmllistevents.php

Modified: branches/generic/includes/funcs.inc.php
==============================================================================
--- branches/generic/includes/funcs.inc.php Wed Jul 21 23:11:33 2010
(r468)
+++ branches/generic/includes/funcs.inc.php Wed Jul 21 23:41:43 2010
(r469)
@@ -152,10 +152,12 @@

function put_footer ()
{
+global $moderatorMail;
+
?>
</div>
<div class="footer">
-<p><a href="submit.php">Proposer un évènement</a> - <a
href="rsslist.php">Flux RSS</a> - <a href="icallist.php">Calendriers iCal</a>
- <a href="map.php">Carte</a> - <a href="tags.php">Tags</a> - <a
href="infos.php">Informations</a> - <a href="stats.php">Statistiques</a> - <a
href="mailto:<?php echo $moderatorlist; ?>">Contact</a> - <a
href="moderation.php">Modération</a></p>
+<p><a href="submit.php">Proposer un évènement</a> - <a
href="rsslist.php">Flux RSS</a> - <a href="icallist.php">Calendriers iCal</a>
- <a href="map.php">Carte</a> - <a href="tags.php">Tags</a> - <a
href="infos.php">Informations</a> - <a href="stats.php">Statistiques</a> - <a
href="mailto:<?php echo scramble_email($moderatorMail); ?>">Contact</a> - <a
href="moderation.php">Modération</a></p>
</div>
</body>
</html>

Modified: branches/generic/showevent.php
==============================================================================
--- branches/generic/showevent.php Wed Jul 21 23:11:33 2010 (r468)
+++ branches/generic/showevent.php Wed Jul 21 23:41:43 2010 (r469)
@@ -20,10 +20,13 @@
* 02111-1307, USA.
*/

+include("config/config.inc.php");
include("includes/bd.inc.php");
include("includes/funcs.inc.php");
include("includes/session.inc.php");

+global $localGroupName;
+
$db = new db();
$session = new session();


Modified: branches/generic/testevent.php
==============================================================================
--- branches/generic/testevent.php Wed Jul 21 23:11:33 2010 (r468)
+++ branches/generic/testevent.php Wed Jul 21 23:41:43 2010 (r469)
@@ -20,6 +20,7 @@
* 02111-1307, USA.
*/

+include("config/config.inc.php");
include("includes/bd.inc.php");
include("includes/funcs.inc.php");


Modified: branches/generic/validateevent.php
==============================================================================
--- branches/generic/validateevent.php Wed Jul 21 23:11:33 2010 (r468)
+++ branches/generic/validateevent.php Wed Jul 21 23:41:43 2010 (r469)
@@ -19,6 +19,7 @@
* 02111-1307, USA.
*/

+include("config/config.inc.php");
include("includes/bd.inc.php");
include("includes/funcs.inc.php");
include("includes/session.inc.php");
@@ -62,7 +63,7 @@
calendar_mail ($row->submitter,
"Évènement '" . $row->title . "' modéré",
"Bonjour,\n\n" .
- wordwrap("L'évènement que vous avez soumis a été modéré par
" . $user->get_name() . ". Il est maintenant visible dans l'Agenda à
l'adresse : \n") .
+ wordwrap("L'évènement que vous avez soumis a été modéré par
" . $user->get_name() . ". Il est maintenant visible dans l'agenda à
l'adresse : \n") .
" " . $link . "\n\n" .
wordwrap("Vous pouvez modifier cet évènement ultérieurement
pour y ajouter des précisions en vous rendant à l'adresse :\n") .
" " . calendar_absolute_url("editevent.php?id=" . $id .
"&secret=" . $secret) . "\n\n" .
@@ -74,7 +75,7 @@
$row->description, $row->city,
$row->region, $row->locality,
$row->url, $row->contact,
$row->submitter, $row->tags) . "\n" .
"=====================================================\n\n" .
- "Merci de votre contribution à l'Agenda du Libre et à
bientôt !\n\n".
+ "Merci de votre contribution à l'" . $websiteName . " et à
bientôt !\n\n".
"-- \nL'équipe de modération",
/* id */ "", $row->submitter_mail_id);


Modified: branches/generic/xmllistevents.php
==============================================================================
--- branches/generic/xmllistevents.php Wed Jul 21 23:11:33 2010 (r468)
+++ branches/generic/xmllistevents.php Wed Jul 21 23:41:43 2010 (r469)
@@ -19,8 +19,9 @@
* 02111-1307, USA.
*/

-include("includes/bd.inc.php");
-include("includes/funcs.inc.php");
+include("config/config.inc.php");
+include("bd.inc.php");
+include("funcs.inc.php");

if ($_GET['tag'] && ereg("^[a-z0-9\-]*$", $_GET['tag']))
$tag = $_GET['tag'];
@@ -74,7 +75,7 @@
$xml->writeElement("url", $event->url);
$xml->writeElement("tags", $event->tags);
$xml->writeElement("contact", $event->contact);
- $xml->writeElement("adlurl",
"http://www.agendadulibre.org/showevent.php?id="; . $event->id);
+ $xml->writeElement("adlurl", "http://"; . $websiteUrl .
"/showevent.php?id=" . $event->id);
$xml->startElement("description");
$xml->writeCData($event->description);
$xml->endElement();




  • [Devel] r469 - in branches/generic: . includes, svn, 21/07/2010

Archives gérées par MHonArc 2.6.16.

Haut de le page