<?xml version="1.0" encoding="utf-8"?>
<!--  RSS generated by Flaimo.com RSS Builder [2010-03-11 17:00:24]  --> <rss version="2.0" xmlns:im="http://purl.org/rss/1.0/item-images/" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" >
<channel>
<docs>http://bugs.muiline.com/</docs>
<description>Mantis - ISSUES</description>
<link>http://bugs.muiline.com/</link>
<title>Mantis - ISSUES</title>
<image>
<title>Mantis - ISSUES</title>
<url>http://bugs.muiline.com/images/mantis_logo_button.gif</url>
<link>http://bugs.muiline.com/</link>
<description>Mantis - ISSUES</description>
</image>
<category>All Projects</category>
<ttl>10</ttl>
<sy:updatePeriod>hourly</sy:updatePeriod>
<sy:updateFrequency>1</sy:updateFrequency>
<sy:updateBase>2010-03-11T17:00:23+02:00</sy:updateBase>
<item>
<title>0000351: Reikia momentinio nuotrauku ikelimo image plugin'ui</title>
<link>http://bugs.muiline.com/view.php?id=351</link>
<description>Reikia kad prie ten kur galima irasyti img URL butu galimybe tiesiai nusiusti nuotrauka i serveri ir kad laukelyje atsirastu URL be browsinimo</description>
<guid>http://bugs.muiline.com/view.php?id=351</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=351#bugnotes</comments>
</item>
<item>
<title>0000246: obex-data-server can not receive file through bluetooth with size large than 512 bytes</title>
<link>http://bugs.muiline.com/view.php?id=246</link>
<description>When I send a file with size &gt;= 512 from phone to PC through bluetooth, obex-data-server will fail to receive it. &lt;br /&gt;
&lt;br /&gt;
bluetooth-applet show following logging when it start.&lt;br /&gt;
** Message: adding killswitch idx 1 state 1&lt;br /&gt;
** Message: Reading of RFKILL events failed&lt;br /&gt;
** Message: killswitch 1 is 1&lt;br /&gt;
** Message: killswitches state 1&lt;br /&gt;
** (bluetooth-applet:3529): DEBUG: Unhandled UUID 00005005-0000-1000-8000-0002ee000001 (0x5005)&lt;br /&gt;
** Message: killswitch 1 is 1&lt;br /&gt;
** Message: killswitches state 1&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
obex-data-server console displays while transtering:&lt;br /&gt;
&lt;br /&gt;
** Message: server socket created&lt;br /&gt;
** Message: Server created by: :1.40&lt;br /&gt;
&lt;br /&gt;
** (obex-data-server:3465): WARNING **: Server path: /mypath&lt;br /&gt;
** Message: Client connecting&lt;br /&gt;
&lt;br /&gt;
** (obex-data-server:3465): WARNING **: Session path: /mypath&lt;br /&gt;
** Message: Bluetooth address: 00:13:70:22:12:42&lt;br /&gt;
** Message: Creating server session&lt;br /&gt;
** Message: io callback&lt;br /&gt;
** Message: event: 1&lt;br /&gt;
** Message: event: 2&lt;br /&gt;
** Message: CMD_CONNECT requested&lt;br /&gt;
** Message: Version: 0x10. Flags: 0x00  OBEX packet length: 4000&lt;br /&gt;
&lt;br /&gt;
** Message: Resizing stream chunks to 3800&lt;br /&gt;
&lt;br /&gt;
** Message: event: 3&lt;br /&gt;
** Message: io callback&lt;br /&gt;
** Message: event: 1&lt;br /&gt;
** Message: event: 11&lt;br /&gt;
** Message: CMD_PUT requested at REQCHECK&lt;br /&gt;
** Message: header: 1&lt;br /&gt;
** Message: HDR_NAME: tbig&lt;br /&gt;
** Message: header: 195&lt;br /&gt;
** Message: HDR_LENGTH: 512&lt;br /&gt;
** Message: header: 66&lt;br /&gt;
** Message: ret=-1&lt;br /&gt;
** Message: event: 3&lt;br /&gt;
** Message: io callback&lt;br /&gt;
** Message: server session closed&lt;br /&gt;
** Message: closing connection&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
It is tested on&lt;br /&gt;
ubuntu 9.10 32bit (kernel 2.6.31-16)&lt;br /&gt;
bluetooth dongle BCM2035&lt;br /&gt;
obex-data-server 0.4.4-2build1(installed by default in ubuntu 9.10)&lt;br /&gt;
&lt;br /&gt;
Phone: Nokia 3230</description>
<guid>http://bugs.muiline.com/view.php?id=246</guid>
<author>live4love &lt;live4love@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=246#bugnotes</comments>
</item>
<item>
<title>0000242: delete not compliant with obex specification</title>
<link>http://bugs.muiline.com/view.php?id=242</link>
<description>I have debugged a communication problem (with a own-developed client) until finding that the server does not follows the OBEX specification for deleting files, potentially causing data transmissions to be incorrectly handled as if they were file deletions. Since I have previously used the same client and never found a problem (both with other linux and Windows/Mac obex servers) I suspect that this may cause incompatibilities with many other clients out there, depending on their design.&lt;br /&gt;
&lt;br /&gt;
I detected the problem in the 0.4.4 version ship with ubuntu karmic, but it is still present in the subversion trunk (I have not tested previous versions). The problem is due to the following: the function ods_obex_srv_put() in ods-obex.c considers that the PUT request is a file deletion (is_delete = TRUE) unless the client has previously sent any of the following headers: OBEX_HDR_BODY, OBEX_HDR_TYPE or OBEX_HDR_LENGTH. Since my client do not sends the type nor the length (unknown at transmission start) and it does not sends a body header in the first packet, obex-data-server incorrectly interpretes this as a file deletion and aborts the data transmission.&lt;br /&gt;
&lt;br /&gt;
The OBEX specification (at least 1.2) says about delete:&lt;br /&gt;
&lt;br /&gt;
&quot;A PUT operation with NO Body or End-of-Body headers whatsoever should be treated as a delete request. Similarly, a PUT operation with an empty End-of-Body header requests the recipient to create an empty object. This definition may not make sense or apply to every implementation (in other words devices are not required to support delete operations or empty objects).&quot;&lt;br /&gt;
&lt;br /&gt;
That is, it mentions the complete &quot;PUT operation&quot; (not the first packet) and includes a &quot;whatsoever&quot; word. In another section, the specification is even more clear about this fact:&lt;br /&gt;
&lt;br /&gt;
&quot;A PUT request consists of one or more request packets, the last of which has the Final bit set in the opcode. The implementer may choose whether to include an object Body header in the first packet, or wait until the response to the initial packet is received before sending any object body chunks.&quot;&lt;br /&gt;
&lt;br /&gt;
I was one of those implementers choosing not to send a body header in the first packet. My current workarround in order to improve the compatibility with previous obex-data-server versions it will be to include a OBEX_HDR_TYPE.</description>
<guid>http://bugs.muiline.com/view.php?id=242</guid>
<author>cgarcia &lt;cgarcia@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=242#bugnotes</comments>
</item>
<item>
<title>0000233: File corruption when transferring with nautilus</title>
<link>http://bugs.muiline.com/view.php?id=233</link>
<description>Sometimes when transferring multiple files with nautilus some files come out corrupted. In the case of images, the bottom part is cut off, if multiple images are corrupted, those images are cut off at the exactly same place. &lt;br /&gt;
&lt;br /&gt;
Can't seem to reproduce when transferring files one by one, only when bunch of files are selected and copied.&lt;br /&gt;
&lt;br /&gt;
Nautilus: 2.26&lt;br /&gt;
gvfs: 1.4.1&lt;br /&gt;
ods: 0.4.5</description>
<guid>http://bugs.muiline.com/view.php?id=233</guid>
<author>walmis &lt;walmis@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=233#bugnotes</comments>
</item>
<item>
<title>0000223: Not possible to change timeout period</title>
<link>http://bugs.muiline.com/view.php?id=223</link>
<description>It should be possible to change timeout period. Not sure if it should be done globally with configure or possible to change at runtime as well...</description>
<guid>http://bugs.muiline.com/view.php?id=223</guid>
<author>skirsdeda &lt;skirsdeda@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=223#bugnotes</comments>
</item>
<item>
<title>0000227: Failing to compile on my machine.</title>
<link>http://bugs.muiline.com/view.php?id=227</link>
<description>First error was stdlib.h was not included in src/ods-common.c.&lt;br /&gt;
&lt;br /&gt;
My next error is im getting undefined reference to `OBEX_FindInterfaces' in ods-obex.c.&lt;br /&gt;
&lt;br /&gt;
I'm not sure how to fix this but I can see that OBEX_FindInterfaces is declared in obex.h. &lt;br /&gt;
&lt;br /&gt;
Here's the error output ..&lt;br /&gt;
&lt;br /&gt;
src/ods-obex.o: In function `ods_obex_setup_usbtransport':&lt;br /&gt;
/root/software/build/bluez/obex-data-server/src/ods-obex.c:408: undefined reference to `OBEX_FindInterfaces'&lt;br /&gt;
collect2: ld returned 1 exit status</description>
<guid>http://bugs.muiline.com/view.php?id=227</guid>
<author>drgr33n &lt;drgr33n@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=227#bugnotes</comments>
</item>
<item>
<title>0000215: USE_USB guards don't protect missing usb.h</title>
<link>http://bugs.muiline.com/view.php?id=215</link>
<description>Not entirely sure which package usb.h comes in, but in any case, I did configure with usb disabled and I get build errors because of usb.h.  If you move '#ifdef USE_USB' above the includes (but below '#include &quot;config.h&quot;'), all is well.&lt;br /&gt;
&lt;br /&gt;
This occurs in ods-usb.c and ods-usb.h.</description>
<guid>http://bugs.muiline.com/view.php?id=215</guid>
<author>mikeyrb &lt;mikeyrb@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=215#bugnotes</comments>
</item>
<item>
<title>0000213: Check dbus service file when running in system bus</title>
<link>http://bugs.muiline.com/view.php?id=213</link>
<description>When running in system bus (ods -s), check dbus .service file on startup so that ods would have -s arg in .service file!</description>
<guid>http://bugs.muiline.com/view.php?id=213</guid>
<author>skirsdeda &lt;skirsdeda@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=213#bugnotes</comments>
</item>
<item>
<title>0000160: Ability to send files from memory.</title>
<link>http://bugs.muiline.com/view.php?id=160</link>
<description>Morning Tadas,&lt;br /&gt;
&lt;br /&gt;
I've been working on a concept here which requires us to push files to a remote device however the file doesn't exist on the FS only in memory as a binary string. This comes about because the environment the app will run on only has a read-only FS so all content which is being sent to the remote device only exists in memory.&lt;br /&gt;
&lt;br /&gt;
I feel it might be nice to have a method in ODS which allows us to pass the binary string to ODS and send that file to the remote device without us having to write it to the FS first.&lt;br /&gt;
&lt;br /&gt;
What are your thoughts on this?&lt;br /&gt;
&lt;br /&gt;
Thanks mate, I hope you're well :-)&lt;br /&gt;
&lt;br /&gt;
Heston</description>
<guid>http://bugs.muiline.com/view.php?id=160</guid>
<author>heston_james &lt;heston_james@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=160#bugnotes</comments>
</item>
<item>
<title>0000003: Translation'ai veikia neoptimaliai</title>
<link>http://bugs.muiline.com/view.php?id=3</link>
<description>Dabar kiekvienai frazei ishverti reikia kreiptis i DB. Vietoj to geriau prefetchinti vertimus (t.y. viska ishversti ir laikyti $GLOBALS variable). Tai galima igivendinti su funkcija Translate::Prefetch() (egzistuoja lazeriai branche).&lt;br /&gt;
&lt;br /&gt;
Kita vertus, geriau butu viska optimizuot nerashant daug kodo. Galbut butu imanoma padaryti, kad smartyje naudojant {_}{/_} bloka butu translatinami tik visi blokai vienu kartu (nzn ar ishvis imanoma taip suimplementuot smartyje).</description>
<guid>http://bugs.muiline.com/view.php?id=3</guid>
<author>skirsdeda &lt;skirsdeda@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=3#bugnotes</comments>
</item>
<item>
<title>0000012: Sutvarkyti security checkinima</title>
<link>http://bugs.muiline.com/view.php?id=12</link>
<description>Dabar 'auto' branche prihardcodinta stebuklingu security check'inimu. Reikia nuspresti kas gali buti panaudota (ir kaip) generic branche (weblancet_db). Ir atatinkamai reikia sumerginti.</description>
<guid>http://bugs.muiline.com/view.php?id=12</guid>
<author>skirsdeda &lt;skirsdeda@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=12#bugnotes</comments>
</item>
<item>
<title>0000022: Perkelinejant item'a su Move($newId) nesutvarko level ir position'u.</title>
<link>http://bugs.muiline.com/view.php?id=22</link>
<description>Kai perkelinejamas item'as su ta Move funkcija, jei jis perkeliamas i kita level'i tai duombazej nepasikeicia niekas. Taip pat reikia istestuoti kaip ten su pozicijojm, man rodos nesitvarko.</description>
<guid>http://bugs.muiline.com/view.php?id=22</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=22#bugnotes</comments>
</item>
<item>
<title>0000106: nesudeti visi actionai i weblancet_clean ir web;ancet_b_vupraktika</title>
<link>http://bugs.muiline.com/view.php?id=106</link>
<description>nesudeti info i weblancet_clean ir praktika del to negalima kai kuriu elementu istrinti ir t.t.</description>
<guid>http://bugs.muiline.com/view.php?id=106</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=106#bugnotes</comments>
</item>
<item>
<title>0000105: meniu neteisingai atvaizduojamas</title>
<link>http://bugs.muiline.com/view.php?id=105</link>
<description>REikia apdaryti kad uppercasintu meniu pavadinimus ir kazkodel nerodo meniu punkto kai buna mouseover.</description>
<guid>http://bugs.muiline.com/view.php?id=105</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=105#bugnotes</comments>
</item>
<item>
<title>0000010: Suimplementuoti 'Override' direktorija</title>
<link>http://bugs.muiline.com/view.php?id=10</link>
<description>Panaikinti 'Templates' direktorija ir vietoj to naudoti 'Override' direktorija, kur butu galima overridinti ne tik templatus bet ir klases.</description>
<guid>http://bugs.muiline.com/view.php?id=10</guid>
<author>skirsdeda &lt;skirsdeda@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=10#bugnotes</comments>
</item>
<item>
<title>0000066: Image manager in TinyMCE</title>
<link>http://bugs.muiline.com/view.php?id=66</link>
<description>If you import image, then delete it and import another one with the same name it shows the old image, not new, so you need to rename new image and can't upload with the same that was there before.</description>
<guid>http://bugs.muiline.com/view.php?id=66</guid>
<author>alumnai &lt;alumnai@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=66#bugnotes</comments>
</item>
<item>
<title>0000064: Importing Images into content with TinyMCE</title>
<link>http://bugs.muiline.com/view.php?id=64</link>
<description>When i try to put in any king of image (.jpg .png etc.) writing url manualy, the image does not appear in content. The editor just writes extra parameters and the image doesn't appear.&lt;br /&gt;
&lt;br /&gt;
/UserFiles/Images/kontaktai_image.jpg&amp;Width=560&amp;Height=200&amp;Method=5</description>
<guid>http://bugs.muiline.com/view.php?id=64</guid>
<author>alumnai &lt;alumnai@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=64#bugnotes</comments>
</item>
<item>
<title>0000110: nesimato pakeitimu sukurtu atskiruose straipsniuose,</title>
<link>http://bugs.muiline.com/view.php?id=110</link>
<description>Prie projekto Subertres, redaguojant atskirus staripsnius pvz. is Produktų katalogas, nesimato pakeitimu &quot;pakeitimų peržiūroje&quot;,  matos itik vidiniuose elementuose kada keista...</description>
<guid>http://bugs.muiline.com/view.php?id=110</guid>
<author>inga &lt;inga@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=110#bugnotes</comments>
</item>
<item>
<title>0000133: europraktika</title>
<link>http://bugs.muiline.com/view.php?id=133</link>
<description>Prisijungus su studentu Tadas Matiejunas, issiunciau laiska imonei, pirma akrta paluzo ir neuzsikrve, tada antra karta viskas ok, prikabinau faila,  o tada studentas jau negali pasirinkti pasiulymo - paspaudzia -sutinku, ir niekas nesidaro.</description>
<guid>http://bugs.muiline.com/view.php?id=133</guid>
<author>inga &lt;inga@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=133#bugnotes</comments>
</item>
<item>
<title>0000134: išsikriapo puslapis kuriant skelbimą organziacijose</title>
<link>http://bugs.muiline.com/view.php?id=134</link>
<description>prisijungaint prie organziacijų (t.y. sukūriau naują ) ir rašaupraktiksos kelkbim, bet tas langas labai išsimėtė. pvz. save mygtukas į viršų užšukęs ir pan.&lt;br /&gt;
&lt;br /&gt;
vienas laukas per platus ir pan.</description>
<guid>http://bugs.muiline.com/view.php?id=134</guid>
<author>inga &lt;inga@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=134#bugnotes</comments>
</item>
<item>
<title>0000130: Studento prisijungimo pirmas langas</title>
<link>http://bugs.muiline.com/view.php?id=130</link>
<description>Prisijungus studentui prie IS, nedingsta pagrindinio puslapio mygtukai, ir dabartiniu esanciu nereikia. bus  kur atsiunte Deimante penktadieni&lt;br /&gt;
&lt;br /&gt;
Apacioje mygtuke turi vietoj anglisko uzraso buti lietuviskas - Erasmus informacnė sistema, Gauminos logotpas - lietuviskas,&lt;br /&gt;
&lt;br /&gt;
Virš prisijungimo duomenų kur juo įvesti, turi būti užrašas - VU informacinė sistema&lt;br /&gt;
&lt;br /&gt;
Studento darbinis laukas - pagrindiniame lauke prisijungimas&lt;br /&gt;
&lt;br /&gt;
Jūs esate prisijungę -&gt; prie VU IS prisijungęs/ usi Studentas Studentauskas&lt;br /&gt;
&lt;br /&gt;
Jūsų paraiškos statusas -&gt; Jūsų virtuali darbo vieta&lt;br /&gt;
&lt;br /&gt;
žemiau parašyti  &lt;br /&gt;
&lt;br /&gt;
Erasmus praktikos etapai:&lt;br /&gt;
&lt;br /&gt;
užrašas: dabartinis etapas: su aprašymais atsiranda tik kai užpildomas CV.&lt;br /&gt;
&lt;br /&gt;
Dabartinis etapas: - šriftas turi būti tuo gražiu šriftu.&lt;br /&gt;
Dabartinio etapo aprašus įdėti į rėmelius. - kaip anketose būna laukas informacijai parašyti.&lt;br /&gt;
&lt;br /&gt;
Jūsų praktikos dokumentai -&gt; Praktikos paieškos dokumentai&lt;br /&gt;
(išvardinti sąrašas)&lt;br /&gt;
ir taip pat išsiskiria dokumentai pagal Deimantės pateiktą sąrašą&lt;br /&gt;
Praktikos vietos paieška -&gt; patvirtinta praktikos vieta&lt;br /&gt;
&lt;br /&gt;
Paraiškos Europraktikos mob. stipendijai gauti pateikimas -&gt; skirta praktikos stipendija&lt;br /&gt;
Praktikos plano pateikimas -&gt; suderintas praktikos planas&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
erasmus prktikos etapai:</description>
<guid>http://bugs.muiline.com/view.php?id=130</guid>
<author>inga &lt;inga@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=130#bugnotes</comments>
</item>
<item>
<title>0000104: Neprisijungia prie TVS</title>
<link>http://bugs.muiline.com/view.php?id=104</link>
<description>Neprisijungia prie TVS jeigu esi katik atsijunges ir URL buna ?Action=Security/Logout</description>
<guid>http://bugs.muiline.com/view.php?id=104</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=104#bugnotes</comments>
</item>
<item>
<title>0000097: Reikia padaryti kad WebLancet keshuodamas view'a uzkeshuotu ir jo paduodamus slot'us</title>
<link>http://bugs.muiline.com/view.php?id=97</link>
<description>nes dabar jei atidaromas keshuoptas view'as jo slotai neatvaizduojami.</description>
<guid>http://bugs.muiline.com/view.php?id=97</guid>
<author>justinas &lt;justinas@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=97#bugnotes</comments>
</item>
<item>
<title>0000157: nokia: BT hang when copying files</title>
<link>http://bugs.muiline.com/view.php?id=157</link>
<description>versions 0.4.3 and 0.4.4&lt;br /&gt;
I'm using gvfs to mount and browse my nokia 6630. Then I use gnome-terminal to access it.&lt;br /&gt;
&lt;br /&gt;
whenever I copy a file to my home directory (and also other destinations) the terminal hangs (the same if using nautilus) without any type of debuggung infirmation. To make it come back I have to disable BT on my nokia phone.&lt;br /&gt;
&lt;br /&gt;
I don't know how to obtain further debug, can you help me?&lt;br /&gt;
thanks</description>
<guid>http://bugs.muiline.com/view.php?id=157</guid>
<author>yelo3 &lt;yelo3@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=157#bugnotes</comments>
</item>
<item>
<title>0000159: Evil characters handling in ftp</title>
<link>http://bugs.muiline.com/view.php?id=159</link>
<description>ods doesn't work with a whole set of evil chars like .~ and so on</description>
<guid>http://bugs.muiline.com/view.php?id=159</guid>
<author>baybal &lt;baybal@example.com&gt;</author>
<comments>http://bugs.muiline.com/view.php?id=159#bugnotes</comments>
</item>
</channel>
</rss>
