<feed xmlns='http://www.w3.org/2005/Atom'>
<title>forums/phpBB/develop/adjust_avatars.php, branch master</title>
<subtitle>The forums.mageia.org Website</subtitle>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/'/>
<entry>
<title>[ticket/9556] Drop php closing tags, add trailing newline</title>
<updated>2010-11-11T18:10:55+00:00</updated>
<author>
<name>Igor Wiedler</name>
<email>igor@wiedler.ch</email>
</author>
<published>2010-11-09T07:59:25+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=af5b9a96409d788733fcb1ff367e0c7fb0583702'/>
<id>af5b9a96409d788733fcb1ff367e0c7fb0583702</id>
<content type='text'>
Closing tags converted using Oleg's script.
remove-php-end-tags.py -a .

Trailing newlines added using the following where $ext is file extension.
find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s;

Extensions: php, css, html, js, xml.

PHPBB3-9556
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Closing tags converted using Oleg's script.
remove-php-end-tags.py -a .

Trailing newlines added using the following where $ext is file extension.
find . -type f -name "*.$ext" -print | xargs printf "e %s\nw\n" | ed -s;

Extensions: php, css, html, js, xml.

PHPBB3-9556
</pre>
</div>
</content>
</entry>
<entry>
<title>Copy 3.0.x branch to trunk</title>
<updated>2009-10-04T18:14:59+00:00</updated>
<author>
<name>Meik Sievertsen</name>
<email>acydburn@phpbb.com</email>
</author>
<published>2009-10-04T18:14:59+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=2e17e448deed073f8614bb555a8ef20c57291c2a'/>
<id>2e17e448deed073f8614bb555a8ef20c57291c2a</id>
<content type='text'>
git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: file:///svn/phpbb/trunk@10211 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>remove no longer necessary files... hooray</title>
<updated>2008-12-24T13:14:24+00:00</updated>
<author>
<name>Meik Sievertsen</name>
<email>acydburn@phpbb.com</email>
</author>
<published>2008-12-24T13:14:24+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=e85f9f79bc892533e8b67d80ae265167f2e5d4cd'/>
<id>e85f9f79bc892533e8b67d80ae265167f2e5d4cd</id>
<content type='text'>
git-svn-id: file:///svn/phpbb/trunk@9221 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: file:///svn/phpbb/trunk@9221 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>removed executable props [Bug #6464]</title>
<updated>2008-06-04T15:38:14+00:00</updated>
<author>
<name>Nils Adermann</name>
<email>naderman@naderman.de</email>
</author>
<published>2008-06-04T15:38:14+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=150c6c4c245ac2728bca78aee998da9fe8ca7bb8'/>
<id>150c6c4c245ac2728bca78aee998da9fe8ca7bb8</id>
<content type='text'>
git-svn-id: file:///svn/phpbb/trunk@8599 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: file:///svn/phpbb/trunk@8599 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>ok... i hope i haven't messed too much with the code and everything is still working.</title>
<updated>2008-05-29T12:25:56+00:00</updated>
<author>
<name>Meik Sievertsen</name>
<email>acydburn@phpbb.com</email>
</author>
<published>2008-05-29T12:25:56+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=2f4a618900e2c3b6ea14c68cbeb5897cd2ac1a04'/>
<id>2f4a618900e2c3b6ea14c68cbeb5897cd2ac1a04</id>
<content type='text'>
Changes:
- Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed.
- A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added.

git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Changes:
- Ascraeus now uses constants for the phpbb root path and the php extension. This ensures more security for external applications and modifications (no more overwriting of root path and extension possible through insecure mods and register globals enabled) as well as no more globalizing needed.
- A second change implemented here is an additional short-hand-notation for append_sid(). It is allowed to omit the root path and extension now (for example calling append_sid('memberlist')) - in this case the root path and extension get added automatically. The hook is called after these are added.

git-svn-id: file:///svn/phpbb/trunk@8572 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>finetuning.</title>
<updated>2007-05-03T09:40:21+00:00</updated>
<author>
<name>Henry Sudhof</name>
<email>kellanved@phpbb.com</email>
</author>
<published>2007-05-03T09:40:21+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=58ac5df6b376ef57c333565b94698c41b02e67cf'/>
<id>58ac5df6b376ef57c333565b94698c41b02e67cf</id>
<content type='text'>
git-svn-id: file:///svn/phpbb/trunk@7454 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: file:///svn/phpbb/trunk@7454 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>some tiny changes</title>
<updated>2007-05-02T21:08:50+00:00</updated>
<author>
<name>Meik Sievertsen</name>
<email>acydburn@phpbb.com</email>
</author>
<published>2007-05-02T21:08:50+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=6b28ae8b2286e659785708e958a26befda88fa4b'/>
<id>6b28ae8b2286e659785708e958a26befda88fa4b</id>
<content type='text'>
git-svn-id: file:///svn/phpbb/trunk@7452 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
git-svn-id: file:///svn/phpbb/trunk@7452 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>Yah know: this is not supported</title>
<updated>2007-04-30T22:05:17+00:00</updated>
<author>
<name>Henry Sudhof</name>
<email>kellanved@phpbb.com</email>
</author>
<published>2007-04-30T22:05:17+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=ab4630de009c34cdcba946c780a6db231a42d7ed'/>
<id>ab4630de009c34cdcba946c780a6db231a42d7ed</id>
<content type='text'>
#10347


git-svn-id: file:///svn/phpbb/trunk@7443 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
#10347


git-svn-id: file:///svn/phpbb/trunk@7443 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
<entry>
<title>Prepare to be yelled at and brace for the tide of bug reports: I had hoped we would not have to do this, but it seems that we have to.</title>
<updated>2007-04-30T10:46:17+00:00</updated>
<author>
<name>Henry Sudhof</name>
<email>kellanved@phpbb.com</email>
</author>
<published>2007-04-30T10:46:17+00:00</published>
<link rel='alternate' type='text/html' href='https://gitweb.mageia.org/web/forums/commit/?id=42251d008c06ad0f475f116643c6583fc9a4eda7'/>
<id>42251d008c06ad0f475f116643c6583fc9a4eda7</id>
<content type='text'>
-Route all avatar downloads through download.php - adrien
-Change the way inline attachments are delivered
-Fixes a few (unreported) bugs, notably avatar upload during group generation
-#10079


git-svn-id: file:///svn/phpbb/trunk@7429 89ea8834-ac86-4346-8a33-228a782c2dd0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
-Route all avatar downloads through download.php - adrien
-Change the way inline attachments are delivered
-Fixes a few (unreported) bugs, notably avatar upload during group generation
-#10079


git-svn-id: file:///svn/phpbb/trunk@7429 89ea8834-ac86-4346-8a33-228a782c2dd0
</pre>
</div>
</content>
</entry>
</feed>
