11
Mamba
Re: extCal 2.24 RC ready for testing
  • 2011/5/1 0:47

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Quote:
i have the same problem like mjoel for this version

XOOPS and PHP version?
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

12
jimmyx
Re: extCal 2.24 RC ready for testing
  • 2011/5/1 12:11

  • jimmyx

  • Quite a regular

  • Posts: 338

  • Since: 2007/7/18


XOOPS Version XOOPS 2.5.1
PHP Version 5.3.6
mySQL Version 5.0.92-community

13
pablo103
Re: extCal 2.24 RC ready for testing
  • 2011/5/3 10:14

  • pablo103

  • Not too shy to talk

  • Posts: 181

  • Since: 2008/2/3 1


I d like to use it, but i have 200 events in piCal to import, any script which might help with this task?

14
btesec
Re: extCal 2.24 RC ready for testing
  • 2011/5/3 19:30

  • btesec

  • Friend of XOOPS

  • Posts: 623

  • Since: 2007/2/20


Hi Everyone,
Can some background coloring feature be added per event category or per event it would make it easier to identify events. It would be useful if colors can be selected by the admin for categories or the event creator for each event, whatever is best.

15
btesec
Re: extCal 2.24 RC ready for testing
  • 2011/5/3 19:50

  • btesec

  • Friend of XOOPS

  • Posts: 623

  • Since: 2007/2/20


Can we also have some ajax implementation where one can click to display or hide the various categories maybe use of tabs/buttons or checkboxes.

16
pablo103
Re: extCal 2.24 RC ready for testing
  • 2011/5/3 21:22

  • pablo103

  • Not too shy to talk

  • Posts: 181

  • Since: 2008/2/3 1


Does it permit to import events from PiCal?

17
josespi
Re: extCal 2.24 RC ready for testing
  • 2011/5/4 17:39

  • josespi

  • Just popping in

  • Posts: 31

  • Since: 2004/11/29


I have the same problem like mjoel and jimmyx for this version.

Extcal 2.4.4
Xoops 2.5.0
php 5.2.13

http://www.pastoraljuvenilperu.org/



18
josespi
Re: extCal 2.24 RC ready for testing
  • 2011/5/5 16:12

  • josespi

  • Just popping in

  • Posts: 31

  • Since: 2004/11/29


Manba:
I updated the complete translation to Spanish of extcal.
You can download fromhttp://www.planpasperu.org.pe/utiles/extcal_244_spanishutf8.zip

José Espinoza

19
josespi
Re: extCal 2.24 RC ready for testing
  • 2011/5/6 21:29

  • josespi

  • Just popping in

  • Posts: 31

  • Since: 2004/11/29


Fixed problem with editing and deleting EVENTS
Please. I'm not good with English so I'm adding in the end the Spanish version because here is helped by the Google´s translation.

To edit or delete events from the admin side.

In the file "modules \ extcal \ admin \ event.php" you have to change lines 141 and 142
echo '<img src="../images/edit.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_EDIT.'<br />';
 echo 
'<img src="../images/delete.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_DELETE;


with these lines (correcting the folder of the icons)
echo '<img src="../images/icons/edit.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_EDIT.'<br />';
 echo 
'<img src="../images/icons/delete.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_DELETE;


We must also replace 170 and 171 lines
echo '<a href="event.php?op=modify&amp;event_id='.$event['event_id'].'"><img src="../images/edit.png" /></a>&nbsp;&nbsp;'
 echo 
'<a href="event.php?op=delete&amp;event_id='.$event['event_id'].'"><img src="../images/delete.png" /></a>';


by these lines to correcting the same error
echo '<a href="event.php?op=modify&amp;event_id='.$event['event_id'].'"><img src="../images/icons/edit.png" /></a>&nbsp;&nbsp;';
 echo 
'<a href="event.php?op=delete&amp;event_id='.$event['event_id'].'"><img src="../images/icons/delete.png" /></a>';


To edit or delete events from the users side you have edit the template \modules\extcal\templates\extcal_event.html" in the line 8
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/print.gif" /></a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/edit.png" /></a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/delete.png" /></a><{/if}>


For the line
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/icons/print.gif" /></a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/icons/edit.png" /></a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/icons/delete.png" /></a><{/if}>


We must also add the folder icons in the following file and lines:
modules\extcal\admin\index.php lineas 171 y 172


José Espinoza



___________Spanish
SOLUCIONADO EL PROBLEMA DE EDICIÓN y BORRADO DE EVENTOS
Por favor. NO soy muy bueno con el ingles así al final estoy agregando la versión en Español ya que esta es una traducción ayudado por el google.

Para poder editar o borrar los eventos desde el lado de administración.

En el archivo "modules\extcal\admin\event.php" hay que cambiar las líneas 141 y 142
echo '<img src="../images/edit.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_EDIT.'<br />';
 echo 
'<img src="../images/delete.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_DELETE;



por estas líneas (corrigiendo la carpeta de los iconos respectivos)
echo '<img src="../images/icons/edit.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_EDIT.'<br />';
 echo 
'<img src="../images/icons/delete.png" style="vertical-align:middle;" />&nbsp;&nbsp;'._AM_EXTCAL_INFO_DELETE;


También hay que reemplazar las líneas 170 y 171
echo '<a href="event.php?op=modify&amp;event_id='.$event['event_id'].'"><img src="../images/edit.png" /></a>&nbsp;&nbsp;'
 echo 
'<a href="event.php?op=delete&amp;event_id='.$event['event_id'].'"><img src="../images/delete.png" /></a>';


por estas corrigiendo el mismo error
echo '<a href="event.php?op=modify&amp;event_id='.$event['event_id'].'"><img src="../images/icons/edit.png" /></a>&nbsp;&nbsp;';
 echo 
'<a href="event.php?op=delete&amp;event_id='.$event['event_id'].'"><img src="../images/icons/delete.png" /></a>';


Para editar o borrar eventos desde el lado del usuario hay que cambiar la linea 8
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/print.gif" /></a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/edit.png" /></a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/delete.png" /></a><{/if}>


por la siguiente linea
<a href="<{$xoops_url}>/modules/extcal/print.php?event=<{$event.event_id}>"><img src="images/icons/print.gif" /></a> <{if $isAdmin || $canEdit}><a href="edit_event.php?event=<{$event.event_id}>"><img src="images/icons/edit.png" /></a><{/if}> <{if $isAdmin}><a href="admin/event.php?op=delete&event_id=<{$event.event_id}>"><img src="images/icons/delete.png" /></a><{/if}>


Hay que agregar la carpeta ICONS en el siguiente archivo y lineas
modules\extcal\admin\index.php lineas 171 y 172



José Espinoza


20
Mamba
Re: extCal 2.24 RC ready for testing
  • 2011/5/6 22:16

  • Mamba

  • Moderator

  • Posts: 11366

  • Since: 2004/4/23


Excellent! Thank you very much for looking into it.

That's why we love to see community involvement - together we can make the improvements faster and better!

It has been now fixed in the SVN.

Thank you again!
Support XOOPS => DONATE
Use 2.5.10 | Docs | Modules | Bugs

Login

Who's Online

187 user(s) are online (101 user(s) are browsing Support Forums)


Members: 0


Guests: 187


more...

Donat-O-Meter

Stats
Goal: $100.00
Due Date: Mar 31
Gross Amount: $0.00
Net Balance: $0.00
Left to go: $100.00
Make donations with PayPal!

Latest GitHub Commits