[Bug 16074] New: Configuration of a service can not be stored (Done button has no respnse)
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=16074
Summary: Configuration of a service can not be stored (Done
button has no respnse)
Classification: MeeGo Projects
Product: SyncEvolution
Platform: ---
Version: unspecified
Platform: Common
Architecture: ---
Status: NEW
Severity: normal
Priority: Undecided
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: caco3(a)ruinelli.ch
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
When selecting a service and open it for editing, the done button has no
action.
The terminal shows that there is an error:
--------------------
Traceback (most recent call last):
File "/opt/syncevolution/syncfe.py", line 565, in edit_server
self.init_server_edit()
File "/opt/syncevolution/syncfe.py", line 806, in init_server_edit
source_config["evolutionsource"] = base_list[idx][1]
IndexError: list index out of range
---------------------
Interestingly, if run as root, it works fine.
Looking for differences, I see that (if run as root), the following entry in
the config window is missing:
calendar+todo database
As a quick workaround, replace line 806-807 in syncfe.py with (see attachment):
---------------------
if(idx<0): #Workaround by George Ruinelli
print "index out of range"
else:
source_config["evolutionsource"] = base_list[idx][1]
self.sync.set_source_config(config, name, source_config)
---------------------
OS: Maemo 1.3
SyncEvolution: 0.9
syncevolution: 1.1.1-1
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
8 years, 6 months
[MeeGo Projects - Bug 13513] New: Sync history tries to load the wrong file (no such file name)
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=13513
Summary: Sync history tries to load the wrong file (no such
file name)
Classification: MeeGo Projects
Product: SyncEvolution
Version: unspecified
Platform: All
Architecture: ---
Status: NEW
Severity: normal
Priority: Undecided
Component: Maemo 5
AssignedTo: ovek(a)debian.org
ReportedBy: dbet1(a)gmx.net
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-maemo5-bugs(a)meego.bugs
Estimated Hours: 0.0
HARDWARE MODEL (on what HW this bug is uncovered): Nokia N900
BUG DETAILED DESCRIPTIONS
===========================================================
EXACT STEPS LEADING TO PROBLEM:
(Explain in detail what you do (e.g. tap on OK) and what you see (e.g. message
Connection Failed appears))
===========================================================
1. doing a sync using the Synchronize! button
2. tap on the View Synchronization History button
3. choose the entry 10.02.2011 10:45:12 [Success]
4. the browser shows an error: file
/home/user/.cache/syncevolution/memotoo/2011-02-10-10-45/sysynclib_linux.html#H1
not found
EXPECTED OUTCOME:
===================
The synchronization history from 10.02.2011 14:45:12 is showing.
ACTUAL OUTCOME:
===================
Error message from the browser.
USER IMPACT:
===================
REPRODUCIBILITY:
always
=====================================
EXTRA SOFTWARE INSTALLED:
============================
OTHER COMMENTS:
===================
The name of the file on this directory is not sysynclib_linux.html, instead its
name is syncevolution-log.html.
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching someone on the CC list of the bug.
8 years, 6 months
[Bug 17345] New: transcode PHOTO data = avoid contact rejections by phones
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=17345
Summary: transcode PHOTO data = avoid contact rejections by
phones
Classification: MeeGo Projects
Product: SyncEvolution
Platform: ---
Version: unspecified
Platform: Common
Architecture: ---
Status: NEW
Severity: enhancement
Priority: Undecided
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: patrick.ohly(a)intel.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
From: Patrick Ohly <patrick.ohly(a)intel.com>
Cc: syncevolution(a)syncevolution.org <syncevolution(a)syncevolution.org>
Subject: Re: [SyncEvolution] Contacts rejected by peer - PHOTO size and
encoding
Date: Mon, 18 Apr 2011 09:14:49 +0100 (18.04.2011 10:14:49)
On Fr, 2011-04-15 at 06:59 +0100, Hevï Guy wrote:
> Once I finally set-up Syncevolution 1.1.1-2 so that I could at least
> do a one-way refresh of "Contacts" to my Nokia N86 8MP, I found that
> certain contacts would not sync; The resulting comment in the GUI was:
> "There were 22 remote rejections". Has anybody else experienced this?
> More importantly, has anybody found a solution?
Hevï sent me his log files. There were two problems:
1. Some contacts had photos that were so large that the contact
exceeded the maximum contact size supported by the phone (for
example, 206653 bytes where only 102400 = 100KB allowed).
2. Other contacts with photo are sent, but the phone reports an
error (415 status).
Hevï, were other contacts with photos transferred? The log only contains
the problematic contacts, so I cannot tell.
Do you see a relevant difference between a contact that was transferred
with photo and one which wasn't? Photo size or encoding (PNG vs. JPG,
for example)? If unsure, please send me the saved vCard of a contact
which was transferred okay.
The underlying question is this:
* Should PHOTO data be transcoded as part of syncing? This is
necessary at least for case 1 above and might also help with
case 2.
It could be added, but that leads to further questions:
* How does SyncEvolution decide which kind of PHOTO data will be
accepted by the peer? Resolution, format, ...
* If a photo was transcoded, how will SyncEvolution deal with an
updated photo sent by the peer?
A. Overwrite photo locally: allows updating photos on the
peer, but implies that a potentially higher resolution
version of the same photo gets overwritten when only
some other properties were modified.
B. Always preserve local photo data: adding a photo on the
peer would be possible, but not updating it.
Possible answers:
* Only transcode if it is detected during a sync that photos had
problems.
* Hard-code certain profiles, match them to DevInf reported by
device (based on max item size, for example).
* Preserve local photo data if transcoding was necessary.
--------
Product: SyncEvolution
Component: SyncEvolution
MeeGo Release: unspecified
Severity: enhancement
Priority: Undecided
Keywords:
Status: NEW
Who: patrick.ohly(a)intel.com
Assigned To: syncevolution-bugs(a)meego.bugs
Target Build: ---
Flags:
Changed:
--------
https://bugs.meego.com/show_bug.cgi?id=17345
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
8 years, 6 months
[Bug 14891] New: [pretest] Mobical.net is changed to everdroid.com
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=14891
Summary: [pretest] Mobical.net is changed to everdroid.com
Classification: MeeGo Projects
Product: SyncEvolution
Version: unspecified
Platform: All
Architecture: ---
Status: NEW
Severity: major
Priority: High
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: jingke.zhang(a)intel.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
Created an attachment (id=5109)
--> (https://bugs.meego.com/attachment.cgi?id=5109)
everdroid service
BUILD IMAGE: BUILD IMAGE:: meego-netbook-ia32-1.1.90.8.20110323.1
HARDWARE MODEL (on what HW this bug is uncovered): netbook
BUG DETAILED DESCRIPTIONS
===========================================================
We failed to do two-way sync with mobical. Then, log on to its website, find
the www.mobical.net is automatically redirected to www.everdroid.com (please
see attachment).
Developer, please confirm that change. If so, we need to know: will we support
mobical in the future? High priority to get answer. Thanks!
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
8 years, 6 months
[Bug 16693] New: The "Direct sync" function fails(Bluetooth)
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=16693
Summary: The "Direct sync" function fails(Bluetooth)
Classification: MeeGo Projects
Product: SyncEvolution
Platform: ---
Version: unspecified
Platform: Common
Architecture: ---
Status: NEW
Severity: normal
Priority: Undecided
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: rextsai(a)linpus.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
BUILD IMAGE(X.X.XX.X.XXXXXXXX.X - (e.g.:
meego-netbook-ia32-1.0.90.0.20100831.1)):
HARDWARE MODEL (on what HW this bug is uncovered):
BUG DETAILED DESCRIPTIONS
===========================================================
The "Direct sync" function fails(Bluetooth).
EXACT STEPS LEADING TO PROBLEM:
(Explain in detail what you do (e.g. tap on OK) and what you see (e.g. message
Connection Failed appears))
===========================================================
1.In Bluetooth panel, search bluetooth devices and pair successful
2.Launch "Sync" application
3.Press "Select sync service" button
4.In Direct sync, no show any devices.
5.
EXPECTED OUTCOME:
===================
In Direct sync, show devices.
ACTUAL OUTCOME:
===================
In Direct sync, no show any devices.
USER IMPACT:
===================
REPRODUCIBILITY:
(always, less than 1/10, 5/10, 9/10)
=====================================
EXTRA SOFTWARE INSTALLED:
============================
OTHER COMMENTS:
===================
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
8 years, 9 months
[Bug 14804] New: hard-coded rule and code for "supports UID"
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=14804
Summary: hard-coded rule and code for "supports UID"
Classification: MeeGo Projects
Product: SyncEvolution
Version: unspecified
Platform: All
Architecture: ---
Status: NEW
Severity: normal
Priority: High
Component: SyncEvolution
AssignedTo: patrick.ohly(a)intel.com
ReportedBy: patrick.ohly(a)intel.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
Currently the local sync code assumes that both sides have a real, persistent,
creator-assigned UID (as in iCalendar 2.0).
This is not the case for all peers, even those using iCalendar 2.0.
It would be nice if we could use some CtCap extensions which says "yes, I
really support real UIDs" in contrast to just saying "I have a UID property".
Depends on changes in libsynthesis and SyncEvolution.
The code also uses a rather ugly pre-processing step of the config:
commit 391e1fd5554fd09597ca3eb626a308db497ec61a
Author: Patrick Ohly <patrick.ohly(a)intel.com>
Date: Tue Nov 16 12:21:08 2010 +0100
local sync: rely on iCalendar 2.0 UID/RECURRENCE-ID for pairing
This patch should be reverted and be replaced by a merge script which compares
the UIDs if (and only if) possible. This is a nicer solution (less code) and
can decide about UID usage after receiving the CtCap (in contrast to the
pre-processing step).
I'd like to get at least the second part into 1.2.
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching someone on the CC list of the bug.
8 years, 9 months
[MeeGo Projects - Bug 13511] New: "add new service" randomly doesn't do anything
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=13511
Summary: "add new service" randomly doesn't do anything
Classification: MeeGo Projects
Product: SyncEvolution
Version: unspecified
Platform: All
Architecture: ---
Status: NEW
Severity: normal
Priority: Medium
Component: GTK UI
AssignedTo: jku(a)linux.intel.com
ReportedBy: patrick.ohly(a)intel.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-gtk-ui-bugs(a)meego.bugs
Estimated Hours: 0.0
In SyncEvolution as recent as 1.1.99.2 the "add new service" button randomly
works and doesn't work.
If it works, a new entry it added to the list of services. If it does not,
nothing visible happens.
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching someone on the CC list of the bug.
9 years, 3 months
[Bug 16452] New: CalDAV + libical: ORGANIZER parser error (Apple Calendar Server)
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=16452
Summary: CalDAV + libical: ORGANIZER parser error (Apple
Calendar Server)
Classification: MeeGo Projects
Product: SyncEvolution
Platform: ---
Version: unspecified
Platform: Common
Architecture: ---
Status: NEW
Severity: normal
Priority: Undecided
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: patrick.ohly(a)intel.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
Run
CLIENT_TEST_SERVER=apple CLIENT_TEST_SIMPLE_UID=1 CLIENT_TEST_MODE=server
./client-test Client::Sync::ical20::testItems
with a configuration that talks to a Apple Calendar Server.
The ORGANIZER property is lost. Root cause is a parser error in libical of the
data sent by the server. From
Client_Sync_ical20_testItems.refresh.client.B/child/syncevolution-log.html:
[2011-04-20 10:50:46.268] Read block (768 bytes):
[BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Synthesis AG//NONSGML SyncML Engine V3.4.0.27//EN
BEGIN:VEVENT
UID:20060416T204922Z-4272-727-1-250@gollum
DTSTART:20060406T193000Z
DTEND:20060406T200000Z
ATTENDEE;CN=Patrick Ohly;CUTYPE=INDIVIDUAL;LANGUAGE=en;PARTSTAT=ACCEPTED;R
OLE=REQ-PARTICIPANT;RSVP=TRUE:mailto:Patrick.Ohly@gmx.de
ATTENDEE;CUTYPE=INDIVIDUAL;LANGUAGE=en;PARTSTAT=NEEDS-ACTION;ROLE=REQ-PART
ICIPANT;RSVP=TRUE:mailto:john@bar.com
CATEGORIES:BUSINESS
CATEGORIES:MEETING
CLASS:PUBLIC
CREATED:20110420T085029Z
DTSTAMP:20110420T085029Z
LAST-MODIFIED:20110420T085029Z
ORGANIZER;CN=Patrick Ohly;SCHEDULE-AGENT=NONE;SCHEDULE-STATUS=5.3:mailto:P
atrick.Ohly(a)gmx.de
SEQUENCE:2
SUMMARY:meeting invitation
TRANSP:OPAQUE
END:VEVENT
END:VCALENDAR
# [2011-04-20 10:50:46.272] Parsing:
# [2011-04-20 10:50:46.272]
BEGIN:VCALENDAR
VERSION:2.0
PRODID:-//Synthesis AG//NONSGML SyncML Engine V3.4.0.27//EN
BEGIN:VEVENT
UID:20060416T204922Z-4272-727-1-250@gollum
DTSTART:20060406T193000Z
DTEND:20060406T200000Z
ATTENDEE;CN=Patrick Ohly;CUTYPE=INDIVIDUAL;LANGUAGE=en;PARTSTAT=ACCEPTED;
ROLE=REQ-PARTICIPANT;RSVP=TRUE:mailto:Patrick.Ohly@gmx.de
ATTENDEE;CUTYPE=INDIVIDUAL;LANGUAGE=en;PARTSTAT=NEEDS-ACTION;
ROLE=REQ-PARTICIPANT;RSVP=TRUE:mailto:john@bar.com
CATEGORIES:BUSINESS
CATEGORIES:MEETING
CLASS:PUBLIC
CREATED:20110420T085029Z
DTSTAMP:20110420T085029Z
LAST-MODIFIED:20110420T085029Z
ORGANIZER;CN=Patrick Ohly:ERROR: No Value
SEQUENCE:2
SUMMARY:meeting invitation
TRANSP:OPAQUE
END:VEVENT
END:VCALENDAR
The data getting parsed here is the one exported by libical. Later this is
passed to Synthesis with property value "ERROR: No Value", where it gets
removed because it is not an email address (ical20 incoming script,
PARSEEMAILSPEC(ORGANIZER, CN, EM)).
Need to analyze in libical.
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
9 years, 5 months
[Bug 17704] New: Need to check for alternative names to the qmake binary
by bugzilla@meego.com
https://bugs.meego.com/show_bug.cgi?id=17704
Summary: Need to check for alternative names to the qmake
binary
Classification: MeeGo Projects
Product: SyncEvolution
Platform: ---
Version: unspecified
Platform: Common
Architecture: ---
Status: NEW
Severity: normal
Priority: Undecided
Component: SyncEvolution
AssignedTo: syncevolution-bugs(a)meego.bugs
ReportedBy: blixtra(a)gmail.com
QAContact: jingke.zhang(a)intel.com
CC: syncevolution-bugs(a)meego.bugs,
syncevolution-default-bugs(a)meego.bugs
Estimated Hours: 0.0
Created attachment 6514
--> https://bugs.meego.com/attachment.cgi?id=6514
Patch to check for alternative namings for qmake
On some distros, such as Fedora, qmake is called qmake-qt4. This is currently
hardcoded to qmake in syncevolution.
Attached is a patch to check for the alternative name.
--------
Product: SyncEvolution
Component: SyncEvolution
MeeGo Release: unspecified
Severity: normal
Priority: Undecided
Keywords:
Status: NEW
Who: blixtra(a)gmail.com
Assigned To: syncevolution-bugs(a)meego.bugs
Target Build: ---
Flags:
Changed:
--------
https://bugs.meego.com/show_bug.cgi?id=17704
--
Configure bugmail: https://bugs.meego.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are watching the assignee of the bug.
You are watching someone on the CC list of the bug.
9 years, 7 months