<li>�������� '!' (NOT, not) - ���� ������, � ������� ��� ����� ����.</li>
<li>�������� '&' (AND, and) - ���� ������, � ������� ���� ��� ����.</li>
<li>�������� '|' (OR, or) - ���� ������, � ������� ���� ����� �� �����.</li>
- <li>������ '()' ��������� ���������� ���������.</li>
+ <li>��������� �������� �����������: NOT > AND > OR. ������ '()' ��������� ���������� ���������.</li>
</ul>
<p class="small">
������� ���������: linux - �������ģ� ���������������
items = []
for item in tuple(reversed(all_titles_tags))[:10]:
year, month, day, file, title, lead, tags = item
+ lead = lead.decode('koi8-r').encode('utf-8')
+ title = title.decode('koi8-r').encode('utf-8')
url_path = "%s/%s/%s/%s" % (year, month, day, file)
item = NewsItem(
"%s-%s-%s" % (year, month, day),