<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Jefim Borissov &#187; Web dev</title>
	<atom:link href="http://jefim.eu/blog/category/it/programming/webdev/feed/" rel="self" type="application/rss+xml" />
	<link>http://jefim.eu/blog</link>
	<description>Житие мое</description>
	<lastBuildDate>Fri, 05 Aug 2011 22:28:59 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.3</generator>
		<item>
		<title>Basic CSS layout</title>
		<link>http://jefim.eu/blog/2009/10/basic-css-layout/</link>
		<comments>http://jefim.eu/blog/2009/10/basic-css-layout/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 23:39:49 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Web dev]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[layout]]></category>

		<guid isPermaLink="false">http://jefim.eu/blog/?p=256</guid>
		<description><![CDATA[The basic CSS layout I use in my work is plain simple - header, sontent, sidebar and footer. The HTML: &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&#62; &#60;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&#62; &#60;head&#62; &#60;title&#62;My page&#60;/title&#62; &#60;base href="http://localhost/" /&#62; &#60;link rel="stylesheet" href="css/style.css" /&#62; &#60;/head&#62; &#60;body&#62; &#60;div id="wrap"&#62; &#60;div id="header"&#62; Header &#60;/div&#62; &#60;div id="content"&#62; Content &#60;/div&#62; &#60;div id="sidebar"&#62; Sidebar [...]]]></description>
			<content:encoded><![CDATA[<p>The basic CSS layout I use in my work is plain simple - header, sontent, sidebar and footer.</p>
<p>The HTML:</p>
<pre name="code" class="html">&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"&gt;
&lt;html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"&gt;

&lt;head&gt;
  &lt;title&gt;My page&lt;/title&gt;
  &lt;base href="http://localhost/" /&gt;
  &lt;link rel="stylesheet" href="css/style.css" /&gt;
&lt;/head&gt;
&lt;body&gt;
  &lt;div id="wrap"&gt;
    &lt;div id="header"&gt;
      Header
    &lt;/div&gt;
    &lt;div id="content"&gt;
      Content
    &lt;/div&gt;
    &lt;div id="sidebar"&gt;
      Sidebar
    &lt;/div&gt;
    &lt;div class="clr"&gt;&lt;/div&gt;
    &lt;div id="footer"&gt;
      Footer
    &lt;/div&gt;
  &lt;/div&gt;
&lt;/body&gt;
&lt;/html&gt;</pre>
<p>And the CSS is very simple:</p>
<pre name="code" class="css">#wrap    { width: 960px; margin: 0 auto; }
#header  { }
#content { width: 700px; float: left; }
#sidebar { width: 260px; float: right; }
#footer  { }
.clr     { clear:both; height:0px; overflow:hidden; }</pre>
<p>This is it. This code will show a simple page which is ready for hardcore modification. I know this is pretty basic yet it is one of the most used code snippets in my IDE. Good luck!</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2009/10/basic-css-layout/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>Komodo Edit tools &#8211; add style.css and reset.css</title>
		<link>http://jefim.eu/blog/2009/10/komodo-edit-tool-style/</link>
		<comments>http://jefim.eu/blog/2009/10/komodo-edit-tool-style/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 05:28:49 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Assorted]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web dev]]></category>
		<category><![CDATA[komodo]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[toolbox]]></category>

		<guid isPermaLink="false">http://jefim.eu/blog/?p=225</guid>
		<description><![CDATA[Good morning, planet. Today I am going to share a very useful script I am using in Komodo Edit (it automates adding style.css). It is very (!) simple yet very effective for me and, probably for others who are doing a lot of HTML files and face a problem of repetitive actions. This thing works [...]]]></description>
			<content:encoded><![CDATA[<p>Good morning, planet. Today I am going to share a very useful script I am using in Komodo Edit (it automates adding style.css). It is very (!) simple yet very effective for me and, probably for others who are doing a lot of HTML files and face a problem of repetitive actions.<br />
This thing works as follows (the use case):</p>
<ol>
<li> You create a new HTML file in komodo and save it in some directory.</li>
<li> You double-click the script in the Komodo Edit toolbox.</li>
<li> The script adds the following folders/files to the project (paths relative to the file currently in editor!)
<ul>
<li>css/</li>
<li>css/style.css</li>
<li>css/reset.css</li>
</ul>
</li>
<li>Also the file adds the following HTML code at the cursor in current opened file:</li>
</ol>
<pre name="code" class="html">
<link rel="stylesheet" type="text/css" href="css/reset.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
</pre>
<p>Voila. The needed action is done.<br />
<span id="more-225"></span></p>
<h3>Now, the snippet code:</h3>
<pre name="code" class="python">
import sys
import shutil
import os
import os.path

# argv[1] - dir of cur project (%D)
# argv[2] - current file name (%F)
if os.path.exists(sys.argv[1]+'/css/') != True:
    os.mkdir(sys.argv[1]+'/css/')

# NB! Edit the paths to style.css and reset.css
# (these will be copied into your project)!
shutil.copy('C:/Work/__distributives/css/reset.css',sys.argv[1]+'/css/')
shutil.copy('C:/Work/__distributives/css/style.css',sys.argv[1]+'/css/')

print '
<link rel="stylesheet" type="text/css" href="css/reset.css" />'
print '
<link rel="stylesheet" type="text/css" href="css/style.css" />'
</pre>
<p>Save this as a file somewhere (e.g. C:/Work/__scripts/add_style_css.py).<br />
Open up Komodo Edit and add it to your toolbox (<em>Toolbox->Add->New command...</em>) with the following settings:</p>
<ul>
<li><strong>Command:</strong> python add_style_css.py %D %F</li>
<li><strong>Insert output:</strong> check</li>
<li><strong>Start in:</strong> whatever the script resides in (e.g. C:/Work/__scripts)</li>
<li>anything else should bet left as it is</li>
</ul>
<p>Enjoy</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2009/10/komodo-edit-tool-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How-To: Create a horizontal menu</title>
		<link>http://jefim.eu/blog/2009/10/how-to-create-a-horizontal-menu/</link>
		<comments>http://jefim.eu/blog/2009/10/how-to-create-a-horizontal-menu/#comments</comments>
		<pubDate>Mon, 12 Oct 2009 08:01:11 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Assorted]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[Web dev]]></category>

		<guid isPermaLink="false">http://jefim.eu/blog/?p=111</guid>
		<description><![CDATA[This is a tutorial on how to create a fully costomizable horizontal menu. Why another menu how-to? Well, mostly because there are situations when there are no suitable google results (based on my experience) and you have to come up with something yourself. These are the features we will try to get into our menu: [...]]]></description>
			<content:encoded><![CDATA[<p>This is a tutorial on how to create a fully costomizable horizontal menu. Why another menu how-to? Well, mostly because there are situations when there are no suitable google results (based on my experience) and you have to come up with something yourself.</p>
<p>These are the features we will try to get into our menu:</p>
<ol>
<li>It will be horizontal</li>
<li>It will have splitters (made with images)</li>
<li>It will have active class for rollover / selected item (background change)</li>
<li>Menu items will be of different size</li>
</ol>
<p><strong>This code works for Internet Explorer 6+, Firefox 2.0+, Opera 9+, Safari (at least on Safari 4 - tested on Windows version of it).</strong></p>
<p>Here is a mockup that we have:</p>
<div id="attachment_114" class="wp-caption aligncenter" style="width: 312px"><img class="size-full wp-image-114 " title="menu" src="http://jefim.eu/blog/wp-content/uploads/2009/10/menu.png" alt="Menu mockup" width="302" height="33" /><p class="wp-caption-text">Menu mockup</p></div>
<p><a href="http://jefim.eu/examples/menu1/menu.html" target="_blank"><strong><span style="color: #ff0000;">NB! If you just want to see how to do it - go here for the demo / full code.</span></strong></a><br />
<span id="more-111"></span><br />
Ok, first, the HTML you need for this thing to happen:</p>
<pre name="code" class="html">&lt;ul id="menu"&gt;
 &lt;li&gt;&lt;a href="#"&gt;Menu item&lt;/a&gt;&lt;/li&gt;
 &lt;li class="active"&gt;&lt;a href="#"&gt;Longer item&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="#"&gt;Short&lt;/a&gt;&lt;/li&gt;
 &lt;li&gt;&lt;a href="#"&gt;Finally&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;</pre>
<p>This is the needed thing. One more thing to add - if you lack one element for background (if &lt;li&gt; and &lt;a&gt; are already having backgrounds and you need another one) - just wrap &lt;a&gt; with a &lt;span&gt;.</p>
<p>The CSS code for the menu:</p>
<pre name="code" class="css">html, body {
    font-family: "Trebuchet MS";
    font-size: 16px;
}
a       { text-decoration: none; color: #ffffff; }
a:hover { text-decoration: underline; }

#menu {
    margin:0;
    padding:0 12px;
    list-style-type: none;

    background: url(menu-bg.png) no-repeat;
    height:33px;
}
#menu li {
    float: left;
    display: block;
    margin-top:1px;
    background: url(menu-item-bg.png) no-repeat top right;
}
#menu li a {
    display: block;
    padding:4px 12px 4px 10px;
}
#menu li.active {
    background: url(menu-item-active-bg.png) no-repeat;
}
#menu li.active a {
    background:
        url(menu-item-active-bg-right.png)
        no-repeat top right;
}</pre>
<p>Some explanations: paddings and heights are just to make this thing look better a bit. The most important things are float, display and background aligns! If you want to create the menu yourself - just change the images and change the paddings / heights to correspond.</p>
<p>Now, the list images we will have to use:</p>
<div id="attachment_117" class="wp-caption aligncenter" style="width: 610px"><img class="size-full wp-image-117" title="menu-bg" src="http://jefim.eu/blog/wp-content/uploads/2009/10/menu-bg.png" alt="Menu background" width="600" height="33" /><p class="wp-caption-text">Menu background</p></div>
<div id="attachment_120" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-120" title="menu-item-bg" src="http://jefim.eu/blog/wp-content/uploads/2009/10/menu-item-bg.png" alt="Menu item background" width="300" height="30" /><p class="wp-caption-text">Menu item background</p></div>
<div id="attachment_118" class="wp-caption aligncenter" style="width: 310px"><img class="size-full wp-image-118" title="menu-item-active-bg" src="http://jefim.eu/blog/wp-content/uploads/2009/10/menu-item-active-bg.png" alt="Active menu item background" width="300" height="30" /><p class="wp-caption-text">Active menu item background</p></div>
<div id="attachment_119" class="wp-caption aligncenter" style="width: 22px"><img class="size-full wp-image-119 " title="menu-item-active-bg-right" src="http://jefim.eu/blog/wp-content/uploads/2009/10/menu-item-active-bg-right.png" alt="right-handed chunk" width="12" height="30" /><p class="wp-caption-text">Right-handed chunk</p></div>
<p>Of course you may want it to be a rollover effect. This is very easy to accomplish by using JavaScript. I will use jQuery for this but you can pretty much use any framework or just plain JavaScript to do that. The code for the rollover effect in jQuery is as follows:</p>
<pre name="code" class="javascript">    $(document).ready(function () {
       $('#menu li').mouseenter(function ()
           { $(this).addClass('active'); });
       $('#menu li').mouseleave(function ()
           { $(this).removeClass('active'); });
    });</pre>
<p><a href="http://jefim.eu/examples/menu1/menu.html" target="_blank">Finally, the whole stuff compiled together</a></p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2009/10/how-to-create-a-horizontal-menu/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>WebDeveloper add-on for Firefox 3.* (all betas and stuff)</title>
		<link>http://jefim.eu/blog/2008/01/webdeveloper-add-on-for-firefox-3-beta-2/</link>
		<comments>http://jefim.eu/blog/2008/01/webdeveloper-add-on-for-firefox-3-beta-2/#comments</comments>
		<pubDate>Tue, 08 Jan 2008 12:06:29 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Web dev]]></category>
		<category><![CDATA[add-on]]></category>
		<category><![CDATA[addon]]></category>
		<category><![CDATA[beta]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[extension]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[webdeveloper]]></category>

		<guid isPermaLink="false">http://jefim.wordpress.com/2008/01/08/webdeveloper-add-on-for-firefox-3-beta-2/</guid>
		<description><![CDATA[Update: Web Developer addon now officially supports Firefox 3. Check out history (version 1.1.5). Download the new version here. Old post about my hack: Just a note that there are a number of features that do not work correctly in Firefox 3. I am working on fixing these and putting together a new release. You [...]]]></description>
			<content:encoded><![CDATA[<p><b><font color="#ff0000">Update:</font> Web Developer addon now officially supports Firefox 3. Check out <a href="http://chrispederick.com/work/web-developer/history/">history (version 1.1.5)</a>. Download the new version <a href="http://chrispederick.com/work/web-developer/">here</a>.</b></p>
<p><b>Old post about my hack:</b></p>
<blockquote><p><font color="#c0c0c0"><i>Just a note that there are a number of features that do not work correctly in Firefox 3. I am working on fixing these and putting together a new release. You are free to use this hacked version of course, but just a word of warning.</i></font></p></blockquote>
<blockquote><p><font color="#c0c0c0"><a href="http://chrispederick.com/"><i>Chris Pederick - Author of Web Developer</i></a></font></p></blockquote>
<p><font color="#c0c0c0"><br />
Today I tried out the brand new Firefox 3 Beta 2. Nice. I like the new address bar and the ability to resume downloads after closing Firefox. The only thing I needed was WebDeveloper add-on (extension), which, unfortunately, does not work in FF3 yet. So, since I had a bit of add-on development experience I decided to change the max version inside the add-on. No problems occurred. Grab the .xpi (change file extension from "jpg" to "xpi" and open it with FF): <a href="http://jefim.files.wordpress.com/2008/01/web_developer-114-fxfl.jpg" title="web_developer-114-fxfl.jpg"><img src="http://jefim.files.wordpress.com/2008/01/web_developer-114-fxfl.jpg" alt="web_developer-114-fxfl.jpg" /></a></font></p>
<p><font color="#c0c0c0">That is all <img src='http://jefim.eu/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </font></p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2008/01/webdeveloper-add-on-for-firefox-3-beta-2/feed/</wfw:commentRss>
		<slash:comments>19</slash:comments>
		</item>
		<item>
		<title>Zend Studio 5.5 &#8211; Antialiasing the font (tested on Ubuntu 7.04</title>
		<link>http://jefim.eu/blog/2007/05/zend-studio-55-antialiasing-the-font-tested-on-ubuntu-704/</link>
		<comments>http://jefim.eu/blog/2007/05/zend-studio-55-antialiasing-the-font-tested-on-ubuntu-704/#comments</comments>
		<pubDate>Fri, 18 May 2007 18:16:32 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web dev]]></category>

		<guid isPermaLink="false">http://jefim.wordpress.com/2007/05/18/zend-studio-55-antialiasing-the-font-tested-on-ubuntu-704/</guid>
		<description><![CDATA[Hi! Today I am very happy to announce that I am now running Ubuntu 7.04! Now, no long preludes, since this post is about "How the &#60;fluffy bunny&#62; do I get those antialiased fonts to word in Zend Studio?!". That was the question for me about 5 minutes ago. Well, I really thought that Zend [...]]]></description>
			<content:encoded><![CDATA[<p>Hi! Today I am very happy to announce that I am now running Ubuntu 7.04!</p>
<p>Now, no long preludes, since this post is about "How the &lt;fluffy bunny&gt; do I get those antialiased fonts to word in Zend Studio?!". That was the question for me about 5 minutes ago. Well, I really thought that Zend was perfect - usually, if they have this checkbox - it works without tweaking. Now here's the disappointment part - that <em>Tools -&gt; Preferences -&gt; Desktop -&gt; Use Antialised Fonts </em>didn't really work. I asked my best friend (his name's Google) -oh, whyyyy?... Google was silent... he didn't know. Fortunately, Google remembered that Zend has a forum! Yay! Searched the forum and found the answer.</p>
<p>Here goes:</p>
<p><span class="MsgBodyText">"<em>... in &lt;installdir&gt;/bin, edit ZDE.lax adding the following line at the end<br />
<u><strong><br />
lax.nl.java.option.additional=-Dswing.aatext=true</strong></u></p>
<p>restart ZDE and you should have antialiased fonts...</em>  " (c) </span><a href="http://www.zend.com/forums/index.php?t=usrinfo&amp;id=3927&amp;S=dbf02bc9c617fd06ffd72f9d1d6e04c4">pkoebbe</a></p>
<p>That worked like magic. No problems at all! So, I hope that this helps someone and that my friend Google will soon cache this post.</p>
<p>PS The original post on Zend forums is <a href="http://www.zend.com/forums/index.php?t=msg&amp;goto=7473&amp;S=dbf02bc9c617fd06ffd72f9d1d6e04c4&amp;srch=antialiasing#msg_7473">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2007/05/zend-studio-55-antialiasing-the-font-tested-on-ubuntu-704/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>A great HTML comparison tool for Linux!</title>
		<link>http://jefim.eu/blog/2006/10/a-great-html-comparison-tool-for-linux/</link>
		<comments>http://jefim.eu/blog/2006/10/a-great-html-comparison-tool-for-linux/#comments</comments>
		<pubDate>Mon, 16 Oct 2006 07:26:24 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Software]]></category>
		<category><![CDATA[Web dev]]></category>

		<guid isPermaLink="false">http://jefim.wordpress.com/2006/10/16/a-great-html-comparison-tool-for-linux/</guid>
		<description><![CDATA[Ok, I'm writing this post in english to make it international. What it this post about?.. It's about a HTML/XML file comparison tool called rfcdiff. Why is it so great? Well there are several reasons: 1) It is free. 2) It generates very nice output. 3) It is easy to install and to use. 4) [...]]]></description>
			<content:encoded><![CDATA[<p>Ok, I'm writing this post in english to make it international.</p>
<p>What it this post about?.. It's about a HTML/XML file comparison tool called <a href="http://tools.ietf.org/tools/rfcdiff/" title="rfcdiff"><em>rfcdiff</em></a>. Why is it so great? Well there are several reasons:</p>
<p>1) It is free.</p>
<p>2) It generates very nice output.</p>
<p>3) It is easy to install and to use.</p>
<p>4) It is a Linux tool.</p>
<p>It took me about 5 minutes to install rfcdiff. The instructions:</p>
<p>1) Download rfcdiff script from it's site (it's a script, just right-click on the <em>Current version</em> link and save it anywhere you want.<br />
2) sudo apt-get install diff wdiff (these are the requred packages)</p>
<p>3) chmod+x rfcdiff</p>
<p>4) Run rfcdiff by typing "./rfcdiff file1 file2" in terminal and open the output file with your favourite browser! That's all!</p>
<p>I'm sure - you won't be disappointed in this handy tool!</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2006/10/a-great-html-comparison-tool-for-linux/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DMN + Intranet</title>
		<link>http://jefim.eu/blog/2006/03/dmn-intranet/</link>
		<comments>http://jefim.eu/blog/2006/03/dmn-intranet/#comments</comments>
		<pubDate>Wed, 15 Mar 2006 20:13:36 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Web dev]]></category>

		<guid isPermaLink="false">https://jefim.wordpress.com/2006/03/15//</guid>
		<description><![CDATA[На данный момент классовая библиотека для проекта DMN (мой с братом CMS), включающий в себя Intranet, составляет ~3600 строк кода. Это при том учитывая, что Intranet сделан ещё процентов на 10%. Это самый большой проект, который я когда-либо писал.]]></description>
			<content:encoded><![CDATA[<p>На данный момент классовая библиотека для проекта DMN (мой с братом CMS), включающий в себя Intranet, составляет ~3600 строк кода. Это при том учитывая, что Intranet сделан ещё процентов на 10%.</p>
<p>Это самый большой проект, который я когда-либо писал.</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2006/03/dmn-intranet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Новостной скрипт для сайта группы Inferno</title>
		<link>http://jefim.eu/blog/2006/03/%d0%9d%d0%be%d0%b2%d0%be%d1%81%d1%82%d0%bd%d0%be%d0%b9-%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d0%b0-%d0%b3%d1%80%d1%83%d0%bf%d0%bf%d1%8b-inferno/</link>
		<comments>http://jefim.eu/blog/2006/03/%d0%9d%d0%be%d0%b2%d0%be%d1%81%d1%82%d0%bd%d0%be%d0%b9-%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d0%b0-%d0%b3%d1%80%d1%83%d0%bf%d0%bf%d1%8b-inferno/#comments</comments>
		<pubDate>Mon, 13 Mar 2006 08:39:00 +0000</pubDate>
		<dc:creator>Jefim</dc:creator>
				<category><![CDATA[Music]]></category>
		<category><![CDATA[Web dev]]></category>

		<guid isPermaLink="false">http://jefim.wordpress.com/2006/03/13/%d0%9d%d0%be%d0%b2%d0%be%d1%81%d1%82%d0%bd%d0%be%d0%b9-%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d0%b0-%d0%b3%d1%80%d1%83%d0%bf%d0%bf%d1%8b-inferno/</guid>
		<description><![CDATA[На днях сделал простенький скрипт для добавления/удаления новостей на сайте группы Инферно. В будущем запланированы сдедующие изменения: Добавление возможности редактирования новостей. Создание скрипта для управления галлереей. Редактирование концертных дат, их добавление и удаление А вообще, скорее всего все эти вещи появятся с результате переустановки сайта на мой CMS.]]></description>
			<content:encoded><![CDATA[<p>На днях сделал простенький скрипт для добавления/удаления новостей на сайте группы <a href="http://www.infernoproject.com">Инферно</a>. В будущем запланированы сдедующие изменения:</p>
<ol>
<li>Добавление возможности редактирования новостей.</li>
<li>Создание скрипта для управления галлереей.</li>
<li>Редактирование концертных дат, их добавление и удаление</li>
</ol>
<p>А вообще, скорее всего все эти вещи появятся с результате переустановки сайта на мой CMS.</p>
]]></content:encoded>
			<wfw:commentRss>http://jefim.eu/blog/2006/03/%d0%9d%d0%be%d0%b2%d0%be%d1%81%d1%82%d0%bd%d0%be%d0%b9-%d1%81%d0%ba%d1%80%d0%b8%d0%bf%d1%82-%d0%b4%d0%bb%d1%8f-%d1%81%d0%b0%d0%b9%d1%82%d0%b0-%d0%b3%d1%80%d1%83%d0%bf%d0%bf%d1%8b-inferno/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

