The Joomla! Forum ™



Forum rules


Forum Rules
Absolute Beginner's Guide to Joomla! <-- please read before posting, this means YOU.
Forum Post Assistant - If you are serious about wanting help, you will use this tool to help you post.



Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2  Next
Author Message
PostPosted: Tue Aug 30, 2005 10:54 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
Hi,
I needed a way to integrate the DocLink feature into ExtCalendar, as a way of linking minutes of meetings to dates. Hopefully this may be of use to someone.

Step 0.5 - Install ExtCalendar and DocLink  :)

Step 1 - components\com_extcalendar\themes\default\theme.php
Somewhere at the top, add "global $mosConfig_live_site;".. I added it before $template_main_menu = <<
Replace
Code:
<textarea name='description' cols='50' rows='7' class='textarea'>{DESC_VAL}</textarea>

with
Code:
<textarea name='description' id='description' cols='50' rows='7' class='textarea'>{DESC_VAL}</textarea>


After
Code:
<img alt="Image" id="btnimage" class="btnOut" src="{THEME_DIR}/images/btn_image.gif" onMouseOver="changeClass('btnimage','btnOver')" onMouseOut="changeClass('btnimage','btnOut')" onMouseDown="changeClass('btnimage','btnDown')" onMouseUp="changeClass('btnimage','btnOver')" onClick="tag_image()">

add
Code:
<script language="JavaScript" type="text/javascript" src="{$mosConfig_live_site}/mambots/editors-xtd/doclink/doclink.js"></script>
<script language="JavaScript" type="text/javascript" src="{$mosConfig_live_site}/mambots/editors-xtd/doclink/doclink-cal.js"></script>
<script type="text/javascript">
<!--
// create the doclink plugin
var config  = new DOCLink.config();
config.includeURL = "{$mosConfig_live_site}/mambots/editors-xtd/doclink/";
config.language   = "en";
var doclink = new DOCLink_Cal(config);
//-->
</script>

<img alt="DocLink" id="btndoclink" class="btnOut" src="{$mosConfig_live_site}/mambots/editors-xtd/doclink/img/doc-link.gif" onMouseOver="changeClass('btndoclink','btnOver')" onMouseOut="changeClass('btndoclink','btnOut')" onMouseDown="changeClass('btndoclink','btnDown')" onMouseUp="changeClass('btndoclink','btnOver')" onClick="doclink.createDialog('description',null)">


Step 2 - Copy doclink-cal.js (in doclink-cal.zip, attached) to mambots\editors-xtd\doclink\

That's it!

Please pm bugs to me :)


You do not have the required permissions to view the files attached to this post.


Last edited by brad on Mon Oct 24, 2005 8:19 pm, edited 1 time in total.

Top
 Profile  
 
PostPosted: Tue Sep 20, 2005 6:17 am 
User avatar
Joomla! Guru
Joomla! Guru
Offline

Joined: Tue Aug 23, 2005 9:45 am
Posts: 687
Location: La Grande, Oregon
This looks great.  I appreciate all the hard work.  I haven't tested it after implementing the hack, but I hope it works great.  Please let us know if you find issues with this hack.  Thanks again.

_________________
From the beginning...


Top
 Profile  
 
PostPosted: Tue Sep 20, 2005 8:05 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
No problem, will do :)


Top
 Profile  
 
PostPosted: Wed Oct 12, 2005 4:20 pm 
Would something like that also work for including the akreservation bot (since doclink is a bot as well)?


Top
  
 
PostPosted: Wed Oct 12, 2005 11:39 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
If you tell me which bot, i'll try and glue ExtCal and it together somehow  :laugh:


Top
 Profile  
 
