<?xml version="1.0" encoding="UTF-8"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
	<title>jQuery Grid Plugin - jqGrid - Topic: How to delete row if composite primary key is used</title>
	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used</link>
	<description><![CDATA[Grid plugin]]></description>
	<generator>Simple:Press Version 5.7.5.3</generator>
	<atom:link href="http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used/rss" rel="self" type="application/rss+xml" />
        <item>
        	<title>OlegK on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23203</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23203</guid>
        	        	<description><![CDATA[<p>I find encoding of large texts not the best way. With respect of Encoding.UTF8.GetBytes or Encoding.ASCII.GetBytes you can get byte representation of any string and with respect of <a href="http://msdn.microsoft.com/en-us/library/system.security.cryptography.md5cryptoserviceprovider.computehash.aspx" target="_blank">MD5CryptoServiceProvider.ComputeHash</a> you can calculate the MD5 from the bytes. Then you can convert the MD5 value to HEX or to Base64. In the database you can save the MD5 directly as binary and in HTML use the values converted to HEX or to Base64. So instead of the usage long (even encoded) texts as id you can use short values.</p>
<p>Regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Mon, 16 May 2011 12:25:36 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23177</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23177</guid>
        	        	<description><![CDATA[<p>I created method below to encode/decode jquery ids. This will also handle the case if id is empty. Will thoser methods encode all characters which are not alowed in jquery ids?</p>
<p>Is it resonable to use those methods instead on md5 or base64 ?</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;summary&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// Encodes primary key to jqGrid id<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;/summary&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;returns&#62;&#60;/returns&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; public string EncodeId(object[] primaryKeyValue)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; string result = "";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach (var key in primaryKeyValue)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (result.Length != 0)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result += "/";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; result += Server.UrlEncode(key.ToString());<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (result.Length == 0) // empty string used as primary key<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return ":";<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return result;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;summary&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// Decodes jqGrid primary key to actual primary key values<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;/summary&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;param name="id"&#62;id passed from jqGrid&#60;/param&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; /// &#60;returns&#62;&#60;/returns&#62;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; public IList&#60;string&#62; DecodeId(string id)<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (id == ":")<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return new string[] { "" };<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; var res = new List&#60;string&#62;();<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; foreach (var key in id.Split(&#39;/&#39;))<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; res.Add(Server.UrlDecode(key));<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return res;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
]]></description>
        	        	<pubDate>Sun, 15 May 2011 12:59:35 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23139</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23139</guid>
        	        	<description><![CDATA[<p>The dictionary tables use typically MD5 hash as the key insead of the full phrase in source language.</p>
<p>I don&#39;t understand how you implement packet dumps and why you have the requirements at all. The&#160;<a href="http://www.fiddler2.com/fiddler2/" target="_blank">Fiddler</a>&#160;tool for example has "Encoder" button which allows you in easy&#160;way to decode any the information from the packet it it is encoded in some standard encoded formats (inclusive Base64 of course).</p>
<p>It seems to me that our discussion goes in the direction which is far from the subject of the forum. I suppose, that you understand my opinion, but you will have to solve your problems yourself.</p>
<p>Best regards<br />Oleg</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 14:15:56 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23136</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23136</guid>
        	        	<description><![CDATA[<p>This is dictionary table contianing different languages in columns. Primary key is phrase in source language. This table is used for translations. Surrogate id will be used then only by jqGrid.</p>
<p>I&#39;m not sure that adding surrogate id to this table is reasonable for this.</p>
<p>Base64 encoding makes id too long and unreadable in packet dumps when debugging.</p>
<p>How to create encoder/decoder which masks only characters which are not allowed in jqGrid ids? Where to find list of such characters ? Are most unicode characters allowed in ids ? Should only spaces encoded or other characters also ?</p>
<p>&#160;In this case ids are shorter and readable.</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 13:15:02 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23135</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23135</guid>
        	        	<description><![CDATA[<p>Hello Andrus,</p>
<p>I suppose that under row edit mode you mean <a href="/jqgridwiki/doku.php?id=wiki:inline_editing" target="_blank">inline editing mode</a>. It has <strong>serializeRowData</strong> which lay the same role as <strong>serializeDelData</strong> for the form editing. If you use both editing modes together in the grid you can share the code of the function which implement seriaization in both cases.</p>
<p>I am sure, that if you use id which is several kilobytes long than you <strong><em><span style="text-decoration: underline;">should</span></em></strong> make modification in your database model. The usage of such "key" is almost the same as to use the full row data. It will be slow and ineffective. The&#160;sooner you make changes in the tables the better for your application.</p>
<p>If you will replace the keys with "several kilobytes" to the integer key you will save the sending to the client and from the client the garbage which is now inside of &#39;_id1&#39; and &#39;_id2&#39; columns. The searching by key will be also improved.</p>
<p>I don&#39;t play with "keys" having several kilobytes. You can test yourself&#160;whether it work or not.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 12:54:54 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23134</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23134</guid>
        	        	<description><![CDATA[<p>Will serializeDelData, delData work also in row edit mode ? They are documented in form editing chapter so I expected that they will not work in row editing mode.</p>
<p>URL limit may be too short so onClickSubmit cannot used. Db structure change requires lot of changes in existing application, it is too expensive.</p>
<p>So only way seems to use base64 to create id1_id2&#160; as id for jqGrid and use POST.</p>
<p>Will jqQrid form and row editing modes work OK if id1_id2 key used as id is several kilobytes long ?</p>
<p>Andrus.</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 12:36:15 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23133</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23133</guid>
        	        	<description><![CDATA[<p>First of all I suggesed you 4 implementation ways. If you have problem with one or another way you can use other ways. The way with <strong>serializeDelData</strong>&#160;is the simplest one and it will work without any problem.</p>
<p>Second, if you have general data as _id1 and _id2 which can contain any characters there are many simple transformation like base64 which allow you to convert it to less general character set. After the transformation you can use (id1 + &#39;_&#39; + id2) to produce the composed key.</p>
<p>Third, I find that having long strings which contains any characters as the primary key is <em>not the best design solution</em>. If you can make changes in the database model I would recommend you to change the design of the tables. You can add new column with autoincrement integer value and make the column as the new primary key. To be sure that "the old" primary key stay unique you can add UNIQUE constraint to the column. All this is a very simple trick used frequently in the database design. In the way you will have simple integer prinary key.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 10:41:11 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23131</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23131</guid>
        	        	<description><![CDATA[<p>As I wrote composite key components are text strings. They can contain any characters including spaces and _ characters. Due to jqGrid bug spaces and maybe some other characters are not allowed in ids.&#160; Total lenght of keys can exceed browser URL limit so maybe urls cannot constructed, probably POST should used.</p>
<p>Where to find sample jqGrid setup which allows to delete row in table where composite primary key contains any characters and can be larger than allowed browser url size&#160;?</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 00:52:20 +0300</pubDate>
        </item>
        <item>
        	<title>OlegK on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23128</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23128</guid>
        	        	<description><![CDATA[<p>You have many possibilities to do this: <strong>serializeDelData</strong>, <strong>delData</strong>, <strong>onclickSubmit</strong>. The event handle <strong>serializeDelData</strong>&#160;gives you the most direct way. The opton <strong>delData</strong>&#160;is mostly for the posting additional static data to the server, but you can try to use an object having functions as the properties, like one do this with <strong>postData</strong> jqGrid parameter. I think it should work. The last way would be to use <strong>onclickSubmit</strong>&#160;which has <strong>rp_ge</strong> as the first&#160;parameter. You can modify <strong>rp_ge.url</strong> and place the information about the second id part as parameter in the url.</p>
<p>Moreover you don&#39;t wrote what information you use as the id of your grid. If you would construct id as (id1 + &#39;_&#39; + id2) then you can easy split the id information which will be send by jqGrid automatically in two parts and you will have on the server all information which you need. In the case you can reduce the number of columns in your grid. You should take in the consideration, that HTML code of grid contain &#60;td&#62; elements for all hidden columns. The &#60;td&#62; elements has style="display:none;" and so are invisable, but there take a little additional memory.</p>
<p>Best regards<br />Oleg&#160;</p>
]]></description>
        	        	<pubDate>Thu, 12 May 2011 00:25:05 +0300</pubDate>
        </item>
        <item>
        	<title>kobruleht on How to delete row if composite primary key is used</title>
        	<link>http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23127</link>
        	<category>Help</category>
        	<guid isPermaLink="true">http://www.trirand.com/blog/?page_id=393/help/how-to-delete-row-if-composite-primary-key-is-used#p23127</guid>
        	        	<description><![CDATA[<p>Table contains composite primary key which are passed as _id1 , _id2 &#160;columns using definition below. If row is deleted, those values are *not* passed to delete or edit&#160;url handler&#160;in server.</p>
<p>jqGridd passes&#160;only surrogate id (row number) to server. It is impossible to find composite keys using row number since records may be already deleted by other users during editing.</p>
<p>How to implement delete in server if composite primary keys are used ?</p>
<p>Composite primary key&#160;columns can contain any characters. Should I create single key from them? How to encode spaces and other character which are not allowed in jqGrid ids ?</p>
<p>Also why aftersubmit method is not called if row is edited?</p>
</p>
<blockquote>
<p>var lastSel;</p>
<p>$(function () {<br />&#160;&#160;&#160; var grid = $("#grid");<br />&#160;&#160;&#160; grid.jqGrid({<br />&#160;&#160;&#160; scroll: 1,<br />&#160;&#160;&#160; datatype: "json",<br />&#160;&#160;&#160; mtype: &#39;POST&#39;,<br />&#160;&#160;&#160; toolbar: [true, "top"],<br />&#160;&#160;&#160; colModel: [<br />&#160;&#160; &#160;&#160;{ name: &#39;source&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;est&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;eng&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;rus&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;fin&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;lvl&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;ger&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;istopic&#39;, editable: true },<br />&#160;&#160; &#160;&#160;{ name: &#39;critical&#39;, editable: true },</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;_id1&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; editable: true, editrules: { edithidden: true }, hidden: true&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; { name: &#39;_id2&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; editable: true, editrules: { edithidden: true }, hidden: true<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }</p>
<p>&#160;&#160; &#160;],</p>
<p>&#160;&#160;&#160; ondblClickRow: function (id) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (id &#38;&#38; id !== lastSel) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; grid.restoreRow(lastSel);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; lastSel = id;<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; grid.editRow(id, true);<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; },<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; rowNum: 100,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; autoencode: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; gridview: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; pager: &#39;#pscrolling&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortname: &#39;est&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; viewrecords: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; sortorder: "asc"</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }).navGrid("#pscrolling", { edit: true, add: true, del: true, refresh: true, search: true },</p>
<p>&#160;&#160;&#160; {savekey: [true, 13],<br />&#160;&#160;&#160; reloadAfterSubmit: true,<br />&#160;&#160;&#160; jqModal: false,<br />&#160;&#160;&#160; closeOnEscape: true,<br />&#160;&#160;&#160; closeAfterEdit: true,<br />&#160;&#160;&#160; url: &#39;&#60;%= ResolveUrl("~/Grid/Save")%&#62;&#39;,<br />&#160;&#160;&#160; afterSubmit: function (response, postdata) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (response.responseText == "Success") {</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return [true, response.responseText]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; else {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return [false, response.responseText]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160; }<br />},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Add options<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {},</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; // Delete options<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; url: &#39;&#60;%= ResolveUrl("~/Grid/Delete")%&#62;&#39;,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; closeOnEscape: true,<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160; afterSubmit: function (response, postdata) {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; if (response.responseText == "Success") {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return [true, response.responseText]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; else {<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; return [false, response.responseText]<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; } <br />&#160;&#160;&#160;&#160;&#160;&#160; }<br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; );<br />&#160;&#160;&#160;&#160;&#160;&#160; });</p>
</blockquote>
]]></description>
        	        	<pubDate>Wed, 11 May 2011 23:53:29 +0300</pubDate>
        </item>
</channel>
</rss>