Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Kevin Morris
aurweb
Commits
8d9f2093
Commit
8d9f2093
authored
Nov 20, 2020
by
hashworks
Committed by
Kevin Morris
Jun 12, 2021
Browse files
Add modified packages RSS feed to frontend
parent
4330fe4f
Pipeline
#8487
passed with stage
in 1 minute and 1 second
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
web/html/css/archweb.css
View file @
8d9f2093
...
...
@@ -556,6 +556,10 @@ h3 span.arrow {
margin
:
-2em
0
0
0
;
}
#pkg-updates
.rss-icon.latest
{
margin-right
:
1em
;
}
#pkg-updates
table
{
margin
:
0
;
}
...
...
web/template/header.php
View file @
8d9f2093
...
...
@@ -9,6 +9,7 @@
<link
rel=
'stylesheet'
type=
'text/css'
href=
'/css/aurweb.css'
/>
<link
rel=
'shortcut icon'
href=
'/images/favicon.ico'
/>
<link
rel=
'alternate'
type=
'application/rss+xml'
title=
'Newest Packages RSS'
href=
'
<?=
get_uri
(
'/rss/'
);
?>
'
/>
<link
rel=
'alternate'
type=
'application/rss+xml'
title=
'Modified Packages RSS'
href=
'
<?=
get_uri
(
'/rss/modified/'
);
?>
'
/>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=UTF-8"
/>
<?php
if
(
isset
(
$details
[
'Description'
])
&&
!
empty
(
$details
[
'Description'
]))
:
?>
<meta
name=
"description"
content=
"
<?=
htmlspecialchars
(
$details
[
'Description'
])
?>
"
/>
...
...
web/template/stats/updates_table.php
View file @
8d9f2093
<h3>
<?=
__
(
"Recent Updates"
)
?>
<span
class=
"more"
>
(
<a
href=
"
<?=
get_uri
(
'/packages/'
)
?>
?SB=l&SO=d"
>
<?=
__
(
'more'
)
?>
</a>
)
</span></h3>
<a
href=
"
<?=
get_uri
(
'/rss/'
)
?>
"
title=
"Arch Package Updates RSS Feed"
class=
"rss-icon"
><img
src=
"/images/rss.svg"
alt=
"RSS Feed"
/></a>
<a
href=
"
<?=
get_uri
(
'/rss/'
)
?>
"
title=
"AUR Latest Packages RSS Feed"
class=
"rss-icon latest"
><img
src=
"/images/rss.svg"
alt=
"RSS Feed"
/></a>
<a
href=
"
<?=
get_uri
(
'/rss/modified/'
)
?>
"
title=
"AUR Modified Packages RSS Feed"
class=
"rss-icon"
><img
src=
"/images/rss.svg"
alt=
"RSS Feed"
/></a>
<table>
<tbody>
...
...
Write
Preview
Markdown
is supported
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