PostPosted: Thu Oct 13, 2005 12:50 pm 
That is a generous offer, indeed.   :)
The bot of AKReservations (http://developer.joomla.org/sf/sfmain/do/viewProject/projects.akreservations) is the one I was referring to. If nothing else, I'll be the guinea pig for it ;)

By the way. Your instructions above work as advertised. Great tip!


Last edited by mohpa on Thu Oct 13, 2005 6:55 pm, edited 1 time in total.

Top
  
 
PostPosted: Fri Oct 14, 2005 12:22 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
Is this kind of what you are looking for...
Image

:D

*snipped, better code below*

Have a go! If this isn't all the functionality you need, I'll play with it a bit more  :)


Last edited by cmeister2 on Sat Oct 15, 2005 10:08 am, edited 1 time in total.

Top
 Profile  
 
PostPosted: Fri Oct 14, 2005 5:16 pm 
Ah, you are a genious, and thank you taking your time playing around with it! It works, and the DocLink is also working.

Another little request (non-obligatory):
Can the entire signup process occur within the event view page? Can it still remain on the same page once someone clicks on the Verify button, instead of being transfered to another (blank) page?


Top
  
 
PostPosted: Fri Oct 14, 2005 5:24 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
I'm not entirely sure this is possible, sorry.. I did wonder why this happened (it happens to content items as well), and a cursory inspection shows that on clicking "Verify" it hands off control to the com_akreservations component. So I don't know if this is solvable with the current bot that they're using :)

Of course, i'm willing to be proved wrong!


Top
 Profile  
 
PostPosted: Sat Oct 15, 2005 5:31 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Mon Sep 05, 2005 5:29 am
Posts: 6
Hi,

nice work, but I would suggest to implement AKReservations it in another way.
Instead of making a call to the bot-function, better dispatch the content event.
-- If the bot function changes this solution won't work anymore
-- The call of the bot function does not respect the publish/unpublish state of the mambot.

Bye
AK

