<feed xmlns='http://www.w3.org/2005/Atom'>
<title>markzz/aurweb.git/web/html/index.php, branch v2.0.0-rc1</title>
<subtitle>aurweb working repository</subtitle>
<id>https://git.markzz.net/markzz/aurweb.git/atom/web/html/index.php?h=v2.0.0-rc1</id>
<link rel='self' href='https://git.markzz.net/markzz/aurweb.git/atom/web/html/index.php?h=v2.0.0-rc1'/>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/'/>
<updated>2012-09-28T06:57:25Z</updated>
<entry>
<title>Move package merging to a separate page</title>
<updated>2012-09-28T06:57:25Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-27T21:03:50Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=752c5a6e3483b2309e4b48943adce2625a9bc716'/>
<id>urn:sha1:752c5a6e3483b2309e4b48943adce2625a9bc716</id>
<content type='text'>
Package actions now have a separate box on the package details page. Add
a package merge link in that box.

Link leads to a new page (pkgmerge.php) that can be used to confirm package
merging. A separate page with confirmation is used to avoid CSRFs.

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Move package deletion to a separate page</title>
<updated>2012-09-28T06:57:24Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-27T21:02:11Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=00cffd7ddba6bd7b65fcd4c1ce625515cf5489d0'/>
<id>urn:sha1:00cffd7ddba6bd7b65fcd4c1ce625515cf5489d0</id>
<content type='text'>
Package actions now have a separate box on the package details page. Make
a package deletion link in that box.

Link leads to a new page (pkgdel.php) that can be used to confirm package
deletion. A separate page with confirmation is used to avoid CSRFs.

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Do not set GET parameters in the routing framework</title>
<updated>2012-09-18T12:05:11Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-09-18T11:57:09Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=2e552cbcad8f4abd64041c793851b7420dd5361c'/>
<id>urn:sha1:2e552cbcad8f4abd64041c793851b7420dd5361c</id>
<content type='text'>
Setting GET parameters manually is bad style and causes some strange
side effects when using virtual URLs and mkurl().

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>index.php: Fix undefined variable notice</title>
<updated>2012-09-18T12:01:09Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-09-18T11:21:29Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=3d4cb66aed66313f97c942faa0dc7a4df50bfff2'/>
<id>urn:sha1:3d4cb66aed66313f97c942faa0dc7a4df50bfff2</id>
<content type='text'>
Spotted when browsing the package details page while being logged out.

Reported-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Overhaul ability to edit own account</title>
<updated>2012-09-17T22:59:45Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-15T14:22:50Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=e84eb4ae54ceaa329d154bcac214be281e71ba0a'/>
<id>urn:sha1:e84eb4ae54ceaa329d154bcac214be281e71ba0a</id>
<content type='text'>
* Restructure account.php to remove redundant code.
* Remove own_account_details().
* Rework logic check to default to no access to account edit form.
* Make default account action viewing account info.

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use URL rewriting for user account update page</title>
<updated>2012-09-17T22:59:29Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-15T14:02:10Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=d6f89f97c08d7eeb805246dc94a835057d53243d'/>
<id>urn:sha1:d6f89f97c08d7eeb805246dc94a835057d53243d</id>
<content type='text'>
The "UpdateAccount" page displays information as to whether an account
update was successful. All POST account info goes to this page, so use
it with sane URLs.

Before:
AUR_URL/account/?Action=UpdateAccount&amp;U=userfoo

After:
AUR_URL/account/userfoo/update

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use URL rewriting for user editing page</title>
<updated>2012-09-17T22:59:23Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-12T21:32:43Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=5c0de7825d2f1680a2a430410be49696aca35946'/>
<id>urn:sha1:5c0de7825d2f1680a2a430410be49696aca35946</id>
<content type='text'>
Allows for easier account editing and saner URLs. Update account editing links
to use new URL.

Before:
AUR_URL/account/?Action=DisplayAccount&amp;U=userfoo

After:
AUR_URL/account/userfoo/edit

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use URL rewriting for user info page</title>
<updated>2012-09-17T22:59:21Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-12T22:21:22Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=98b6ba94795b27b098276b30ca9fd61b28b2b110'/>
<id>urn:sha1:98b6ba94795b27b098276b30ca9fd61b28b2b110</id>
<content type='text'>
Navigation to the "AccountInfo" page should only require a user to know the
username of the account they are looking for. Update all AUR links that use
the user info page to reflect the new URL.

Before:
AUR_URL/account/?Action=AccountInfo&amp;U=userfoo

After:
AUR_URL/account/userfoo

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use the "new" icon from archweb for the recent updates table</title>
<updated>2012-09-17T22:59:00Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-09T19:02:34Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=36abb9efb9b41e07c86d9ab9f817833f49abe8fa'/>
<id>urn:sha1:36abb9efb9b41e07c86d9ab9f817833f49abe8fa</id>
<content type='text'>
Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use virtual paths for voters page</title>
<updated>2012-07-18T06:23:27Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-07-18T06:23:27Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=7ad4bc352d678ec011af50d7be8e159d26a8a749'/>
<id>urn:sha1:7ad4bc352d678ec011af50d7be8e159d26a8a749</id>
<content type='text'>
Link to "/packages/$pkgname/voters/" instead of using "/voters/" and a
get parameter to request a specific package by ID.

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