SourceForge.net

Search

Log of /phpBB2/includes/bbcode.php

Parent Directory Parent Directory


Links to HEAD: (view) (download)
Sticky Tag:

Revision 1.115 - (view) (download) - [select for diffs]
Thu Jan 3 17:00:34 2008 UTC (9 months ago) by davidmj
Branch: MAIN
CVS Tags: HEAD
Changes since 1.114: +2 -2 lines
Diff to previous 1.114
oh boy...
- Migrate code base to PHP 5.1+

Revision 1.114 - (view) (download) - [select for diffs]
Sun Oct 7 10:34:45 2007 UTC (12 months ago) by naderman
Branch: MAIN
CVS Tags: release_3_0_0, release_3_0_RC6, release_3_0_RC7, release_3_0_RC8
Branch point for: phpBB-3_0_0
Changes since 1.113: +10 -1 lines
Diff to previous 1.113
- Match custom BBCodes in the same way during first and second pass - patch provided by IBBoard [Bug #14268]

Revision 1.113 - (view) (download) - [select for diffs]
Fri Oct 5 14:30:07 2007 UTC (12 months ago) by acydburn
Branch: MAIN
Changes since 1.112: +12 -4 lines
Diff to previous 1.112
dumdidum... sorry. ;)

Revision 1.112 - (view) (download) - [select for diffs]
Sun Aug 19 21:29:30 2007 UTC (13 months, 2 weeks ago) by naderman
Branch: MAIN
CVS Tags: release_3_0_RC5
Changes since 1.111: +2 -2 lines
Diff to previous 1.111
- Prevent {URL} token in custom BBCodes from make_clickable messing [Bug #14151]
- Added alternative tokens to custom BBCodes which are safe for CSS/Javascript and changed TEXT token to entitise opening and closing parantheses.

Revision 1.111 - (view) (download) - [select for diffs]
Sun Aug 19 13:36:52 2007 UTC (13 months, 2 weeks ago) by naderman
Branch: MAIN
Changes since 1.110: +4 -5 lines
Diff to previous 1.110
- BBCode parsing order should ALWAYS be censor_text(), bbcode_secon_pass(), bbcode_nl2br(), smiley_text(), parse_attachments()
- using \r on custom bbcodes to allow line breaks [Bug #10758]

Revision 1.110 - (view) (download) - [select for diffs]
Fri Mar 9 19:01:40 2007 UTC (18 months, 4 weeks ago) by dhn2
Branch: MAIN
CVS Tags: release_3_0_RC1, release_3_0_RC2, release_3_0_RC3, release_3_0_RC4
Changes since 1.109: +2 -2 lines
Diff to previous 1.109
#8576
Introducing percentage based font sizing for the font-site BBCode

Revision 1.109 - (view) (download) - [select for diffs]
Thu Mar 8 01:00:51 2007 UTC (19 months ago) by davidmj
Branch: MAIN
Changes since 1.108: +2 -2 lines
Diff to previous 1.108
#8456

Revision 1.108 - (view) (download) - [select for diffs]
Fri Mar 2 21:00:36 2007 UTC (19 months ago) by davidmj
Branch: MAIN
Changes since 1.107: +2 -2 lines
Diff to previous 1.107
blah, no need to capture this

Revision 1.107 - (view) (download) - [select for diffs]
Fri Mar 2 19:24:18 2007 UTC (19 months ago) by davidmj
Branch: MAIN
Changes since 1.106: +4 -4 lines
Diff to previous 1.106
#8374

Revision 1.106 - (view) (download) - [select for diffs]
Tue Jan 9 14:09:37 2007 UTC (20 months, 4 weeks ago) by acydburn
Branch: MAIN
CVS Tags: release_3_0_B5
Changes since 1.105: +2 -2 lines
Diff to previous 1.105
- some bugfixes
- bugfixes for the convertor (typecasting for example was totally broken)

Revision 1.105 - (view) (download) - [select for diffs]
Sun Dec 17 17:59:08 2006 UTC (21 months, 2 weeks ago) by davidmj
Branch: MAIN
Changes since 1.104: +6 -19 lines
Diff to previous 1.104
- Changed handling of the bitfield in bbcode.php
- #6270, reverted to an earlier version of list handling + bug fixes

Revision 1.104 - (view) (download) - [select for diffs]
Fri Nov 24 14:57:20 2006 UTC (22 months, 1 week ago) by acydburn
Branch: MAIN
CVS Tags: release_3_0_B4
Changes since 1.103: +5 -5 lines
Diff to previous 1.103
rather large update, most important things done:
- implemented provided patch/diff file for bug #5350 (Highway of Life) with some tiny changes and alterations
- more username/colour changes/fixes
- added a note about PM rule-dependant message removals so the user is not wondering too much if he can't remember his rules. :)
- some column changes to fix unicode issues
- bugfixes

Revision 1.103 - (view) (download) - [select for diffs]
Sat Oct 7 17:40:06 2006 UTC (2 years ago) by acydburn
Branch: MAIN
CVS Tags: release_3_0_B3
Changes since 1.102: +3 -3 lines
Diff to previous 1.102
he braces style is deprecated as of PHP 6

Revision 1.102 - (view) (download) - [select for diffs]
Sat Sep 23 11:37:05 2006 UTC (2 years ago) by acydburn
Branch: MAIN
Changes since 1.101: +7 -1 lines
Diff to previous 1.101
fix custom bbcode html replacement to correctly replace references
It failed if there was a number directly after the token, resulting in $12345, where $1 was needed. Fixed by using ${x}

also made sure that newlines within the html replacement are not replaced with <br />.

Revision 1.101 - (view) (download) - [select for diffs]
Sat Aug 12 13:12:17 2006 UTC (2 years, 1 month ago) by acydburn
Branch: MAIN
CVS Tags: release_3_0_B2
Changes since 1.100: +7 -8 lines
Diff to previous 1.100
sql_in_set changes

Revision 1.100 - (view) (download) - [select for diffs]
Fri Aug 11 21:52:45 2006 UTC (2 years, 1 month ago) by davidmj
Branch: MAIN
Changes since 1.99: +2 -3 lines
Diff to previous 1.99
so.... what does this thing do?

well, the super fast, ultra efficient, massively huge BBCode handling system was implemented differently on each DBMS. Although this provided the best performance, the solution was a bit hacky.

So what does this new thing do? We use base64 encoding to make everything nice and shiny, it turns into nice, safe characters that we can just jam into varchars on essentially any database. This has two implications: we must decode every bitfield we get AND we have slightly fewer IDs to work with. It goes down from 2040 BBCodes to 1512. We lose like a quarter of them :P

P.S. I hope nothing broke :P

Revision 1.99 - (view) (download) - [select for diffs]
Mon Jul 24 10:08:34 2006 UTC (2 years, 2 months ago) by davidmj
Branch: MAIN
Changes since 1.98: +33 -26 lines
Diff to previous 1.98
OK...

This commit should increase the total number of BBCodes from 31 to 2040. Some things to watch out for:

Each database likes to deal with binary data in its own, special way. They are, quite frankly, too cool for school.

MySQL, MSSQL and Oracle all allow me to send in a default value for their binary column using a hex number. However, MSSQL forces me to send the specific data as a hex number and thus we must CAST it.

PostgreSQL allows me to set a binary column, but with a twist. It demands that the default be in _octal_ and its datatype allows somewhere around a gigabyte's worth of BBCodes ( PGSQL users, we shut you down to 2040 for your own good! )

Firebird has no decent mechanism for allowing me to shuttle in binary data so I must force my way in. By virtue of triggers and a UDF, we ram in our default values.

SQLite is the most bizarre of them all. They have no mechanism for turning an ASCII code into a ASCII character. Because of this, we have a trigger and a UDF (just like Firebird!) but with a twist! The UDF is defined on the PHP side of things instead of SQL. SQLite also demands that it's data be encoded before being sent off.

Other notes:
- SQLite installs again :D
- Firebird nearly installs again :P
- Database backup is not screwed up :P

P.S.
I hope nothing broke :D

Revision 1.98 - (view) (download) - [select for diffs]
Mon Jul 10 15:55:10 2006 UTC (2 years, 2 months ago) by acydburn
Branch: MAIN
Changes since 1.97: +2 -2 lines
Diff to previous 1.97
fix some bugs... again. :)

Revision 1.97 - (view) (download) - [select for diffs]
Tue Jun 20 00:09:45 2006 UTC (2 years, 3 months ago) by davidmj
Branch: MAIN
Changes since 1.96: +2 -2 lines
Diff to previous 1.96
what? yeah...
- turns out the backup issue was not a backup issue but a schema issue
- let there be color

Revision 1.96 - (view) (download) - [select for diffs]
Fri Jun 16 16:54:38 2006 UTC (2 years, 3 months ago) by acydburn
Branch: MAIN
CVS Tags: release_3_0_B1
Changes since 1.95: +6 -3 lines
Diff to previous 1.95
- removed db cache (might re-appear, but for now we do not see the need for it)
- all changes to styles/subsilver/template are purely cosmetic (no functional changes)
- cosmetics
- bugfixes
- add index to modules table
- use modules ordering code for forums too

Revision 1.95 - (view) (download) - [select for diffs]
Wed Jun 14 22:09:09 2006 UTC (2 years, 3 months ago) by acydburn
Branch: MAIN
Changes since 1.94: +47 -49 lines
Diff to previous 1.94
erm, ok, my fault. :/

Revision 1.94 - (view) (download) - [select for diffs]
Tue Jun 13 21:06:27 2006 UTC (2 years, 3 months ago) by acydburn
Branch: MAIN
Changes since 1.93: +2 -2 lines
Diff to previous 1.93
make sure custom profile fields are created correctly on registration (#2225)

Revision 1.93 - (view) (download) - [select for diffs]
Sun Jun 11 18:13:49 2006 UTC (2 years, 3 months ago) by acydburn
Branch: MAIN
Changes since 1.92: +201 -140 lines
Diff to previous 1.92
- fixed a few bugs
- added user_add() function
- check posted images ([img]) for same domain/scipt and php files
- auth_api.html updated to the coding guidelines look&feel
- introduced ability to force non page-updates (cron is using it)
- correctly resend coppa email

Revision 1.92 - (view) (download) - [select for diffs]
Sat Jun 10 16:51:23 2006 UTC (2 years, 3 months ago) by davidmj
Branch: MAIN
Changes since 1.91: +2 -1 lines
Diff to previous 1.91
- BBCode bugs
- PostgreSQL now gives us database info (if you are running 8.1 or have the dbsize contrib module installed)

Revision 1.91 - (view) (download) - [select for diffs]
Sun May 28 15:42:05 2006 UTC (2 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.90: +7 -2 lines
Diff to previous 1.90
- get every bbcode tpl block defined within bbcode.html. ;) (#1889)

Revision 1.90 - (view) (download) - [select for diffs]
Fri May 26 15:04:26 2006 UTC (2 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.89: +8 -2 lines
Diff to previous 1.89
some tiny changes...

Revision 1.89 - (view) (download) - [select for diffs]
Sun May 21 16:54:18 2006 UTC (2 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.88: +6 -1 lines
Diff to previous 1.88
- fixing a few smaller bugs/glitches
- init user session in cron.php (else it can produce errors if functions expect the user object being set)
- fix sql escaping for mssql/mssql_odbc

Revision 1.88 - (view) (download) - [select for diffs]
Mon Mar 27 21:32:08 2006 UTC (2 years, 6 months ago) by acydburn
Branch: MAIN
Changes since 1.87: +2 -3 lines
Diff to previous 1.87
#1327

Revision 1.36.2.41 - (view) (download) - [select for diffs]
Sun Feb 26 17:34:50 2006 UTC (2 years, 7 months ago) by grahamje
Branch: phpBB-2_0_0
CVS Tags: release_2_0_20, release_2_0_21, release_2_0_22
Changes since 1.36.2.40: +2 -2 lines
Diff to previous 1.36.2.40 , to branch point 1.36 , to next main 1.115
Time to roll the dice and see what number comes up :)
[Replace calls to rand/mt_rand in certain places with an alternative method]

Revision 1.36.2.40 - (view) (download) - [select for diffs]
Wed Feb 22 20:53:55 2006 UTC (2 years, 7 months ago) by grahamje
Branch: phpBB-2_0_0
Changes since 1.36.2.39: +4 -4 lines
Diff to previous 1.36.2.39 , to branch point 1.36
A slight alteration from David to address performance issues with particular versions of PHP and IIS

Revision 1.87 - (view) (download) - [select for diffs]
Wed Jan 4 06:37:17 2006 UTC (2 years, 9 months ago) by davidmj
Branch: MAIN
CVS Tags: milestone_4
Changes since 1.86: +10 -8 lines
Diff to previous 1.86
- file_get_contents instead of imploding file()s or fread()ing till the maximum filesize
- language and style properly use compression
- language now prompts user for methods
- functions_compress does not need to eval() to get a hex date, instead calls pack()
- A writing method is defined at the end of tar operations only if data has been sent to the archive
- BBCode parser does not have to eval(), it instead uses the regex to loop around the matches

Hopefully nothing broke :-)

Revision 1.36.2.39 - (view) (download) - [select for diffs]
Thu Dec 29 15:12:20 2005 UTC (2 years, 9 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_19
Changes since 1.36.2.38: +5 -5 lines
Diff to previous 1.36.2.38 , to branch point 1.36
- fix for quote tag for a bug in 2.0.19

Revision 1.86 - (view) (download) - [select for diffs]
Thu Dec 22 16:28:26 2005 UTC (2 years, 9 months ago) by acydburn
Branch: MAIN
Changes since 1.85: +3 -15 lines
Diff to previous 1.85
- ok, get away with the secondary style approach (styles can be mixed together easily with the acp)
- introduce a more generic approach of defining some additional variables through cfg files as well as the name, copyright and version fields
- please note that at the moment this is in flux. I added it now for Tom because he needs the theme parameters.

Revision 1.36.2.38 - (view) (download) - [select for diffs]
Thu Dec 22 12:15:40 2005 UTC (2 years, 9 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.37: +2 -2 lines
Diff to previous 1.36.2.37 , to branch point 1.36
- let quote tags work again. ;)

Revision 1.36.2.37 - (view) (download) - [select for diffs]
Wed Dec 21 13:06:04 2005 UTC (2 years, 9 months ago) by grahamje
Branch: phpBB-2_0_0
Changes since 1.36.2.36: +3 -3 lines
Diff to previous 1.36.2.36 , to branch point 1.36
Fix for bbcode issue under IE

Revision 1.85 - (view) (download) - [select for diffs]
Wed Nov 30 17:48:05 2005 UTC (2 years, 10 months ago) by acydburn
Branch: MAIN
Changes since 1.84: +10 -10 lines
Diff to previous 1.84
- added acp_language (language pack management)
- minor adjustments to cope with PHP5.x

Revision 1.36.2.36 - (view) (download) - [select for diffs]
Wed Oct 5 17:42:04 2005 UTC (3 years ago) by grahamje
Branch: phpBB-2_0_0
CVS Tags: release_2_0_18
Changes since 1.36.2.35: +7 -5 lines
Diff to previous 1.36.2.35 , to branch point 1.36
Stop using a couple of the php3 compatability wrappers since the
functions they replace are present in the current minimum required php
version.
There should be no noticable change from this apart from a slight
performance increase, but again please report any issues with this
change to me

Revision 1.36.2.35 - (view) (download) - [select for diffs]
Tue Jul 19 20:01:10 2005 UTC (3 years, 2 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_17
Changes since 1.36.2.34: +7 -7 lines
Diff to previous 1.36.2.34 , to branch point 1.36
- some 2.0.x updates

Revision 1.36.2.34 - (view) (download) - [select for diffs]
Sun Jun 26 12:03:44 2005 UTC (3 years, 3 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_16
Changes since 1.36.2.33: +3 -3 lines
Diff to previous 1.36.2.33 , to branch point 1.36
*** empty log message ***

Revision 1.36.2.33 - (view) (download) - [select for diffs]
Sat May 7 22:18:10 2005 UTC (3 years, 5 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_15
Changes since 1.36.2.32: +7 -4 lines
Diff to previous 1.36.2.32 , to branch point 1.36
checkin latest changes

Revision 1.84 - (view) (download) - [select for diffs]
Sat Apr 9 12:26:37 2005 UTC (3 years, 5 months ago) by acydburn
Branch: MAIN
CVS Tags: milestone_3
Changes since 1.83: +13 -15 lines
Diff to previous 1.83
- Documentation related changes
- added resend activation email dialog
- fixed issue in session code
- log failed/successful admin re-authentication/login
- fixed simple forum dropdown box (used in mcp and posting)

Revision 1.83 - (view) (download) - [select for diffs]
Sat Jan 15 18:49:34 2005 UTC (3 years, 8 months ago) by acydburn
Branch: MAIN
Changes since 1.82: +1 -2 lines
Diff to previous 1.82
- bugfixes
- do not hardcode url bbcode tag (please change the bitfield accordingly - see schema file!)

Revision 1.82 - (view) (download) - [select for diffs]
Sun Dec 19 17:59:13 2004 UTC (3 years, 9 months ago) by acydburn
Branch: MAIN
Changes since 1.81: +3 -2 lines
Diff to previous 1.81
- some fixes/changes

Revision 1.81 - (view) (download) - [select for diffs]
Sun Nov 14 17:12:06 2004 UTC (3 years, 10 months ago) by acydburn
Branch: MAIN
Changes since 1.80: +19 -3 lines
Diff to previous 1.80
- letting urls work again, fixing [code] breakage on urls, corrected magic_url to be able to parse urls at the beginning/end of bbcode blocks
- fixed "edited by" message.

Revision 1.80 - (view) (download) - [select for diffs]
Sat Nov 6 14:20:26 2004 UTC (3 years, 11 months ago) by acydburn
Branch: MAIN
Changes since 1.79: +19 -14 lines
Diff to previous 1.79
- a bunch of updates, most of them bbcode related

Revision 1.79 - (view) (download) - [select for diffs]
Thu Sep 16 18:33:18 2004 UTC (4 years ago) by acydburn
Branch: MAIN
Changes since 1.78: +18 -17 lines
Diff to previous 1.78
- more updates, mostly bugfixes to the bbcode parser
- changed current_user in sessions (please review)
- give more flexibility to style authors in regard to the pagination elements
- profile fields updates (included a sample constuct into viewtopic_body.html - have to be documented extensivly)
- code optimizations (use of strpos, sizeof, loops not iterating functions on every call, memory savings...)
- and last but not least --- hopefully not introduced more bugs than healthy (*cough*)

Revision 1.78 - (view) (download) - [select for diffs]
Sat Sep 4 19:32:17 2004 UTC (4 years, 1 month ago) by acydburn
Branch: MAIN
Changes since 1.77: +24 -4 lines
Diff to previous 1.77
my turn to break the forum (and at least pm's are no longer working - will not last long). HARRRR

Revision 1.77 - (view) (download) - [select for diffs]
Tue Jul 27 20:03:09 2004 UTC (4 years, 2 months ago) by acydburn
Branch: MAIN
Changes since 1.76: +2 -2 lines
Diff to previous 1.76
trouble oh trouble... trouble oh trouble... trou... SLAP!

Revision 1.76 - (view) (download) - [select for diffs]
Mon Jul 19 20:13:15 2004 UTC (4 years, 2 months ago) by acydburn
Branch: MAIN
Changes since 1.75: +2 -2 lines
Diff to previous 1.75
- approve/disapprove posts/topics
- changed mcp_front to be more moderator friendly
- able to change the forum in mcp_queue (for moderators moderating more than one forum)

Revision 1.36.2.32 - (view) (download) - [select for diffs]
Sun Jul 11 16:46:19 2004 UTC (4 years, 2 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_10, release_2_0_11, release_2_0_12, release_2_0_13, release_2_0_14, release_2_0_9
Changes since 1.36.2.31: +2 -2 lines
Diff to previous 1.36.2.31 , to branch point 1.36
prepare new release - see changelog for changes

Revision 1.75 - (view) (download) - [select for diffs]
Sun May 30 19:24:48 2004 UTC (4 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.74: +4 -4 lines
Diff to previous 1.74
- forum rules + link to forum rules
- three new (tiny) functions added to functions_posting responsible for handling text with bbcode/smilies/urls, use them at items all over across phpbb...
- some bugfixes within admin_forums and other files
- new admin_board layout (much safer, security wise)

Revision 1.74 - (view) (download) - [select for diffs]
Sun May 2 13:05:36 2004 UTC (4 years, 5 months ago) by acydburn
Branch: MAIN
Changes since 1.73: +3 -5 lines
Diff to previous 1.73
fix some issues with oop, fixing small bugs and prepare the next steps...
NOTE TO DEVS: have a look at adm/admin_board.php (new config layout)

Revision 1.36.2.31 - (view) (download) - [select for diffs]
Thu Mar 25 15:57:20 2004 UTC (4 years, 6 months ago) by acydburn
Branch: phpBB-2_0_0
CVS Tags: release_2_0_8, release_2_0_8a
Changes since 1.36.2.30: +2 -2 lines
Diff to previous 1.36.2.30 , to branch point 1.36
several security fixes in admin pages
changed bbcode to only allow jpg, jpeg, gif and png

Revision 1.36.2.30 - (view) (download) - [select for diffs]
Wed Mar 24 15:28:53 2004 UTC (4 years, 6 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.29: +2 -2 lines
Diff to previous 1.36.2.29 , to branch point 1.36
*** empty log message ***

Revision 1.36.2.29 - (view) (download) - [select for diffs]
Wed Mar 24 14:39:50 2004 UTC (4 years, 6 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.28: +2 -2 lines
Diff to previous 1.36.2.28 , to branch point 1.36
Restrict [img] back to three standard img formats ... this'll annoy dynamic img users but tough, damn nuisance anyway

Revision 1.73 - (view) (download) - [select for diffs]
Sun Feb 8 18:02:14 2004 UTC (4 years, 7 months ago) by acydburn
Branch: MAIN
Changes since 1.72: +8 -2 lines
Diff to previous 1.72
inline attachment capability...

Revision 1.72 - (view) (download) - [select for diffs]
Sun Jan 25 14:18:06 2004 UTC (4 years, 8 months ago) by acydburn
Branch: MAIN
Changes since 1.71: +2 -1 lines
Diff to previous 1.71
do not parse smilies within code tag

Revision 1.71 - (view) (download) - [select for diffs]
Sun Nov 16 22:28:47 2003 UTC (4 years, 10 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.70: +25 -25 lines
Diff to previous 1.70
Not even worth a log msg ;)

Revision 1.70 - (view) (download) - [select for diffs]
Sun Oct 12 11:59:21 2003 UTC (4 years, 11 months ago) by psotfx
Branch: MAIN
Changes since 1.69: +3 -3 lines
Diff to previous 1.69
Let's break lots of things

Revision 1.36.2.28 - (view) (download) - [select for diffs]
Wed Sep 10 17:50:14 2003 UTC (5 years ago) by psotfx
Branch: phpBB-2_0_0
CVS Tags: release_2_0_7
Changes since 1.36.2.27: +8 -8 lines
Diff to previous 1.36.2.27 , to branch point 1.36
Fix bbcode url xss issue

Revision 1.69 - (view) (download) - [select for diffs]
Sun Sep 7 18:11:37 2003 UTC (5 years, 1 month ago) by acydburn
Branch: MAIN
Changes since 1.68: +2 -2 lines
Diff to previous 1.68
username quoting should be working again...

Revision 1.68 - (view) (download) - [select for diffs]
Thu Aug 28 20:50:20 2003 UTC (5 years, 1 month ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.67: +106 -66 lines
Diff to previous 1.67
Added: admin definable bbcodes
Changed: preg references, use the prefered $n form instead of the old \\n one
Fixed: tweaked PHP highlightning a little

Revision 1.67 - (view) (download) - [select for diffs]
Mon Aug 11 10:41:03 2003 UTC (5 years, 1 month ago) by psotfx
Branch: MAIN
CVS Tags: milestone_2
Changes since 1.66: +2 -2 lines
Diff to previous 1.66
Correct pathname for template

Revision 1.66 - (view) (download) - [select for diffs]
Sun Aug 10 21:17:11 2003 UTC (5 years, 1 month ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.65: +6 -7 lines
Diff to previous 1.65
Less bug, more comments

Revision 1.65 - (view) (download) - [select for diffs]
Sun Aug 10 18:30:27 2003 UTC (5 years, 1 month ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.64: +25 -8 lines
Diff to previous 1.64
Primary / secondary style bbcode implementation. Not thoroughly tested yet but my test board still functions so I guess it works ;)

Revision 1.64 - (view) (download) - [select for diffs]
Thu Jul 24 16:10:26 2003 UTC (5 years, 2 months ago) by psotfx
Branch: MAIN
Changes since 1.63: +2 -2 lines
Diff to previous 1.63
path change for bbcode

Revision 1.63 - (view) (download) - [select for diffs]
Sun Jul 13 15:15:03 2003 UTC (5 years, 2 months ago) by psotfx
Branch: MAIN
Changes since 1.62: +6 -4 lines
Diff to previous 1.62
Cope with secondary (per forum) styles, probably other minor things too ... there is a known permissions problem, will work on that soon. Ashe, the bbcode primary/secondary stuff may need some tightening, particularly since it only checks the bbcode_bitfield for the primary template (which may not exist as coped with later) ... I'll leave that to you to alter.

Revision 1.62 - (view) (download) - [select for diffs]
Wed Jul 2 22:22:04 2003 UTC (5 years, 3 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.61: +7 -7 lines
Diff to previous 1.61
Shifting bits appears to be faster than the pow() function

Revision 1.61 - (view) (download) - [select for diffs]
Tue Jun 24 16:46:30 2003 UTC (5 years, 3 months ago) by psotfx
Branch: MAIN
Changes since 1.60: +23 -19 lines
Diff to previous 1.60
Fix up display of sigs and bbcode for preview

Revision 1.36.2.27 - (view) (download) - [select for diffs]
Mon Jun 9 20:01:18 2003 UTC (5 years, 3 months ago) by psotfx
Branch: phpBB-2_0_0
CVS Tags: release_2_0_5, release_2_0_6
Changes since 1.36.2.26: +7 -7 lines
Diff to previous 1.36.2.26 , to branch point 1.36
some url match fiddling ... seems to be behaving ... but then just like the captain of the Hindenburg saying "Anyone smell burning?" these are famous last words ...

Revision 1.60 - (view) (download) - [select for diffs]
Thu Jun 5 19:19:48 2003 UTC (5 years, 4 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.59: +21 -17 lines
Diff to previous 1.59
Changed: [list=square] is translated into an UNordered list
Fixed: <ul> opening tag
Changed: [list] is not hardcoded anymore

Revision 1.59 - (view) (download) - [select for diffs]
Sun May 25 19:19:31 2003 UTC (5 years, 4 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.58: +8 -8 lines
Diff to previous 1.58
Added: width / height parameters to flash
Fixed: ol closing tag
Screwed-up: ol opening tag - will check that later

Revision 1.58 - (view) (download) - [select for diffs]
Thu May 22 01:26:36 2003 UTC (5 years, 4 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.57: +116 -96 lines
Diff to previous 1.57
Updated bbcode parser.
Images that are replace with a link according to user's preferences now use the corresponding [url] template.
Some regular expressions have been made a little more restrictive.

Revision 1.57 - (view) (download) - [select for diffs]
Tue May 20 13:35:47 2003 UTC (5 years, 4 months ago) by psotfx
Branch: MAIN
Changes since 1.56: +2 -2 lines
Diff to previous 1.56
This version tends to do what it was supposed to do ... I guess users will prefer this ...

Revision 1.56 - (view) (download) - [select for diffs]
Tue May 20 13:24:04 2003 UTC (5 years, 4 months ago) by psotfx
Branch: MAIN
Changes since 1.55: +37 -13 lines
Diff to previous 1.55
Enable view limiting functions ... Ashe, not sure if this is compatible with your thinking for bbcode but it seems the "logical" way to handle disabling of bbcode/flash in this manner. Fixed issue with automatic url handling of local links

Revision 1.55 - (view) (download) - [select for diffs]
Sun May 18 23:26:05 2003 UTC (5 years, 4 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.54: +40 -16 lines
Diff to previous 1.54
Added: [/*] tag (list item end tag). Automagically added if needed, in which case it's stored as [/*:m:$uid]
Added: any {L_*} var in bbcode.html is replaced by its matching $lang string

Revision 1.54 - (view) (download) - [select for diffs]
Sat May 17 17:33:43 2003 UTC (5 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.53: +2 -1 lines
Diff to previous 1.53
prepared (and fixed) topic review.

Revision 1.53 - (view) (download) - [select for diffs]
Sun May 11 16:21:34 2003 UTC (5 years, 4 months ago) by acydburn
Branch: MAIN
Changes since 1.52: +2 -2 lines
Diff to previous 1.52
a few updates, added #539865 and #694413.

Revision 1.52 - (view) (download) - [select for diffs]
Wed Apr 23 21:47:15 2003 UTC (5 years, 5 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.51: +54 -49 lines
Diff to previous 1.51
Changed: the loading of bbcodes template is triggered whenever needed - see bbcode_tpl()
Changed: [flash] got templated

Revision 1.51 - (view) (download) - [select for diffs]
Tue Apr 22 00:42:06 2003 UTC (5 years, 5 months ago) by psotfx
Branch: MAIN
Changes since 1.50: +6 -7 lines
Diff to previous 1.50
Move second parse cache init after assignment of bitfield ... in case bitfield isn't set globally

Revision 1.50 - (view) (download) - [select for diffs]
Sun Apr 20 20:30:01 2003 UTC (5 years, 5 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.49: +2 -30 lines
Diff to previous 1.49
First-pass syntax highlightning. Will fix quotes later

Revision 1.49 - (view) (download) - [select for diffs]
Thu Apr 17 23:47:26 2003 UTC (5 years, 5 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.48: +12 -10 lines
Diff to previous 1.48
More bbcode fixes

Revision 1.48 - (view) (download) - [select for diffs]
Wed Apr 16 22:44:38 2003 UTC (5 years, 5 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.47: +79 -22 lines
Diff to previous 1.47
Added syntax highlitning to [code]. Added [flash] tag.

Revision 1.47 - (view) (download) - [select for diffs]
Wed Apr 16 22:32:17 2003 UTC (5 years, 5 months ago) by psotfx
Branch: MAIN
Changes since 1.46: +6 -5 lines
Diff to previous 1.46
Added some extra 's' extensions to preg_matches to cope with multiline data

Revision 1.46 - (view) (download) - [select for diffs]
Fri Apr 11 00:19:28 2003 UTC (5 years, 5 months ago) by ludovic_arnaud
Branch: MAIN
Changes since 1.45: +235 -557 lines
Diff to previous 1.45
BBCode parser + decoder, missing some tags and mildly broken at this time

Revision 1.36.2.26 - (view) (download) - [select for diffs]
Thu Mar 20 23:41:07 2003 UTC (5 years, 6 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.25: +3 -3 lines
Diff to previous 1.36.2.25 , to branch point 1.36
fixed two bugs... bye bye easter-egg (i think it is time to invent a new one. ;)).

Revision 1.36.2.25 - (view) (download) - [select for diffs]
Tue Mar 18 23:23:54 2003 UTC (5 years, 6 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.24: +7 -7 lines
Diff to previous 1.36.2.24 , to branch point 1.36
fixed some small bugs... added the updater (this one needs some testing, i have moved some things around)

Revision 1.36.2.24 - (view) (download) - [select for diffs]
Tue Mar 11 01:55:18 2003 UTC (5 years, 6 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.23: +12 -12 lines
Diff to previous 1.36.2.23 , to branch point 1.36
and again url bbcode changes... fixing one potential security issue.

Revision 1.45 - (view) (download) - [select for diffs]
Tue Mar 4 18:31:57 2003 UTC (5 years, 7 months ago) by acydburn
Branch: MAIN
Changes since 1.44: +614 -614 lines
Diff to previous 1.44
wrong encoding. ;)
Hopefully you did an update before commiting the drugs. :D

Revision 1.44 - (view) (download) - [select for diffs]
Tue Mar 4 17:52:37 2003 UTC (5 years, 7 months ago) by thefinn
Branch: MAIN
Changes since 1.43: +614 -614 lines
Diff to previous 1.43
Tons of work on the UCP, see my topic in the development forum for more info
on the bigger changes.

Registration should still work, the basic layout of the UCP is also done
with the start on the profile settings area.

Revision 1.36.2.23 - (view) (download) - [select for diffs]
Sun Mar 2 15:51:06 2003 UTC (5 years, 7 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.22: +19 -19 lines
Diff to previous 1.36.2.22 , to branch point 1.36
fixed bug #1463, #1154 and #1465, moved mozilla navigation bar (see comment), changed url bbcode parsing (some backports from 2.2)

Revision 1.43 - (view) (download) - [select for diffs]
Wed Feb 26 00:37:42 2003 UTC (5 years, 7 months ago) by psotfx
Branch: MAIN
Changes since 1.42: +1 -118 lines
Diff to previous 1.42
Generally related to post tables merge

Revision 1.36.2.22 - (view) (download) - [select for diffs]
Tue Feb 25 18:19:01 2003 UTC (5 years, 7 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.21: +5 -2 lines
Diff to previous 1.36.2.21 , to branch point 1.36
prevent breaking of page if quote is missing. ;)
hopefully nothing is broken now. :D

Revision 1.36.2.21 - (view) (download) - [select for diffs]
Tue Feb 25 16:03:01 2003 UTC (5 years, 7 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.20: +31 -27 lines
Diff to previous 1.36.2.20 , to branch point 1.36
fixed bug #1388, #1357, #1347, #1307, #1222 and #1249
changed email validation, special characters do not need to be escaped within character class (added ampersand to email validation too)

Revision 1.36.2.20 - (view) (download) - [select for diffs]
Tue Feb 25 14:35:13 2003 UTC (5 years, 7 months ago) by acydburn
Branch: phpBB-2_0_0
Changes since 1.36.2.19: +4 -1 lines
Diff to previous 1.36.2.19 , to branch point 1.36
fixed bugs #1437, #686 (only changed old update scripts), #1426 and #1424
fixed username validation if username is already parsed through htmlspecialchars or user try to enforce invalid characters.

Revision 1.36.2.19 - (view) (download) - [select for diffs]
Fri Jan 10 13:21:24 2003 UTC (5 years, 8 months ago) by psotfx
Branch: phpBB-2_0_0
CVS Tags: release_2_0_4
Changes since 1.36.2.18: +2 -2 lines
Diff to previous 1.36.2.18 , to branch point 1.36
Stupid, damn bbcode parser issues with < and > within [code] with HTML disabled fixed

Revision 1.36.2.18 - (view) (download) - [select for diffs]
Wed Jan 8 16:56:06 2003 UTC (5 years, 8 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.17: +3 -3 lines
Diff to previous 1.36.2.17 , to branch point 1.36
Removed requirement for [url=www|ftp] for all urls

Revision 1.36.2.17 - (view) (download) - [select for diffs]
Fri Dec 20 01:24:10 2002 UTC (5 years, 9 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.16: +19 -21 lines
Diff to previous 1.36.2.16 , to branch point 1.36
Mostly bbcode issues with quoting ... should all now be fixed ... he says + remove align="right" from viewtopic post table so Mozilla doesn't mess up

Revision 1.36.2.16 - (view) (download) - [select for diffs]
Thu Dec 19 17:17:39 2002 UTC (5 years, 9 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.15: +9 -9 lines
Diff to previous 1.36.2.15 , to branch point 1.36
Various fixes, see CHANGELOG

Revision 1.36.2.15 - (view) (download) - [select for diffs]
Wed Dec 18 23:38:12 2002 UTC (5 years, 9 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.14: +2 -2 lines
Diff to previous 1.36.2.14 , to branch point 1.36
bbcode img updates/fixes

Revision 1.36.2.14 - (view) (download) - [select for diffs]
Thu Nov 28 14:28:39 2002 UTC (5 years, 10 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.13: +3 -3 lines
Diff to previous 1.36.2.13 , to branch point 1.36
More fixes, bbcode size, html script issue

Revision 1.36.2.13 - (view) (download) - [select for diffs]
Thu Nov 28 13:50:13 2002 UTC (5 years, 10 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.12: +19 -24 lines
Diff to previous 1.36.2.12 , to branch point 1.36
Think this allows bbcode to handle strange chars beyond domain name but prevent breaking out the url, inserting script tags, javascript:xxxx etc.

Revision 1.42 - (view) (download) - [select for diffs]
Fri Nov 1 12:23:05 2002 UTC (5 years, 11 months ago) by psotfx
Branch: MAIN
Changes since 1.41: +5 -58 lines
Diff to previous 1.41
Various, typically posting related updates

Revision 1.41 - (view) (download) - [select for diffs]
Wed Oct 30 00:57:26 2002 UTC (5 years, 11 months ago) by psotfx
Branch: MAIN
Changes since 1.40: +39 -39 lines
Diff to previous 1.40
Changed $board_config to $config, more posting "stuff", altered polling code in viewtopic and loads of new problems, poor coding, etc. created :)

Revision 1.36.2.12 - (view) (download) - [select for diffs]
Mon Oct 7 22:42:43 2002 UTC (6 years ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.11: +77 -77 lines
Diff to previous 1.36.2.11 , to branch point 1.36
Remove array indexes for easymod

Revision 1.36.2.11 - (view) (download) - [select for diffs]
Fri Jul 19 15:28:49 2002 UTC (6 years, 2 months ago) by psotfx
Branch: phpBB-2_0_0
CVS Tags: release_2_0_2, release_2_0_3
Changes since 1.36.2.10: +5 -5 lines
Diff to previous 1.36.2.10 , to branch point 1.36
Added ( and ) to URL [url] rex

Revision 1.40 - (view) (download) - [select for diffs]
Sun Jul 14 14:41:12 2002 UTC (6 years, 2 months ago) by psotfx
Branch: MAIN
Changes since 1.39: +33 -36 lines
Diff to previous 1.39
Various updates and alterations

Revision 1.36.2.10 - (view) (download) - [select for diffs]
Thu Jul 11 18:33:29 2002 UTC (6 years, 2 months ago) by thefinn
Branch: phpBB-2_0_0
Changes since 1.36.2.9: +31 -37 lines
Diff to previous 1.36.2.9 , to branch point 1.36
Added a fix for smillies_pass function by Ashe
See this topic for details:
http://www.phpbb.com/phpBB/viewtopic.php?p=166905
Yeilds a very large performance increase on long topics

Revision 1.36.2.9 - (view) (download) - [select for diffs]
Sun Jun 23 02:47:55 2002 UTC (6 years, 3 months ago) by dougk_ff7
Branch: phpBB-2_0_0
Changes since 1.36.2.8: +4 -4 lines
Diff to previous 1.36.2.8 , to branch point 1.36
Ok, I've done so much here, I can hardly remember what I've done...
There are various security updates throughout the commit, along with a few
bug fixes; I'll try to name them here.
---
Bug #453: Fixed.
Bug #485: Duplicate of #453, but still fixed.
Bug #476: Ok, the typo is fixed.
---
That should be it, but I'll have more fixes tomorrow. (Finally, I have
figured out regular expressions!!!)

--Doug

Revision 1.36.2.8 - (view) (download) - [select for diffs]
Wed Jun 12 05:33:54 2002 UTC (6 years, 3 months ago) by dougk_ff7
Branch: phpBB-2_0_0
Changes since 1.36.2.7: +2 -2 lines
Diff to previous 1.36.2.7 , to branch point 1.36
Ok, several things accomplished here...
1) Improvements to deletion of users in admin_users.
This includes bug 166 and Sourceforge tracker task #49374.

2) Two security holes were patched, both pointed out by
Nick Cleaton <nick at cleaton dot net>.
Thanks for letting us know, Nick!

That's about it for now, and it took almost all day. :P
Bye for now!
-Doug

Revision 1.39 - (view) (download) - [select for diffs]
Mon Jun 10 01:52:16 2002 UTC (6 years, 3 months ago) by psotfx
Branch: MAIN
Changes since 1.38: +21 -7 lines
Diff to previous 1.38
Updates in line with 2.0.1

Revision 1.36.2.7 - (view) (download) - [select for diffs]
Fri May 17 18:22:34 2002 UTC (6 years, 4 months ago) by the_systech
Branch: phpBB-2_0_0
CVS Tags: release_2_0_1
Changes since 1.36.2.6: +19 -5 lines
Diff to previous 1.36.2.6 , to branch point 1.36
Fix (hopefully anyway :) for nested code tag issues with bbcode

Revision 1.36.2.6 - (view) (download) - [select for diffs]
Mon May 13 01:30:59 2002 UTC (6 years, 4 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.5: +3 -3 lines
Diff to previous 1.36.2.5 , to branch point 1.36
More fixes and updates

Revision 1.36.2.5 - (view) (download) - [select for diffs]
Sun May 12 00:47:40 2002 UTC (6 years, 4 months ago) by psotfx
Branch: phpBB-2_0_0
Changes since 1.36.2.4: +3 -3 lines
Diff to previous 1.36.2.4 , to branch point 1.36
Loads of bug fixes and updates

Revision 1.38 - (view) (download) - [select for diffs]
Wed Apr 24 15:00:33 2002 UTC (6 years, 5 months ago) by the_systech
Branch: MAIN
Changes since 1.37: +3 -3 lines
Diff to previous 1.37
Fix for "security vulnerability" in img tag

Revision 1.36.2.4 - (view) (download) - [select for diffs]
Wed Apr 24 14:42:15 2002 UTC (6 years, 5 months ago) by the_systech
Branch: phpBB-2_0_0
Changes since 1.36.2.3: +2 -2 lines
Diff to previous 1.36.2.3 , to branch point 1.36
Fix for "vulnerability emailed to dev team..."

Revision 1.37 - (view) (download) - [select for diffs]
Sat Apr 20 00:22:28 2002 UTC (6 years, 5 months ago) by psotfx
Branch: MAIN
Changes since 1.36: +9 -3 lines
Diff to previous 1.36
merged from 2.0.0 branch (marked merge_point_20020420) + assorted updates and trial stuff for example session alterations

Revision 1.36.2.3 - (view) (download) - [select for diffs]
Mon Apr 8 15:46:59 2002 UTC (6 years, 6 months ago) by the_systech
Branch: phpBB-2_0_0
CVS Tags: merge_point_20020420
Changes since 1.36.2.2: +2 -2 lines
Diff to previous 1.36.2.2 , to branch point 1.36
Ok I'm an idiot.. variables work better with "$"'s in front of them..

Revision 1.36.2.2 - (view) (download) - [select for diffs]
Mon Apr 8 15:36:17 2002 UTC (6 years, 6 months ago) by the_systech
Branch: phpBB-2_0_0
Changes since 1.36.2.1: +8 -2 lines
Diff to previous 1.36.2.1 , to branch point 1.36
Ok one more try at this one...

Revision 1.36.2.1 - (view) (download) - [select for diffs]
Mon Apr 8 15:02:24 2002 UTC (6 years, 6 months ago) by the_systech
Branch: phpBB-2_0_0
Changes since 1.36: +3 -3 lines
Diff to previous 1.36
A likely fix for the quote table breaking behavior

Revision 1.36 - (view) (download) - [select for diffs]
Mon Mar 25 12:41:41 2002 UTC (6 years, 6 months ago) by psotfx
Branch: MAIN
CVS Tags: release_2_0_0
Branch point for: phpBB-2_0_0
Changes since 1.35: +2 -19 lines
Diff to previous 1.35
Move phpbb_preg_quote back into functions because it's plain annoying ... :D

Revision 1.35 - (view) (download) - [select for diffs]
Mon Mar 18 17:46:43 2002 UTC (6 years, 6 months ago) by thefinn
Branch: MAIN
CVS Tags: RC-4_release_point, RC-4_release_point_2, RC-4_release_point_3
Changes since 1.34: +2 -2 lines
Diff to