<feed xmlns='http://www.w3.org/2005/Atom'>
<title>markzz/aurweb.git/web/template/account_edit_form.php, branch v2.0.0</title>
<subtitle>aurweb working repository</subtitle>
<id>https://git.markzz.net/markzz/aurweb.git/atom/web/template/account_edit_form.php?h=v2.0.0</id>
<link rel='self' href='https://git.markzz.net/markzz/aurweb.git/atom/web/template/account_edit_form.php?h=v2.0.0'/>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/'/>
<updated>2012-10-20T16:47:01Z</updated>
<entry>
<title>account_edit_form.php: Fix some XHTML errors</title>
<updated>2012-10-20T16:47:01Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-10-18T21:12:27Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=4cf84f978bd386bd30888c5a4f497b2541cc689f'/>
<id>urn:sha1:4cf84f978bd386bd30888c5a4f497b2541cc689f</id>
<content type='text'>
* Add &lt;/option&gt; close tags
* Add VI delimiter to selected option
* Add quotes to language codes

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Remove character limit on password length</title>
<updated>2012-10-11T19:19:16Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-10-09T20:37:18Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=24a8452880476201ab231b86f6a9cde1e74e107c'/>
<id>urn:sha1:24a8452880476201ab231b86f6a9cde1e74e107c</id>
<content type='text'>
As all new passwords are hashed and therefore stored in the database
at the same length, this limitation is no longer needed.

Fixes FS#31855

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Sync account editing page with archweb</title>
<updated>2012-10-04T00:02:08Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-09-19T09:43:16Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=65cc6d3e2dbb9847ac8751983226c79abc574dc7'/>
<id>urn:sha1:65cc6d3e2dbb9847ac8751983226c79abc574dc7</id>
<content type='text'>
Synchronize the layout of the account editing page with the profiles
page from archweb.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use echo shortcut syntax</title>
<updated>2012-09-24T10:23:04Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-09-21T06:57:29Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=6102759b7cb9fd23f4e7fa5f12137334ff30a410'/>
<id>urn:sha1:6102759b7cb9fd23f4e7fa5f12137334ff30a410</id>
<content type='text'>
Replace all occurrences of "&lt;?php echo" and "&lt;?php print" by "&lt;?=" to
reduce noise in templates.

Note that as of PHP 5.4.0, "&lt;?=" is always available and no longer
requires "short_open_tag" to be set.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Make account registration work with recent account editing changes</title>
<updated>2012-09-17T22:59:59Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-09-16T19:54:49Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=0afe82f87c2a66dcdc35e7373b7c20b68895ad14'/>
<id>urn:sha1:0afe82f87c2a66dcdc35e7373b7c20b68895ad14</id>
<content type='text'>
The account editing form requires two different form action URLs
due to the fact that the same template is shared for both account
registration and account editing.

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>account_edit_form.php: Remove another stray "&lt;/div&gt;"</title>
<updated>2012-07-17T15:55:59Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-07-17T15:55:01Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=fc657af7f6c52aabbb40b1da922672c554f72438'/>
<id>urn:sha1:fc657af7f6c52aabbb40b1da922672c554f72438</id>
<content type='text'>
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Use virtual path feature for links</title>
<updated>2012-07-15T20:44:51Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-07-13T23:24:59Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=2425f963f8ad45292c217914b5fee1ed18104c26'/>
<id>urn:sha1:2425f963f8ad45292c217914b5fee1ed18104c26</id>
<content type='text'>
Use virtual paths in links (e.g. link to "/packages/" instead of
"/packages.php" etc.) if the virtual path feature is enabled.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Merge branch 'maint'</title>
<updated>2012-07-14T20:52:04Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-07-14T20:47:04Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=f3ce74c714e3460bb3e3e786f626e397d3139062'/>
<id>urn:sha1:f3ce74c714e3460bb3e3e786f626e397d3139062</id>
<content type='text'>
Conflicts:
	web/html/account.php
	web/html/addvote.php
	web/html/pkgsubmit.php
	web/lib/acctfuncs.inc.php
	web/template/actions_form.php
	web/template/pkg_comment_form.php
	web/template/pkg_comments.php
	web/template/pkg_details.php
	web/template/pkg_search_results.php
	web/template/tu_details.php
</content>
</entry>
<entry>
<title>acctfuncs.inc.php: Move XHTML to account_edit_form.php template</title>
<updated>2012-07-06T09:26:31Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-05-23T17:53:33Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=f78d46c65420e7b1ea6f22b73ce427902ce2810c'/>
<id>urn:sha1:f78d46c65420e7b1ea6f22b73ce427902ce2810c</id>
<content type='text'>
XHTML should be eliminated from lib/ as much as possible. This pulls the XHTML
out of a function that simply echoes the code, and moves it into a more
reasonable template file in account_edit_form.php

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