Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - lukacsp

Pages: [1]
1
Older versions / [1.6.2] Google ics calendar parse error
« on: April 27, 2010, 01:34:21 pm »
Hi,

I tried to import my calendar to Google Calendar, but it failed with parse error.

The problem was that my exported ics file containts this:


BEGIN:VCALENDAR
VERSION:2.0
PRODID:PHP
METHOD:REQUEST
X-WR-CALNAME:Lukács Péter
BEGIN:VTIMEZONE
TZID:(GMT+2:00) Athén, Isztanbul, Minszk, Helsinki, Jeruzsálem, Dél-Afrika
BEGIN:STANDARD
TZOFFSETFROM:0200
TZOFFSETTO:0200
END:STANDARD
END:VTIMEZONE


But it should look like this:


BEGIN:VCALENDAR
VERSION:2.0
PRODID:PHP
METHOD:REQUEST
X-WR-CALNAME:Lukács Péter
BEGIN:VTIMEZONE
TZID:(GMT+2:00) Athén, Isztanbul, Minszk, Helsinki, Jeruzsálem, Dél-Afrika
BEGIN:STANDARD
TZOFFSETFROM:+0200
TZOFFSETTO:+0200

END:STANDARD
END:VTIMEZONE


I modified the \environment\classes\event\CalFormatUtilities.php to add the extra + character, but im not sure why is it missing. May i missed to set up something related to my timezone or what? I using feng office in a windows 2003 server by the way.

Is it a bug or a user error? ;) Thanks...


2
Hi,

utf-8 is our global settings (for sending emails too). Its working fine, but...
The received mail's subject is perfect, but the body (at least on MS Outlook) looks like this:

"Kérlek állítsd át c5ket, "

its supposed to be like this:

"Kérlek állítsd át őket, "

Im hungarian, and we using some special characters: ő Ő, ű, Ű. I know that the latin1 code page contains every hungarian letters except this 4, maybe its related to it somehow... any clue? This code below is from an utf8-conversion function:

HUNGARIAN 'ő' = char(197) + char(145)) --c5 91
HUNGARIAN 'Ő' = char(197) + char(144)) --c5 90
HUNGARIAN 'ű' = char(197) + char(177)) --c5 b1
HUNGARIAN 'Ű' = char(197) + char(176)) --c5 b0


Another observation:

When i trying to forward a message in feng office, and i switch from HTML to plain text, its look like this:

"Kérlek állítsd át őket"

The special characters converted to html entities except the ő character...

Update:

I saved the original mail (i forwarded this mail in my tests)  from Feng Office, and the sentence above looks like this:

"K=E9rlek =E1ll=EDtsd =E1t =F5ket"

So my character encoding problem is related with the mail writing process...

***

If it can be repaired with a quick swiftmailer hack, thats enough for me ;)

Thanks!

3
Hi,

I found a missing translation in application\helpers\application.php in line 1192: 

html += \' before. \';

should be:

html += \' \' + lang("before") + \'. \';

(i prefer spaces next to selects)

I found another missing translation (or two) in the linked objects dialog, but i cant find it. I attached a picture with that.

Please update the upcoming release, thanks,

Bye!



4
Magyar / Hungarian (magyar)
« on: December 22, 2008, 01:28:45 pm »
Hi, i want to inform you that i started the translation of this awesome application to hungarian, im currently at  80-90% so it will be done in 1-2 weeks.

Üdv, láttam, hogy vannak itt magyarok is, ezért szólok, hogy akit érdekel, nemsokára befejezem (1-2 hét) a rendszer teljes fordítását magyarra.
Jó lenne, ha tudna valaki segíteni a kifejezések pontosításában, illetve abban, hogy hol térjünk el a szó szerinti fordítástól, és próbáljunk meg inkább érthető információkat és utasításokat közölni :)

Pages: [1]