<feed xmlns='http://www.w3.org/2005/Atom'>
<title>markzz/aurweb.git/web/lib/pkgbasefuncs.inc.php, branch pu-maint</title>
<subtitle>aurweb working repository</subtitle>
<id>https://git.markzz.net/markzz/aurweb.git/atom/web/lib/pkgbasefuncs.inc.php?h=pu-maint</id>
<link rel='self' href='https://git.markzz.net/markzz/aurweb.git/atom/web/lib/pkgbasefuncs.inc.php?h=pu-maint'/>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/'/>
<updated>2016-02-19T17:18:48Z</updated>
<entry>
<title>Unset $pinned unconditionally when displaying comments</title>
<updated>2016-02-19T17:18:48Z</updated>
<author>
<name>Mark Weiman</name>
<email>mark.weiman@markzz.com</email>
</author>
<published>2016-02-16T13:21:55Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=c23914fc1df309a6b1d85ec5387cfbef2161e655'/>
<id>urn:sha1:c23914fc1df309a6b1d85ec5387cfbef2161e655</id>
<content type='text'>
In pkg_comments.php, the $pinned variable is used to determine whether
the template is supposed to print all comments or pinned comments only.
If the $pinned variable is unset, the top 10 comments are printed,
followed by an "All comments" link. If the $pinned variable is set, the
pinned comments are printed and the "All comments" link below the
comment listing is skipped. Thus, we need to make sure that this
variable is always unset at the time we include the template to display
all comments, even if it was empty before.

Fixes FS#48194.

Signed-off-by: Mark Weiman &lt;mark.weiman@markzz.com&gt;
Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Rename the CommentNotify table to PackageNotifications</title>
<updated>2016-02-07T09:39:22Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-11-10T18:26:57Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=3412de21d32708b44d1fb3011649734e3cc67d9b'/>
<id>urn:sha1:3412de21d32708b44d1fb3011649734e3cc67d9b</id>
<content type='text'>
As a preparatory step to adding support for package notifications on
events other than comments, rename the database table accordingly.

Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Add comment undeletion functionality</title>
<updated>2016-01-23T10:50:03Z</updated>
<author>
<name>Marcel Korpel</name>
<email>marcel.korpel@gmail.com</email>
</author>
<published>2016-01-19T13:49:50Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=bd85441cf66b39d887f01654913da58ef313d14c'/>
<id>urn:sha1:bd85441cf66b39d887f01654913da58ef313d14c</id>
<content type='text'>
Only Developers and Trusted Users can undelete comments.

Signed-off-by: Marcel Korpel &lt;marcel.korpel@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Add link to flag OOD comment</title>
<updated>2015-12-15T16:46:18Z</updated>
<author>
<name>Mark Weiman</name>
<email>mark.weiman@markzz.com</email>
</author>
<published>2015-12-14T21:18:16Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=e9fe1a9eb100b11fda80f05b5b3239ee97e3a905'/>
<id>urn:sha1:e9fe1a9eb100b11fda80f05b5b3239ee97e3a905</id>
<content type='text'>
Implements: FS#46546

Signed-off-by: Mark Weiman &lt;mark.weiman@markzz.com&gt;
Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Store current date and time when deleting comments</title>
<updated>2015-12-13T20:19:31Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-12-13T19:57:06Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=51407d4a296563ccb3f488589a531babba7a8c22'/>
<id>urn:sha1:51407d4a296563ccb3f488589a531babba7a8c22</id>
<content type='text'>
Instead of modifying EditedTS when a comment is deleted, use a separate
field DelTS. Use this field to determine whether a comment has been
deleted, instead of checking DelUsersID which might be unset when the
corresponding user is deleted.

Fixes FS#47362.

Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>notify: Do not pass notification texts via pipes</title>
<updated>2015-12-13T09:22:58Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-12-12T17:28:42Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=e45609cf6645e650b8bafccd6860dec6aa9bb547'/>
<id>urn:sha1:e45609cf6645e650b8bafccd6860dec6aa9bb547</id>
<content type='text'>
Directly retrieve comments from the database instead of additionally
passing them via stdin.

Fixes FS#46742.

Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Implement capability to pin comments above others</title>
<updated>2015-12-12T14:09:47Z</updated>
<author>
<name>Mark Weiman</name>
<email>mark.weiman@markzz.com</email>
</author>
<published>2015-12-12T00:01:31Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=7d4c0c9ffa55ca60aea24b6aa64417783a15ea80'/>
<id>urn:sha1:7d4c0c9ffa55ca60aea24b6aa64417783a15ea80</id>
<content type='text'>
Adds capability to pin comments before others.

Implements FS#10863.

Signed-off-by: Mark Weiman &lt;mark.weiman@markzz.com&gt;
Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Remove redundant code</title>
<updated>2015-11-12T10:47:20Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-11-10T18:55:34Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=0c599b39b0cead26550cea73194e950718a03d4a'/>
<id>urn:sha1:0c599b39b0cead26550cea73194e950718a03d4a</id>
<content type='text'>
This code is no longer needed since 9746a65 (Port notification routines
to Python, 2015-06-27).

Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Check comment length in the backend</title>
<updated>2015-10-21T20:32:29Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-10-21T20:29:40Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=9c70e10aeb9b07981345e5af86350140753a7707'/>
<id>urn:sha1:9c70e10aeb9b07981345e5af86350140753a7707</id>
<content type='text'>
Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
<entry>
<title>Send notifications when changing co-maintainership</title>
<updated>2015-10-17T15:33:45Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>lfleischer@archlinux.org</email>
</author>
<published>2015-10-17T12:48:10Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=4411a55ec9a131619e8e8f33c2fe2b8d3da21ee2'/>
<id>urn:sha1:4411a55ec9a131619e8e8f33c2fe2b8d3da21ee2</id>
<content type='text'>
Implements FS#45590.

Signed-off-by: Lukas Fleischer &lt;lfleischer@archlinux.org&gt;
</content>
</entry>
</feed>
