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
| #!/usr/bin/env bash | |
| cd Downloads | |
| wget https://github.com/adobe-fonts/source-code-pro/archive/2.030R-ro/1.050R-it.zip | |
| if [ ! -d "~/.fonts" ] ; then | |
| mkdir ~/.fonts | |
| fi | |
| unzip 1.050R-it.zip | |
| cp source-code-pro-*-it/OTF/*.otf ~/.fonts/ | |
| rm -rf source-code-pro* | |
| rm 1.050R-it.zip |
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
| Работа с закладками: | |
| Поставить или снять закладку F11 | |
| Аналогично с присвоением буквы или цифры Ctrl + F11 | |
| Переход к закладке (удаление — клавишей Delete) Shift + F11 | |
| Быстрый переход к закладке с присвоенным числом Ctrl + Число | |
| Редактирование: | |
| Отменить последнее действие Ctrl + Z | |
| Отменить последнюю отмену действия Ctrl + Shift + Z | |
| Расширенная вставка из буфера обмена (с историей) Ctrl + Shift + V |
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
| from django import forms | |
| from django.forms.forms import BoundField | |
| from django.utils.datastructures import SortedDict | |
| class BoundFieldset(object): | |
| def __init__(self, form, name, title, fields, is_fieldset): | |
| self.form = form | |
| self.name = name |
OlderNewer