global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$results = $_MAMBOTS->trigger( 'onPrepareEventContent', array( , true );


Top
 Profile  
 
PostPosted: Sat Oct 15, 2005 10:07 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
Wonderful! Guess I need to read up on using mambots and triggering...

Anyway, with the above patch in mind:

From The Beginning: ExtCalendar and AKReservations

Step 0.5: Install ExtCalendar, AKReservations + bot
Step 1: components\com_extcalendar\themes\default\theme.php

In function theme_view_event{}, change

Code:
$params = array(
         '{BACK_LINK}' => $is_popup?"self.close();":"location.href='".$REFERER."'",
         '{BACK_BUTTON}' => $is_popup?$lang_general['close']:$lang_general['back'],
         '{PICTURE}' => $picture,
         '{BG_COLOR}' => $event->color,
         '{CAT_NAME}' => $event->catName,
         '{CAT_LINK}' => $cat_link_URL,
         '{CAT_DESC}' => $event->catDesc,
         '{CATEGORY_COLOR_SPACER_IMAGE_HEIGHT}' => ($event->isRecurrent() && $CONFIG_EXT['show_recurrence_info_event_view'] && !$noduration ) ? '60' : '40',
         '{EVENT_START_DATE_LABEL}' => $lang_event_view['event_start_date'].":",
         '{EVENT_DURATION_LABEL}' => $lang_event_view['event_duration'].":",
         '{EVENT_RECURRENCE_LABEL}' => $lang_add_event_view['repeat_event_label'].":",
         '{EVENT_START_DATE}' => ucwords(strftime($date_mask, $event->startDate)),
         '{EVENT_DURATION}' => $durationString,
         '{EVENT_RECURRENCE}' => mf_get_recurrence_info_string($event),
         '{CONTACT_INFO_LABEL}' => $lang_event_view['contact_info'].":",
         '{CONTACT_INFO}' => $event->contact,
         '{CONTACT_EMAIL_LABEL}' => $lang_event_view['contact_email'].":",
         '{CONTACT_EMAIL}' => $event->email,
         '{CONTACT_URL_LABEL}' => $lang_event_view['contact_url'].":",
         '{CONTACT_URL}' => $event->link,
         '{CONTACT_URL_TARGET}' => $CONFIG_EXT['url_target_for_events'],
         '{EVENT_DESC}' => $event->description,
      );

to
Code:
$max=$event->description;
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup( 'content' );
$results = $_MAMBOTS->trigger( 'onPrepareEventContent', array(&$max) ,true );
      
      $params = array(
         '{BACK_LINK}' => $is_popup?"self.close();":"location.href='".$REFERER."'",
         '{BACK_BUTTON}' => $is_popup?$lang_general['close']:$lang_general['back'],
         '{PICTURE}' => $picture,
         '{BG_COLOR}' => $event->color,
         '{CAT_NAME}' => $event->catName,
         '{CAT_LINK}' => $cat_link_URL,
         '{CAT_DESC}' => $event->catDesc,
         '{CATEGORY_COLOR_SPACER_IMAGE_HEIGHT}' => ($event->isRecurrent() && $CONFIG_EXT['show_recurrence_info_event_view'] && !$noduration ) ? '60' : '40',
         '{EVENT_START_DATE_LABEL}' => $lang_event_view['event_start_date'].":",
         '{EVENT_DURATION_LABEL}' => $lang_event_view['event_duration'].":",
         '{EVENT_RECURRENCE_LABEL}' => $lang_add_event_view['repeat_event_label'].":",
         '{EVENT_START_DATE}' => ucwords(strftime($date_mask, $event->startDate)),
         '{EVENT_DURATION}' => $durationString,
         '{EVENT_RECURRENCE}' => mf_get_recurrence_info_string($event),
         '{CONTACT_INFO_LABEL}' => $lang_event_view['contact_info'].":",
         '{CONTACT_INFO}' => $event->contact,
         '{CONTACT_EMAIL_LABEL}' => $lang_event_view['contact_email'].":",
         '{CONTACT_EMAIL}' => $event->email,
         '{CONTACT_URL_LABEL}' => $lang_event_view['contact_url'].":",
         '{CONTACT_URL}' => $event->link,
         '{CONTACT_URL_TARGET}' => $CONFIG_EXT['url_target_for_events'],
         '{EVENT_DESC}' => $max,
      );


Step 2: Insert an event into ExtCalendar in the form {akreserv,category_name}

And, um, thats it! :D at least for the moment


Last edited by cmeister2 on Tue Oct 25, 2005 12:35 am, edited 1 time in total.

Top
 Profile  
 
PostPosted: Thu Dec 29, 2005 1:14 am 
cmeister2, hello again

Wanted to thank you on your work, and ask you another question.
The AKReservation bot is working fine, and as much as I can gather the following code is supposed to gather the mambots (or bots) of type content
Code:
$_MAMBOTS->loadBotGroup( 'content' );


For some reason, the same does not hold true for FacileForms's bot, even though it is listed as a content bot. Do you have any suggestions on what to look for?


Top
  
 
PostPosted: Tue Jan 03, 2006 5:33 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Oct 04, 2005 4:24 am
Posts: 29
being a newbie, i'm intrigued with the integration of extcalendar with the akreservations bot.  cmeister2, if you let me know if i understand using this set-up correctly;

1st - create event in akreservations
2nd - create an event in extcalendar but use the {akreserv,category_name} for the details of the event?
3rd - when a person clicks on a particular event in extcalendar it will call the info from akreservations?

if this is correct, then i'll try my hand and hacking the code and putting it into practice -
if i'm way off here, then hopefully you'll be able to walk me through later :0

jamaicabob


Top
 Profile  
 
PostPosted: Tue Jan 03, 2006 1:39 pm 
Hi jamaicabob,

ceister2's hack works fine, I use it on my site. The reason I was asking for the FacileForms bot is that FF supports many fields, in conjunction with a superb presentation of the form (mainly tabbed interface and custom text).


Top
  
 
PostPosted: Tue Jan 03, 2006 2:13 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
Apologies for the slightly cryptic nature of the above code post. Here's my attempt to simplify it.

  • Create a category in AKReservations backend (eg: id=myreservation)
  • Create a session in the category you created (eg: id=mysession). Make it available for reservations
  • Create an item in the category you created (eg: id=myitem) and Save
  • Create a new event in ExtCal with description text {akreserv,myreservation} (replacing myreservation with the id you chose)
  • Once this is approved, you get a screen similar to the one below
Image
('default session' and 'default item' are my session and item's descriptions)

This then passes control to the AKReservations component, which handles the reservation.

I don't pretend to know everything about AKReservations, so i may have missed out some settings. But this appears to work for me  :)


Top
 Profile  
 
PostPosted: Tue Jan 03, 2006 3:39 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
And regarding FacileForms:
Thanks to little bit of code-pilferage from botAKReservations I got this working.

Step 0.5: Install ExtCalendar, FacileForms + Bot
Step 1: Insert the code in post in the correct place.
Step 2: In mambots/content/bot_facileforms.php

Insert at the bottom of the code, above the ?>
Code:
class fac_integrate_ev {
  var  $text;
  function fac_integrate_ev(&$text) {
      $this->text = $text;
  } 
}
function botFacileFormsEV( $published, &$content ) {
 $nullparams = array();
 $contentrow = new fac_integrate_ev($content);
 botFacileForms($published, $contentrow, $nullparams);
 $content = $contentrow->text;
}

and AFTER
Code:
$_MAMBOTS->registerFunction( 'onPrepareContent', 'botFacileForms' );
INSERT
Code:
$_MAMBOTS->registerFunction( 'onPrepareEventContent', 'botFacileFormsEv' );


This means it will be triggered by the same call as the AKReservation bot.
Obligatory Screenshot:
Image

:D


Last edited by cmeister2 on Tue Jan 03, 2006 4:34 pm, edited 1 time in total.

Top
 Profile  
 
PostPosted: Tue Jan 03, 2006 4:24 pm 
I must be doing something wrong:
Is the above mentioned code insertion only refering to the bot_facileforms.php? The first code snippet I inserted into the bot_facileforms.php file, as instructed.
This code
Code:
$_MAMBOTS->registerFunction( 'onPrepareContent', 'botAKReserv' );
, obviously, is not part of the bot_facileform.php file, so where do I insert
Code:
$_MAMBOTS->registerFunction( 'onPrepareEventContent', 'botAKReservEv' );
? :'(


Top
  
 
PostPosted: Tue Jan 03, 2006 4:34 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
Whoops... that should be botFacileForms and botFacileFormsEv... changed in code above  :D


Top
 Profile  
 
PostPosted: Tue Jan 03, 2006 6:01 pm 
Heh, that did it. I really appreciate your help in this matter. It works seemleasly.
Thank you very much.


Top
  
 
PostPosted: Wed Jan 11, 2006 8:19 am 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Wed Jan 11, 2006 8:12 am
Posts: 1
I use your way to integrate extcal and akreservation on Joomla. It works fine. However, when I tried it on Mambo4.5.2.3, it failed. I am using AKreservation 1.2 on Mambo 4.5.2.3. Would you please help me? I don't want to change mambo to Joomla at the moment.


Top
 Profile  
 
PostPosted: Tue Jan 17, 2006 10:07 pm 
User avatar
Joomla! Explorer
Joomla! Explorer
Offline

Joined: Fri Aug 19, 2005 2:37 am
Posts: 270
Location: Milwaukee, WI
Very nice work.  I just got this to work with the Event List component http://developer.joomla.org/sf/projects/event_list

In /components/com_eventlist/eventslist.html.php on line 563 make the
look like this:

Code:
    <td colspan='3'><?php
      if (($row->datdescription == "") || ($row->datdescription == "<br />")) {
         echo _EVENTS_DESCALERT." " ;
      } else {
      $max=$row->datdescription;
      global $_MAMBOTS;
      $_MAMBOTS->loadBotGroup( 'content' );
      $results = $_MAMBOTS->trigger( 'onPrepareEventContent', array(&$max) ,true );
         echo $max;
      
      } ?>
   </td>

_________________
Web Geek Cafe - development and Joomla coaching webgeekcafe.org
YourTribe.com - group social events - yourtribe.com


Top
 Profile  
 
PostPosted: Tue Jan 17, 2006 10:12 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
That's what I like to see! I'm fairly sure this approach could be used all over the place :D


Top
 Profile  
 
PostPosted: Fri Feb 10, 2006 1:56 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Sep 14, 2005 2:30 am
Posts: 27
Location: Boston
Hi all,

Is there a universal solution to making bots function in components? After seeing scubaguy's adaptation of this hack for a different component than the original, it seems hopeful. Can this code snippet be dropped into other components as well?

Specifically, I'm looking to get doclink and glossarbot to work in events, jobline, joomlaboard, categories and sections-- but if it was a universal solution, other useful bots could be applied to other useful components.

I've never really understood why this functionality wasn't built-in to begin with. But that's more to my ignorance of programing design and integrity. This is a huge step in the right direction!

Any thoughts?


Top
 Profile  
 
PostPosted: Fri Feb 10, 2006 2:40 pm 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Fri Aug 19, 2005 9:38 am
Posts: 109
I'm fairly sure that if you hack the mambot you want to have in your component to respond to the OnPrepareEventContent (or whatever a universal name would be) and paste in the compatability code (class fac_integrate_ev {... etc) then add in code similar to
Code:
$max="sometext";
global $_MAMBOTS;
      $_MAMBOTS->loadBotGroup( 'content' );
      $results = $_MAMBOTS->trigger( 'onPrepareEventContent', array(&$max) ,true );
         echo $max;
it will output your mambotted content. It probably would be good to have a place where we could have patches for popular components so people can just drop this functionality into existing code. And if component-writers supported a common solution then that would be great!
But I'm rambling now. The functionality is available to all code atm... It just requires someone to go through and work out where they want their code to be parsed (usually description fields or forum posts). We obviously already have DocLink and AKReservations for the Mambots, and ExtCalendar and Event List for the components, so getting some more components in that list would be good.


Top
 Profile  
 
PostPosted: Mon Feb 20, 2006 9:11 pm 
User avatar
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Sun Oct 30, 2005 1:39 am
Posts: 24
Location: Denmark
Mmm - great work!  Thanks, scubaguy, for referring me to this thread!

At my site (http://www.supersquares.dk), I want to limit the reservations to those I "know", so fields already known from ComBuilder entries should be auto-filled w/ existing information.

So, Q:  WhatIf you also want to carry over user information from ComBuilder to this mix of ExtCal and AKReservations?

Yours
Per Hertz


Top
 Profile  
 
PostPosted: Fri Mar 10, 2006 12:09 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Fri Mar 10, 2006 11:07 am
Posts: 2
Location: Stockholm, Sweden
scubaguy wrote:
Very nice work.  I just got this to work with the Event List component http://developer.joomla.org/sf/projects/event_list

In /components/com_eventlist/eventslist.html.php on line 563 make the
look like this:

Code:
    <td colspan='3'><?php
      if (($row->datdescription == "") || ($row->datdescription == "<br />")) {
         echo _EVENTS_DESCALERT." " ;
      } else {
      $max=$row->datdescription;
      global $_MAMBOTS;
      $_MAMBOTS->loadBotGroup( 'content' );
      $results = $_MAMBOTS->trigger( 'onPrepareEventContent', array(&$max) ,true );
         echo $max;
      
      } ?>
   </td>



Hi there Scubaguy.

Been trying to implement this hack, but the line you stated in the document, 563, does not correspond with my document.
Could you perhaps show the original code first and the a "change to" code statement?

Thanx beforehand

// Fredrik

Top
 Profile  
 
PostPosted: Tue Mar 21, 2006 5:17 pm 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Wed Mar 15, 2006 3:14 am
Posts: 8
Can this strategy be used to link ExtCalendar items to Events List items?

I'm working on a site that will have two levels of events (1) those that warrant full, multi-paragraph descriptions (and possibly reservations) and (2) those that don't.  It would be great to include all of the events in ExtCalendar and include a link "For more information and reservations".

I like the graphic front end of ExtCalendar and individual item detail of Events List, so I'm trying to marry the two to solve this issue.


Top
 Profile  
 
PostPosted: Mon Mar 27, 2006 8:37 am 
Joomla! Apprentice
Joomla! Apprentice
Offline

Joined: Tue Oct 11, 2005 10:55 pm
Posts: 9
Hi there!
i have a problem: how can i get this to work: i want my registerd users to create events themselves with extcalender2, and there should be a check box or smthg like that, to choose, if other useres can register to this event (via akreservation) if they enable this, the reservation should be poped up, or open somehow and the reservation is set up there

the probelm is, that my community users just should see one page where they all can handle this.. not via 3 forrms at different  pages :-(
so a reservation should be created automaticly, and connected to this new event...

i hope you understand what i mean.

1. create a new event
2. check if a reservation is necessary to others
3. if yes: create a reservation automatically
4. if another user wants to register for this event, it should be via akreservation
5. registerd users should see, who allready is registerd to this event

the solution above in this thread is cool, but i thin there are too many steps and most important: i want every registered user to do this, not just admins.

can someone help me? has somerone seen a solution for this? or how can a fix this myself?
my php-knowledge is very poorl, you should know :-)


Top
 Profile  
 
PostPosted: Sun Apr 02, 2006 9:41 am 
User avatar
Joomla! Enthusiast
Joomla! Enthusiast
Offline

Joined: Mon Mar 20, 2006 12:48 am
Posts: 167
Location: UK
drnorton wrote:
Hi there!
i have a problem: how can i get this to work: i want my registerd users to create events themselves with extcalender2, and there should be a check box or smthg like that, to choose, if other useres can register to this event (via akreservation) if they enable this, the reservation should be poped up, or open somehow and the reservation is set up there

the probelm is, that my community users just should see one page where they all can handle this.. not via 3 forrms at different  pages :-(
so a reservation should be created automaticly, and connected to this new event...

i hope you understand what i mean.

1. create a new event
2. check if a reservation is necessary to others
3. if yes: create a reservation automatically
4. if another user wants to register for this event, it should be via akreservation
5. registerd users should see, who allready is registerd to this event

the solution above in this thread is cool, but i thin there are too many steps and most important: i want every registered user to do this, not just admins.

can someone help me? has somerone seen a solution for this? or how can a fix this myself?
my php-knowledge is very poorl, you should know :-)


Same here. I've installed a whole heap of coms, mods and bots, yet no member is able to do what I want: set up an event.

_________________
Moved from Joomla to Drupal
http://forum.joomla.org/index.php/topic ... #msg333361


Top
 Profile  
 
PostPosted: Sun Apr 02, 2006 8:28 pm 
Joomla! Fledgling
Joomla! Fledgling
Offline

Joined: Sun Apr 02, 2006 7:44 pm
Posts: 1
Hi there,

Thank you for this helpfull topic.
I made the integration of ak res bot in extcalendar and it works fine.

But now, i have another question : is there a way to have the date from extcalendar in ak reservation?
My goal is to populate the date in an e-mail to the manager of the category?
It can perhaps be stored within a custom field of an ak session but i'm not good enough to make the modification in the php files....
Is there someone how atempt the same ?

Best regards from "Un fauteuil à la Mer" falam.dnsalias.net
Jean-Luc


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 36 posts ]  Go to page 1, 2  Next



Who is online

Users browsing this forum: No registered users and 5 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Jump to:  
Powered by phpBB® Forum Software © phpBB Group