<feed xmlns='http://www.w3.org/2005/Atom'>
<title>markzz/aurweb.git/web/lib/config.inc.php.proto, branch v2.0.0-rc1</title>
<subtitle>aurweb working repository</subtitle>
<id>https://git.markzz.net/markzz/aurweb.git/atom/web/lib/config.inc.php.proto?h=v2.0.0-rc1</id>
<link rel='self' href='https://git.markzz.net/markzz/aurweb.git/atom/web/lib/config.inc.php.proto?h=v2.0.0-rc1'/>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/'/>
<updated>2012-09-17T22:58:46Z</updated>
<entry>
<title>Migrate all DB code to use PDO</title>
<updated>2012-09-17T22:58:46Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-08-08T22:09:51Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=e171f6f34eeacf35cf7142b4788d43e7d0978546'/>
<id>urn:sha1:e171f6f34eeacf35cf7142b4788d43e7d0978546</id>
<content type='text'>
All DB code currently uses the quickly aging mysql_* functions. These
functions are strongly discouraged and may eventually be deprecated.

Transition all code to utilize the PDO data access abstraction layer. PDO
allows for consistent query code across multiple databases. This could
potentially allow for someone to use a database other than MySQL with
minimal code changes.

All functions and behaviors are reproduced as faithfully as possible with
PDO equivalents and some changes in code.

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add routing front/back ends</title>
<updated>2012-07-15T16:16:26Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-07-13T20:49:37Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=eb22bcc7548d1b1025a3832aa4555792729d11b0'/>
<id>urn:sha1:eb22bcc7548d1b1025a3832aa4555792729d11b0</id>
<content type='text'>
This adds a URL mapping library that can be used to implement virtual
paths. Also, "web/html/index.php" is moved to "web/html/home.php" and
"web/html/index.php" becomes a routing front end that maps virtual paths
to corresponding files.

To enable the virtual path feature, all requests need to be redirected
to the "index.php" routing script. If you use lighttpd, following
rewrite rule can be used:

    url.rewrite = ( "^(.*)$" =&gt; "/index.php/$1" )

A similar rule can be used for Apache (using mod_rewrite).

Note that the current routing front end only works if PATH_INFO is
provided.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Remove deprecated configuration variable</title>
<updated>2012-07-06T09:27:09Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2012-06-29T00:49:42Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=445932d8e83df3102102dc57fe328fba00d66157'/>
<id>urn:sha1:445932d8e83df3102102dc57fe328fba00d66157</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>Add a new AUR_LOCATION setting</title>
<updated>2011-11-02T20:21:23Z</updated>
<author>
<name>Dan McGee</name>
<email>dan@archlinux.org</email>
</author>
<published>2011-10-21T20:15:55Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=e571a694d6e15891b591c28dd40cd464740a7126'/>
<id>urn:sha1:e571a694d6e15891b591c28dd40cd464740a7126</id>
<content type='text'>
This should be set to something like 'http://localhost' for development
or 'https://aur.archlinux.org' in production. It ensures all links in
the site stay in the development site and there is no sudden jump from
development to production environments.

Signed-off-by: Dan McGee &lt;dan@archlinux.org&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Move SUPPORTED_LANGS out of config.inc.php</title>
<updated>2011-10-24T15:57:51Z</updated>
<author>
<name>Dan McGee</name>
<email>dan@archlinux.org</email>
</author>
<published>2011-10-21T20:15:56Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=bd361242f919d4102637b8fb51591037e8b5bea5'/>
<id>urn:sha1:bd361242f919d4102637b8fb51591037e8b5bea5</id>
<content type='text'>
This has no real business being here, and is a pain to update when new
languages are shipped. Move it and the set_lang() function to
translator.inc.php instead so it doesn't overwhelm the user-configurable
settings file with static stuff.

Signed-off-by: Dan McGee &lt;dan@archlinux.org&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Replace "el_GR" translation by "el"</title>
<updated>2011-08-20T16:27:43Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2011-08-20T16:27:02Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=beafbfd6a0d7694f1cf5480b5ee1251095e42395'/>
<id>urn:sha1:beafbfd6a0d7694f1cf5480b5ee1251095e42395</id>
<content type='text'>
We discussed this on aur-dev. We shouldn't specify a territory unless
translations are specific to a variant of the Greek language.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add Portuguese (Brazilian) translation</title>
<updated>2011-08-20T16:25:23Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2011-08-20T16:16:05Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=87fba89a33ab1cbef86a4f688cb9490fdc4737aa'/>
<id>urn:sha1:87fba89a33ab1cbef86a4f688cb9490fdc4737aa</id>
<content type='text'>
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add Finnish and Dutch translations</title>
<updated>2011-08-13T10:45:29Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2011-08-13T10:45:29Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=ffa1a5a609e324d02af760ef4a53cf60c0756d4b'/>
<id>urn:sha1:ffa1a5a609e324d02af760ef4a53cf60c0756d4b</id>
<content type='text'>
Thanks-to: Jesse Jaara &lt;jesse.jaara@gmail.com&gt;
Thanks-to: Jelle van der Waa &lt;jelle@vdwaa.nl&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add a configuration setting to disallow HTTP login</title>
<updated>2011-08-11T19:04:38Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2011-08-11T15:35:03Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=1c9db1d1f14d5f83d8bd7dbbd535cf109680471f'/>
<id>urn:sha1:1c9db1d1f14d5f83d8bd7dbbd535cf109680471f</id>
<content type='text'>
If this is enabled, do not show the login form and display a note
suggesting to switch to a secure connection if a user accesses the site
via HTTP.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Make cache type selectable based on config value</title>
<updated>2011-06-22T13:21:21Z</updated>
<author>
<name>elij</name>
<email>elij.mx@gmail.com</email>
</author>
<published>2011-05-29T21:27:55Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=5853097561cddd1a2405ac9d9b9659ca8772cc5e'/>
<id>urn:sha1:5853097561cddd1a2405ac9d9b9659ca8772cc5e</id>
<content type='text'>
Provie a mechanism to specify cache type from NONE, APC, or MEMCACHE
based on a config variable.

If MEMCACHE type is selected, a list of servers can be specified to
provide multiserver support. Note that php-memcaced is required for
MEMCACHE support.

Lukas: Minor commenting style fixes.

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