Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Simon Daron
panikweb
Commits
aae1abff
Commit
aae1abff
authored
Oct 06, 2013
by
fred
Browse files
Merge branch 'master' into wip/side-player
parents
27b9f1cc
cc51d808
Changes
4
Show whitespace changes
Inline
Side-by-side
panikweb/paniktags/templatetags/paniktags.py
View file @
aae1abff
...
...
@@ -8,6 +8,7 @@ import uuid
from
django
import
template
from
django.conf
import
settings
from
django.core.urlresolvers
import
reverse
from
django.db.models.query
import
QuerySet
from
django.utils
import
simplejson
from
datetime
import
datetime
,
timedelta
...
...
@@ -308,3 +309,19 @@ def rfc822(datetime):
def
related_objects
(
object
):
sqs
=
search
.
MoreLikeThisSearchQuerySet
().
models
(
Emission
,
Episode
,
NewsItem
)
return
{
'more_like_this'
:
sqs
.
more_like_this
(
object
)[:
12
]}
@
register
.
filter
def
get_focus_url
(
object
):
if
object
.
newsitem
:
return
reverse
(
'newsitem-view'
,
kwargs
=
{
'slug'
:
object
.
newsitem
.
slug
})
if
object
.
emission
:
return
reverse
(
'emission-view'
,
kwargs
=
{
'slug'
:
object
.
emission
.
slug
})
if
object
.
episode
:
return
reverse
(
'episode-view'
,
kwargs
=
{
'slug'
:
object
.
episode
.
slug
,
'emission_slug'
:
object
.
episode
.
emission
.
slug
})
if
object
.
soundfile
:
return
reverse
(
'episode-view'
,
kwargs
=
{
'slug'
:
object
.
soundfile
.
episode
.
slug
,
'emission_slug'
:
object
.
soundfile
.
emission
.
episode
.
slug
})
return
''
panikweb/paniktags/templatetags/thumbnails.py
View file @
aae1abff
...
...
@@ -15,7 +15,11 @@ def thumbnail(image, size='100x100'):
# defining the size
x
,
y
=
[
int
(
x
)
for
x
in
size
.
split
(
'x'
)]
# defining the filename and the miniature filename
try
:
filehead
,
filetail
=
os
.
path
.
split
(
image
.
path
)
except
ValueError
:
# return transparent pixel if the image doesn't actually exist
return
'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABAQMAAAAl21bKAAAAA1BMVEUAAACnej3aAAAAAXRSTlMAQObYZgAAAApJREFUCNdjYAAAAAIAAeIhvDMAAAAASUVORK5CYII='
basename
,
format
=
os
.
path
.
splitext
(
filetail
)
if
format
.
lower
()
not
in
(
'.jpg'
,
'.jpeg'
):
format
=
'.png'
...
...
panikweb/views.py
View file @
aae1abff
...
...
@@ -23,7 +23,7 @@ from haystack.query import SearchQuerySet
from
jsonresponse
import
to_json
from
emissions.models
import
Category
,
Emission
,
Episode
,
Diffusion
,
SoundFile
,
\
Schedule
,
Nonstop
,
NewsItem
,
NewsCategory
Schedule
,
Nonstop
,
NewsItem
,
NewsCategory
,
Focus
from
emissions.utils
import
whatsonair
,
period_program
...
...
@@ -406,8 +406,8 @@ class Home(TemplateView):
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
Home
,
self
).
get_context_data
(
**
kwargs
)
context
[
'sectionName'
]
=
"Home"
context
[
'focus'
]
=
NewsItem
.
objects
.
select_related
(
'
category'
).
filter
(
focus
=
True
).
exclude
(
image__isnull
=
True
).
exclude
(
image__exact
=
'
'
).
order_by
(
'?'
)[:
12
]
context
[
'focus'
]
=
Focus
.
objects
.
select_related
(
'
emission'
,
'newsitem'
,
'soundfile'
,
'episode'
,
'newsitem__category
'
).
order_by
(
'?'
)[:
12
]
context
[
'emissions'
]
=
Emission
.
objects
.
filter
(
archived
=
False
,
creation_timestamp__gte
=
datetime
(
2013
,
9
,
13
)).
order_by
(
'title'
)
...
...
@@ -432,7 +432,6 @@ class NewsItemView(DetailView):
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
NewsItemView
,
self
).
get_context_data
(
**
kwargs
)
context
[
'sectionName'
]
=
"News"
context
[
'focus'
]
=
list
(
NewsItem
.
objects
.
select_related
(
'category'
).
filter
(
focus
=
True
).
exclude
(
image__isnull
=
True
).
exclude
(
image__exact
=
''
).
order_by
(
'-date'
)[
0
:
9
])
context
[
'categories'
]
=
NewsCategory
.
objects
.
all
()
context
[
'news'
]
=
NewsItem
.
objects
.
all
().
exclude
(
image__isnull
=
True
).
exclude
(
image__exact
=
''
).
order_by
(
'-date'
)[:
10
]
return
context
...
...
@@ -443,7 +442,8 @@ class News(TemplateView):
def
get_context_data
(
self
,
**
kwargs
):
context
=
super
(
News
,
self
).
get_context_data
(
**
kwargs
)
context
[
'sectionName'
]
=
"News"
context
[
'focus'
]
=
list
(
NewsItem
.
objects
.
select_related
(
'category'
).
filter
(
focus
=
True
).
exclude
(
image__isnull
=
True
).
exclude
(
image__exact
=
''
).
order_by
(
'-date'
)[
0
:
9
])
newsitem_ids
=
[
x
.
newsitem_id
for
x
in
Focus
.
objects
.
filter
(
newsitem__isnull
=
False
)]
context
[
'focus'
]
=
NewsItem
.
objects
.
filter
(
id__in
=
newsitem_ids
).
select_related
(
'category'
).
order_by
(
'-date'
)[
0
:
9
]
context
[
'news'
]
=
NewsItem
.
objects
.
all
().
exclude
(
image__isnull
=
True
).
exclude
(
image__exact
=
''
).
order_by
(
'-date'
)[:
30
]
return
context
...
...
panikweb_templates/templates/news/roll.html
View file @
aae1abff
{% load thumbnails %}{% load i18n %}
{% load thumbnails %}{% load i18n %}
{% load paniktags %}
<div
id=
"newsRoll"
>
<div
class=
"newsRoll center cf"
>
<ul
id=
"ticker"
class=
"custom bigNews marged"
style=
"height:300px;overflow:hidden;"
>
{% for
content
in news %}
{% for
focus
in news %}
<li
id=
"newsRollId-{{
content.slug
}}"
id=
"newsRollId-{{
focus.id
}}"
class=
""
>
<a
style=
"max-width:100%;height:300px;background: no-repeat 50% 50% url('{{ content
.
image|thumbnail:'800x600' }}');"
style=
"max-width:100%;height:300px;background: no-repeat 50% 50% url('{{
focus.
content
_
image|thumbnail:'800x600' }}');"
class=
"block news relative"
href=
"{% url 'newsitem-view' slug=content.slug %
}"
>
{% if content
.
category %}
href=
"{{ focus|get_focus_url }
}"
>
{% if
focus.
content
_
category
_title
%}
<div
class=
"label labels absolute"
>
<span
class=
"item inBlock"
>
{{ content
.
category
.
title }}
</span>
<span
class=
"item inBlock"
>
{{
focus.
content
_
category
_
title }}
</span>
</div>
{% endif %}
<div
class=
"title"
><div>
{{
content.
title }}
</div></div>
<div
class=
"title"
><div>
{{
focus.focus_
title }}
</div></div>
</a>
</li>
{% endfor %}
</ul>
<div
class=
"marged"
>
<ul
class=
"custom distributed by3 padded"
id=
"roller"
>
{% for
content
in news|slice:'0:3' %}
{% for
focus
in news|slice:'0:3' %}
<li
style=
"width:30%;"
class=
"num-{{ forloop.counter }} padded"
>
<button
class=
"inBlock"
data-about=
"#newsRollId-{{
content.slug
}}"
>
<img
style=
"width:95%;"
src=
"{{ content
.
image|thumbnail:'160x120' }}"
/>
<button
class=
"inBlock"
data-about=
"#newsRollId-{{
focus.id
}}"
>
<img
style=
"width:95%;"
src=
"{{
focus.
content
_
image|thumbnail:'160x120' }}"
/>
</button>
</li>
{% endfor %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment