Skip to content

Commit

Permalink
Polish
Browse files Browse the repository at this point in the history
  • Loading branch information
mistercrunch committed Sep 23, 2015
1 parent 71274ae commit 63d55c9
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 4 deletions.
2 changes: 2 additions & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
recursive-include panoramix/templates *
recursive-include panoramix/static *
recursive-include panoramix/data *
recursive-include panoramix/migrations *
22 changes: 19 additions & 3 deletions panoramix/templates/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,14 @@
.carousel img {
max-height: 500px;
}
.carousel-caption{
.carousel {
overflow: hidden;
}
div.carousel-caption{
background: rgba(0,0,0,0.5);
border-radius: 20px;
margin-bottom: 100px;
border-radius: 20px;
top: 150px;
bottom: auto !important;
}
.carousel-inner > .item > img {
margin: 0 auto;
Expand Down Expand Up @@ -37,6 +41,7 @@
<li data-target="#carousel" data-slide-to="1"></li>
<li data-target="#carousel" data-slide-to="2"></li>
<li data-target="#carousel" data-slide-to="3"></li>
<li data-target="#carousel" data-slide-to="4"></li>
</ol>

<!-- Wrapper for slides -->
Expand Down Expand Up @@ -77,6 +82,17 @@ <h1>Extend</h1>
<p>Join the community and take part in extending the widget library</p>
</div>
</div>
<div class="item">
<img style="max-height: none;" src="{{ url_for("static", filename="servers.jpg") }}">
<div class="carousel-caption">
<h1>Connect</h1>
<p>
Access data from MySql, Presto.db, Postgres, RedShift, Oracle, MsSql,
SQLite, and more through the SqlAlchemy integration. You can also
query realtime data blazingly fast out of Druid.io
</p>
</div>
</div>
</div>
<!-- Controls -->
<div>
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ flask-appbuilder
gunicorn
markdown
mysql-python
nose
pandas
parsedatetime
pydruid
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
"and druid.io"),
version=version,
packages=find_packages(),
package_data={'': ['panoramix/migrations/alembic.ini']},
package_data={'': [
'panoramix/migrations/alembic.ini',
'panoramix/data/birth_names.csv.gz',
]},
include_package_data=True,
zip_safe=False,
scripts=['panoramix/bin/panoramix'],
Expand Down

0 comments on commit 63d55c9

Please sign in to comment.