<feed xmlns='http://www.w3.org/2005/Atom'>
<title>markzz/aurweb.git/web/lib/translator.inc.php, branch v3.1.0</title>
<subtitle>aurweb working repository</subtitle>
<id>https://git.markzz.net/markzz/aurweb.git/atom/web/lib/translator.inc.php?h=v3.1.0</id>
<link rel='self' href='https://git.markzz.net/markzz/aurweb.git/atom/web/lib/translator.inc.php?h=v3.1.0'/>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/'/>
<updated>2014-05-13T12:19:55Z</updated>
<entry>
<title>Set language using a POST request</title>
<updated>2014-05-13T12:19:55Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2014-05-13T12:19:55Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=bc93e68dc7ec5181e931816ae34f9cc6bceb1b90'/>
<id>urn:sha1:bc93e68dc7ec5181e931816ae34f9cc6bceb1b90</id>
<content type='text'>
Fixes FS#39027.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add Japanese and Slovak languages</title>
<updated>2013-08-26T16:45:10Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2013-08-26T16:45:10Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=be80aa0f01376897c0d7e1533308523d689ea677'/>
<id>urn:sha1:be80aa0f01376897c0d7e1533308523d689ea677</id>
<content type='text'>
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Add database wrapper class and new connection method</title>
<updated>2013-02-10T11:10:37Z</updated>
<author>
<name>canyonknight</name>
<email>canyonknight@gmail.com</email>
</author>
<published>2013-02-03T16:26:28Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=8e03e68d687015b5cd8c9d3857e1a1d007252afa'/>
<id>urn:sha1:8e03e68d687015b5cd8c9d3857e1a1d007252afa</id>
<content type='text'>
Uses the Singleton pattern to ensure all queries use the same
database connection that is released upon script completion.

All database connections should now be called with DB::connect() and
not db_connect().

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Changed 'Dutch' to 'Nederlands'</title>
<updated>2012-12-22T16:01:54Z</updated>
<author>
<name>Marcel Korpel</name>
<email>marcel.lists@gmail.com</email>
</author>
<published>2012-12-07T13:32:08Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=987faad145ba7d3fd3056fa9343d3a5f4c70dff6'/>
<id>urn:sha1:987faad145ba7d3fd3056fa9343d3a5f4c70dff6</id>
<content type='text'>
Supported languages are listed in their native language. Only Dutch is
in English. Translate reference into Dutch.

canyonknight: Commit message clarity

Signed-off-by: canyonknight &lt;canyonknight@gmail.com&gt;
Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>Avoid use of "&lt;b&gt;"/"&lt;/b&gt;"</title>
<updated>2012-09-24T10:23:05Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-09-21T08:42:17Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=d56a88897bcaa9d552d1d2b90c33b7c6e29e330a'/>
<id>urn:sha1:d56a88897bcaa9d552d1d2b90c33b7c6e29e330a</id>
<content type='text'>
* Use "&lt;label&gt;"/"&lt;/label&gt;" for form labels.
* Use "&lt;strong&gt;"/"&lt;/strong&gt;" for important text.
* Use "&lt;h4&gt;"/"&lt;/h4&gt;" for headings.
* Drop "&lt;b&gt;"/"&lt;/b&gt;" everywhere else.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<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>Merge branch 'maint'</title>
<updated>2012-03-09T08:27:49Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2012-03-09T08:27:49Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=1e29bd2217f4320d3df156c448bf16aaeaec53d6'/>
<id>urn:sha1:1e29bd2217f4320d3df156c448bf16aaeaec53d6</id>
<content type='text'>
Conflicts:
	UPGRADING
	web/lib/config.inc.php.proto
</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>web/lib/translator.inc.php: Use vsprintf() in __()</title>
<updated>2011-08-20T18:28:47Z</updated>
<author>
<name>Lukas Fleischer</name>
<email>archlinux@cryptocrack.de</email>
</author>
<published>2011-08-15T08:16:46Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=b5d5687517c50d4bd6d8050a06b2902cf6c56b00'/>
<id>urn:sha1:b5d5687517c50d4bd6d8050a06b2902cf6c56b00</id>
<content type='text'>
Remove hacky substitution code from __() and use vsprintf() instead
which will deal with all sorts of format strings properly.

Signed-off-by: Lukas Fleischer &lt;archlinux@cryptocrack.de&gt;
</content>
</entry>
<entry>
<title>rename *.inc files to *.inc.php and adjust imports and references</title>
<updated>2011-06-22T13:15:04Z</updated>
<author>
<name>elij</name>
<email>elij.mx@gmail.com</email>
</author>
<published>2011-05-29T21:33:37Z</published>
<link rel='alternate' type='text/html' href='https://git.markzz.net/markzz/aurweb.git/commit/?id=888db089c515270fd5cd9a9bedd217110f43bc4c'/>
<id>urn:sha1:888db089c515270fd5cd9a9bedd217110f43bc4c</id>
<content type='text'>
Lukas: Add note to "UPGRADING".

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