Page Menu
Home
Software Heritage
Search
Configure Global Search
Log In
Files
F8396294
top-navigation.html
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
4 KB
Subscribers
None
top-navigation.html
View Options
{% load swh_templatetags %}
<
div
class
=
"swh-browse-top-navigation"
>
{% if origin_context %}
{% if origin_context.branch or origin_context.release %}
<
div
class
=
"dropdown"
style
=
"float: left;"
id
=
"swh-branches-releases-dd"
>
<
button
class
=
"btn btn-md btn-swh dropdown-toggle"
type
=
"button"
data-toggle
=
"dropdown"
>
{% if origin_context.branch %}
<
i
class
=
"fa fa-code-fork fa-fw"
aria-hidden
=
"true"
></
i
>
Branch:
<
strong
>
{{ origin_context.branch }}
</
strong
>
{% else %}
<
i
class
=
"fa fa-tag fa-fw"
aria-hidden
=
"true"
></
i
>
Release:
<
strong
>
{{ origin_context.release }}
</
strong
>
{% endif %}
<
span
class
=
"caret"
></
span
>
</
button
>
<
ul
class
=
"scrollable-menu dropdown-menu swh-branches-releases"
>
<
div
class
=
"tabbable tabs-top"
>
<
ul
class
=
"nav nav-tabs"
>
<
li
class
=
"active"
><
a
class
=
"swh-branches-switch"
data-toggle
=
"tab"
>
Branches
</
a
></
li
>
<
li
><
a
class
=
"swh-releases-switch"
data-toggle
=
"tab"
>
Releases
</
a
></
li
>
</
ul
>
<
div
class
=
"tab-content"
>
<
div
class
=
"tab-pane active"
id
=
"swh-tab-branches"
>
{% for b in origin_context.branches %}
<
li
class
=
"swh-branch"
>
<
a
href
=
"{{ b.url | safe }}"
>
<
i
class
=
"fa fa-code-fork fa-fw"
aria-hidden
=
"true"
></
i
>
{% if b.name == origin_context.branch %}
<
i
class
=
"fa fa-check fa-fw"
aria-hidden
=
"true"
></
i
>
{% else %}
<
i
class
=
"fa fa-fw"
aria-hidden
=
"true"
></
i
>
{% endif %}
{{ b.name }}
</
a
>
</
li
>
{% endfor %}
</
div
>
<
div
class
=
"tab-pane"
id
=
"swh-tab-releases"
>
{% if origin_context.releases %}
{% for r in origin_context.releases %}
{% if r.target_type == 'revision' %}
<
li
class
=
"swh-release"
>
<
a
href
=
"{{ r.url | safe }}"
>
<
i
class
=
"fa fa-tag fa-fw"
aria-hidden
=
"true"
></
i
>
{% if r.name == origin_context.release %}
<
i
class
=
"fa fa-check fa-fw"
aria-hidden
=
"true"
></
i
>
{% else %}
<
i
class
=
"fa fa-fw"
aria-hidden
=
"true"
></
i
>
{% endif %}
{{ r.name }}
</
a
>
</
li
>
{% endif %}
{% endfor %}
{% else %}
<
span
>
No releases to show
</
span
>
{% endif %}
</
div
>
</
div
>
</
div
>
</
ul
>
</
div
>
{% endif %}
{% endif %}
<
div
class
=
"btn-group pull-right"
>
{% if top_right_link %}
<
a
href
=
"{{ top_right_link | safe }}"
class
=
"btn btn-md btn-swh"
role
=
"button"
>
{{ top_right_link_text }}
</
a
>
{% endif %}
{% include "includes/vault-create-tasks.html" %}
</
div
>
{% include "includes/breadcrumbs.html" %}
</
div
>
<
script
>
function
setBranchesTabActive
()
{
$
(
'.swh-releases-switch'
).
parent
().
removeClass
(
'active'
);
$
(
'.swh-branches-switch'
).
parent
().
addClass
(
'active'
);
$
(
'#swh-tab-releases'
).
removeClass
(
'active'
);
$
(
'#swh-tab-branches'
).
addClass
(
'active'
);
}
function
setReleasesTabActive
()
{
$
(
'.swh-branches-switch'
).
parent
().
removeClass
(
'active'
);
$
(
'.swh-releases-switch'
).
parent
().
addClass
(
'active'
);
$
(
'#swh-tab-branches'
).
removeClass
(
'active'
);
$
(
'#swh-tab-releases'
).
addClass
(
'active'
);
}
$
(
'.dropdown-menu a.swh-branches-switch'
).
click
(
function
(
e
)
{
setBranchesTabActive
();
e
.
stopPropagation
();
});
$
(
'.dropdown-menu a.swh-releases-switch'
).
click
(
function
(
e
)
{
setReleasesTabActive
();
e
.
stopPropagation
();
});
var
dd_resized
=
false
;
// hack to resize the branches/releases dropdown content,
// taking icons into account, in order to make the whole names readable
$
(
'#swh-branches-releases-dd'
).
on
(
'show.bs.dropdown'
,
function
()
{
if
(
dd_resized
)
return
;
var
dd_width
=
$
(
'.swh-branches-releases'
).
width
();
$
(
'.swh-branches-releases'
).
width
(
dd_width
+
25
);
dd_resized
=
true
;
})
$
(
document
).
ready
(
function
()
{
{
%
if
origin_context
%
}
if
(
'{{ origin_context.branch }}'
!=
'None'
)
{
setBranchesTabActive
();
}
else
{
setReleasesTabActive
();
}
{
%
endif
%
}
});
</
script
>
File Metadata
Details
Attached
Mime Type
text/html
Expires
Jun 4 2025, 7:51 PM (12 w, 1 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
3399401
Attached To
rDWAPPS Web applications
Event Timeline
Log In to Comment