Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
PyBusMap
Manage
Activity
Members
Labels
Plan
Issues
10
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Anton Sarukhanov
PyBusMap
Commits
4eefe945
Commit
4eefe945
authored
8 years ago
by
Anton Sarukhanov
Browse files
Options
Downloads
Patches
Plain Diff
'responsive' option for embed; X-Frame-Options:DENY for non-embed URL
parent
c4e72d66
No related branches found
No related tags found
1 merge request
!1
Implemented Embed-code generator interface
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
app.py
+4
-2
4 additions, 2 deletions
app.py
static/js/embed.js
+21
-4
21 additions, 4 deletions
static/js/embed.js
templates/modal-embed.html
+2
-2
2 additions, 2 deletions
templates/modal-embed.html
with
27 additions
and
8 deletions
app.py
+
4
−
2
View file @
4eefe945
import
os
from
flask
import
Flask
,
jsonify
,
render_template
,
request
,
abort
from
flask
import
Flask
,
jsonify
,
make_response
,
render_template
,
request
,
abort
from
flask.ext.bower
import
Bower
from
jinja2.exceptions
import
TemplateNotFound
from
sqlalchemy.orm
import
joinedload
...
...
@@ -26,7 +26,9 @@ def map():
# TODO: serve different agency depending on cookie (or special domain)
agency_tag
=
app
.
config
[
'
AGENCIES
'
][
0
]
agency
=
db
.
session
.
query
(
Agency
).
filter
(
Agency
.
tag
==
agency_tag
).
one
()
return
render_template
(
'
map.html
'
,
agency
=
agency
,
config
=
app
.
config
)
r
=
make_response
(
render_template
(
'
map.html
'
,
agency
=
agency
,
config
=
app
.
config
))
r
.
headers
.
add
(
'
X-Frame-Options
'
,
'
DENY
'
)
return
r
@app.route
(
'
/e
'
)
def
map_embed
():
...
...
This diff is collapsed.
Click to expand it.
static/js/embed.js
+
21
−
4
View file @
4eefe945
/* Logic for embed code generator form */
var
updateCode
=
function
()
{
var
code
=
$
(
"
#embed-preview
"
).
html
();
$
(
"
#embed-code
"
).
html
(
code
.
trim
());
// Grab HTML representation of preview; trim whitespace.
var
code
=
$
(
"
#embed-preview
"
).
html
().
trim
();
// Remove empty style attribute. OCD is good!
code
=
code
.
replace
(
"
style=''
"
,
""
);
code
=
code
.
replace
(
'
style=""
'
,
""
);
// Put it in the textarea.
$
(
"
#embed-code
"
).
html
(
code
);
}
// OnChange event handlers for Embed Options form
$
(
"
#embed-height
"
).
change
(
function
()
{
$
(
"
#embed-preview iframe
"
).
attr
(
'
height
'
,
$
(
this
).
val
()
+
"
px
"
);
updateCode
();
});
$
(
"
#embed-width
"
).
change
(
function
()
{
$
(
"
#embed-preview iframe
"
).
attr
(
'
width
'
,
$
(
this
).
val
()
+
"
px
"
);
});
$
(
"
#embed-responsive
"
).
change
(
function
()
{
if
(
$
(
this
).
prop
(
"
checked
"
))
{
$
(
"
#embed-preview iframe
"
).
css
(
'
max-width
'
,
'
100%
'
);
}
else
{
$
(
"
#embed-preview iframe
"
).
css
(
'
max-width
'
,
''
);
}
});
$
(
"
#embed-form :input
"
).
change
(
function
()
{
updateCode
();
});
// Hilight code for easy copying
$
(
"
#embed-code
"
).
on
(
'
focus click keydown keyup
'
,
function
()
{
$
(
this
).
select
();
});
updateCode
();
// Fire a fake change event to ensure sync between form, preview, and code.
$
(
"
#embed-form :input
"
).
change
();
This diff is collapsed.
Click to expand it.
templates/modal-embed.html
+
2
−
2
View file @
4eefe945
...
...
@@ -3,10 +3,10 @@
This map can be used in websites, displays, or digital signage solutions. To embed a list of predictions instead, change the
<strong>
Mode
</strong>
selector.
</p>
<h3>
Embed Code
</h3>
<textarea
id=
"embed-code"
cols=
100
rows=
3
readonly=
true
></textarea>
<textarea
id=
"embed-code"
cols=
100
rows=
3
readonly=
true
>
<
!-- Loading... -->
<
/textarea>
<h3>
Preview
</h3>
<div
id=
"embed-preview"
>
<iframe
src=
"{{ url_for('map_embed', _external=True, _scheme='') }}"
width=
"400px"
height=
"250px"
frameborder=
0
></iframe>
<iframe
src=
"{{ url_for('map_embed', _external=True, _scheme='') }}"
frameborder=
0
></iframe>
</div>
<h3>
Options
</h3>
<form
id=
"embed-form"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment