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
$ su - postgres | |
$ createuser username | |
$ createdb -o username dbname | |
$ psql -c "ALTER USER username WITH ENCRYPTED PASSWORD 'qwerty'" | |
$ psql -c "GRANT ALL PRIVILEGES ON DATABASE dbname TO username" | |
# Add ability role to create databases | |
$ psql -c "ALTER ROLE username CREATEDB" | |
# Many abilities here (shortly): https://www.codementor.io/engineerapart/getting-started-with-postgresql-on-mac-osx-are8jcopb |
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
@media @tablet { | |
.page-events, | |
.node-type-organization, | |
.node-type-blog, | |
.node-type-page, | |
.node-type-ticket, | |
.page-alttracker, | |
.page-forum, | |
.page-messages:not(.page-messages-view), | |
.page-user, |
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 ($) { | |
/* Для совместимости JavaScript и jQuery */ | |
})(jQuery); | |
function vote(v, n){ | |
basePath = Drupal.settings.basePath; |