This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
* Дано $foo и массив. Значения элементов -- уникальны. | |
* Как найти родителей элемента? | |
* Т.е., если $foo = 22, надо найти "MSK" и "Street_1" | |
* Или как найти индекс элемента: $cities["MSK"]["Street_2"][1]? | |
* Элемент не равен $foo, их связь вычисляется некоторой функцией | |
* | |
* Или, хотя бы, надо проверить, что элемент building_22 находится в массиве $cities["MSK"] | |
* | |
*/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function closeWindow() { | |
window.open('','_self',''); | |
window.close(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.b-cartographic-care-centres-searching-form .b-form-contents .b-form-contents-map-points .b-form-contents-map-points-collection .b-form-contents-map-points-collection-cash-machines-clause .b-form-contents-map-points-collection-clause-icon { | |
background: url(i/_b-form-contents-map-points-collection-cash-machine-clause-icon.png) no-repeat 0 0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$id = intval($_REQUEST['sec']); | |
if ($id == '') { // будет TRUE, но зачем переводить в int, чтобы сравнивать со строкой? | |
$id = MENU_DEFAULT; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
td { | |
padding:1em; | |
border-bottom:solid 1px #ccc; | |
line-height:1.5; | |
} | |
tr[bgcolor="#cccccc"] td, | |
tr[bgcolor="#ffffff"] td | |
{ | |
padding:0; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.b-accordion { | |
padding:0; | |
margin:0; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.b-accordion .b-accordion-item .b-accordion-item-title .b-accordion-item-title-arrow { | |
float:left; | |
width:14px; | |
height:11px; | |
margin-top:7px; | |
background:url(../i/graphic.png) 0 -30px no-repeat; | |
} | |
.b-accordion .b-accordion-current-item .b-accordion-item-title .b-accordion-item-title-arrow { | |
float:left; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Widgets Library | |
* @version 0.1 | |
* @author Alexey Karunos ([email protected]) | |
* @example | |
* var widgets = new Widgets('http://site.com/widgets/'); | |
* widgets.show('userinfo'); | |
*/ | |
; | |
function Widgets(urlPrefix, urlSuffix) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
With regard to any processes related to Telecommunication Services | |
and Additional Services provided by Operator | |
(including technical processes of message transmission, | |
receipt and processing), Moscow time shall apply. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Recursive file convertion windows-1251 --> utf-8 | |
# Place this file in the root of your site, add execute permission and run | |
# Converts *.php, *.html, *.css, *.js files. | |
# To add file type by extension, e.g. *.cgi, add '-o -name "*.cgi"' to the find command | |
find ./ -name "*.php" -o -name "*.html" -o -name "*.css" -o -name "*.js" -type f | | |
while read file | |
do |
OlderNewer