├── .gitignore ├── .gitreview ├── LICENSE ├── MANIFEST.in ├── README.txt ├── setup.cfg ├── setup.py ├── tox.ini └── xstatic ├── __init__.py └── pkg ├── __init__.py └── angular_bootstrap ├── __init__.py └── data └── angular-bootstrap.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitreview: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/.gitreview -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/README.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/setup.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/tox.ini -------------------------------------------------------------------------------- /xstatic/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/xstatic/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/xstatic/pkg/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/angular_bootstrap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/xstatic/pkg/angular_bootstrap/__init__.py -------------------------------------------------------------------------------- /xstatic/pkg/angular_bootstrap/data/angular-bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openstack/xstatic-angular-bootstrap/HEAD/xstatic/pkg/angular_bootstrap/data/angular-bootstrap.js --------------------------------------------------------------------------------