sudo lsusb
I get the result...
| from django.http.response import HttpResponseForbidden, HttpResponseRedirect | |
| from django.views.generic.base import ContextMixin, TemplateResponseMixin | |
| from django.views.generic.edit import ProcessFormView | |
| class MultiFormMixin(ContextMixin): | |
| form_classes = {} | |
| prefixes = {} | |
| success_urls = {} |
| """qurl is a tag to append, remove or replace query string parameters from an url (preserve order)""" | |
| import re | |
| from django.template import Library, Node, TemplateSyntaxError | |
| from urlparse import urlparse, parse_qsl, urlunparse | |
| from django.utils.encoding import smart_str | |
| from urllib import urlencode | |
| register = Library() |
| <?php | |
| /** | |
| * A FormSchemaFormatter to use with Twitter Bootstrap CSS. | |
| * | |
| * @author malteo | |
| */ | |
| class sfWidgetFormSchemaFormatterBootstrap extends sfWidgetFormSchemaFormatter | |
| { | |
| protected |