Log of /contributions/modules/phpbb2drupal/phpbb2drupal.module
Parent Directory
|
Revision Log
|
Revision Graph
Revision
1.100 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Oct 19 17:08:32 2008 UTC
(13 months ago)
by
nbz
Branch:
MAIN
Changes since
1.99: +4 -2 lines
Diff to
previous 1.99
change imported last access time to = previous login time instead of user session time, based on reccomendation by user "enzypher".
Revision
1.99 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Oct 15 20:10:09 2008 UTC
(13 months, 1 week ago)
by
nbz
Branch:
MAIN
Changes since
1.98: +7 -6 lines
Diff to
previous 1.98
Update the hash checking as the previous logic relying on "user_pass_convert" was bogus as it always seems to = 0. Bug reported by enzipher in #297137 comment 25
Revision
1.98 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Oct 7 23:10:04 2008 UTC
(13 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.97: +2 -2 lines
Diff to
previous 1.97
For some reason getting the parent id does not work too well with the mysql connections (but does with mysqli) - cosmetic change to see if it makes a difference.
Revision
1.94 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Aug 1 22:29:12 2008 UTC
(15 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.93: +2 -2 lines
Diff to
previous 1.93
1. Remove warning message over search engine accounts as they are no longer imported
2. Do not import forum topics of forum_type = 2 as they are just links and Drupal dopes not support that - it shows them as normal forums.
Revision
1.91 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Aug 1 21:47:28 2008 UTC
(15 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.90: +9 -1 lines
Diff to
previous 1.90
phpbb3 stores user status in user_type instead of user_active as phpbb2 did. inactive users get an id of 0. there are other status too, no idea what they mean. KISS - user_type of 0 = inactive. The rest mean active. further complication - duplicate check sets $user->user_active to 0 if the user is a duplicate. Assume the only time the $user->user_active is set before now is in duplicate check and nothing is taken from database - so php isset() should work.
Revision
1.90 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Aug 1 19:41:06 2008 UTC
(15 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.89: +6 -5 lines
Diff to
previous 1.89
1. fix the hash import into phpass module tables by a) fixing the insert statement and b) modifying the hash identifier to what the phpass module uses.
2. Add some info about phpass on the instructions page.
3. Slight modifications to the settings form.
Revision
1.89 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jul 31 17:23:35 2008 UTC
(15 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.88: +2 -2 lines
Diff to
previous 1.88
phpbb3 has native hashed longer than 32 characters (and also old hashes which are still 32 characters), so ermoving string limit for hash.
Revision
1.87 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jul 31 15:40:38 2008 UTC
(15 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.86: +12 -5 lines
Diff to
previous 1.86
Check if password has been converted from md5 to phpass. If it has not, import it directly to drupal using old method. If it has, the store it in the phpass module table.
Revision
1.85 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jul 9 18:51:53 2008 UTC
(16 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.84: +5 -4 lines
Diff to
previous 1.84
depend on the phpass module, put the phpass password into the users_phpass table and set the normal password to the word phpass.
Revision
1.81 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jun 19 02:13:03 2008 UTC
(17 months, 1 week ago)
by
nbz
Branch:
MAIN
Changes since
1.80: +54 -439 lines
Diff to
previous 1.80
Big changes:
1. remove phpbb2 compatibility
2. remove poll import (they will be imported as forum topics, but without the poll data - I will leave that for an additional module if someone steps up.)
3. replace re-encoding function - phpbb3 is also utf8 - with just a sanitising function.
taxonomy/category import is still broken.
Revision
1.74 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Mar 11 00:58:06 2008 UTC
(20 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.73: +31 -22 lines
Diff to
previous 1.73
#209195 - Add support for phpbb3. get code from patch in comment 32 to modify a couple of queries. Untested.
Revision
1.68 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Feb 9 21:12:40 2008 UTC
(21 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Branch point for:
DRUPAL-6--1
Changes since
1.67: +4 -74 lines
Diff to
previous 1.67
Rename phpbb2drupal.settings.inc to phpbb2drupal.pages.inc, move two more functions over ("phpbb2drupal_main" and "phpbb2drupal_postconfiguration")
Revision
1.67 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Feb 9 01:10:40 2008 UTC
(21 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.66: +23 -13 lines
Diff to
previous 1.66
Make the Post Migration Configuration more useful by addiong step by step introductions for some basic settings.
Revision
1.63 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jan 31 02:32:01 2008 UTC
(21 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.62: +16 -4 lines
Diff to
previous 1.62
#202348 - borrow and adapt code by drunken Monkey from patch (in comment 4) to port privatemsg module to drupal 6
Revision
1.60 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun Jan 20 19:39:26 2008 UTC
(22 months ago)
by
nbz
Branch:
MAIN
Changes since
1.59: +2 -1 lines
Diff to
previous 1.59
1. Revert changes in settings to what it was in version 1.4 of phpbb2drupal.settings.inc.
2. Enable Forum vocabulary before getting Forum Vocabulary when importing categories.
Revision
1.59 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jan 10 01:02:30 2008 UTC
(22 months, 2 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.58: +6 -2 lines
Diff to
previous 1.58
Update encoding options using help from functions/info from phpbb3, which also needs to change encodings to utf-8
Revision
1.58 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jan 2 23:17:39 2008 UTC
(22 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.57: +52 -56 lines
Diff to
previous 1.57
Fix coding styles, remove line from comment insert query (it was duplicated), fix upload import. Hopefully just pm's to go.
Revision
1.57 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jan 2 20:51:52 2008 UTC
(22 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.56: +3 -3 lines
Diff to
previous 1.56
update for compatibility with changes in taxonomy_node_save() for Drupal 6. Forums topics now show in forums. Polls still do not.
Revision
1.53 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Dec 31 20:19:33 2007 UTC
(22 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.52: +22 -27 lines
Diff to
previous 1.52
Fix a few "blind change" mistakes - changes made from coder module without actually looking at the code. Some revertions, some not.
Forum topic and poll import now works, but the new topics and polls are not listed under the forums.
Revision
1.52 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Dec 31 19:00:32 2007 UTC
(22 months, 3 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.51: +28 -12 lines
Diff to
previous 1.51
Now working: Import users, Import forum categories.
TODO: Everything else from import topics, polls, comments and everything else.
Revision
1.50 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Dec 28 16:57:54 2007 UTC
(22 months, 4 weeks ago)
by
nbz
Branch:
MAIN
Changes since
1.49: +10 -12 lines
Diff to
previous 1.49
Fixes for _phpbb2drupal_check_module and _phpbb2drupal_check_tables to use existing functions module_exists and db_table_exists instead of sql queries.
Revision
1.43.2.2.2.1 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Dec 27 02:17:49 2007 UTC
(22 months, 4 weeks ago)
by
nbz
Branch:
DRUPAL-5--3
Changes since
1.43.2.2: +18 -4 lines
Diff to
previous 1.43.2.2
1. Check if php function iconv is available, show error message if it is not and encoding option has been ticked.
2. Some platforms may have function called libiconv instead. Search for that if iconv is not available.
3. Find best match for characters that do not have an exact match.
Revision
1.42 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Jun 2 05:34:01 2007 UTC
(2 years, 5 months ago)
by
augustin
Branch:
MAIN
Changes since
1.41: +1 -15 lines
Diff to
previous 1.41
#114425: Remove check for comment_files table, which
1) has changed name to comment_upload_files
2) is installed automatically anyway by comment_upload.install.
Thanks Webchick!
Revision
1.34 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sat Nov 18 01:54:02 2006 UTC
(3 years ago)
by
augustin
Branch:
MAIN
Changes since
1.33: +2 -2 lines
Diff to
previous 1.33
#93632 private messages import later causes key violations with postgresql.
Using the {sequence} table solves the problem. Patch by PMunn - with thanks.
Revision
1.30 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Mon Aug 21 17:32:53 2006 UTC
(3 years, 3 months ago)
by
augustin
Branch:
MAIN
Changes since
1.29: +8 -2 lines
Diff to
previous 1.29
#78866 check tables exist: correct syntax problem for postgresql.
Thank you havran for providing proper postgreSql fix.
Revision
1.29 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Aug 17 14:48:16 2006 UTC
(3 years, 3 months ago)
by
augustin
Branch:
MAIN
Changes since
1.28: +18 -2 lines
Diff to
previous 1.28
#64681 the registration date is sometimes stored in the English US format, and not as a linux timestamp.
Setting added.
Thanks to webchick for pointing out the function strtotime().
Revision
1.23 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Jun 15 08:25:36 2006 UTC
(3 years, 5 months ago)
by
augustin
Branch:
MAIN
Changes since
1.22: +3 -4 lines
Diff to
previous 1.22
bugfix: drupal table names were not in curly brackets, preventing proper prefixing.
bugfix: the folder to put avatars in is files/pictures/
Revision
1.21 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Wed Jun 7 10:39:12 2006 UTC
(3 years, 5 months ago)
by
augustin
Branch:
MAIN
Changes since
1.20: +130 -3 lines
Diff to
previous 1.20
#67068 changes the encoding during the migration from phpBB encoding settings to Drupal encoding settings.
Revision
1.19 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue May 23 09:18:30 2006 UTC
(3 years, 6 months ago)
by
augustin
Branch:
MAIN
Changes since
1.18: +13 -13 lines
Diff to
previous 1.18
#64877 : paves the way to postgresl support.
added install file with mysql table creation.
I still need to add postgresql tables.
Revision
1.16 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun May 21 16:09:35 2006 UTC
(3 years, 6 months ago)
by
augustin
Branch:
MAIN
Changes since
1.15: +30 -8 lines
Diff to
previous 1.15
1) #64681 : bug fix: the user's registration date is now properly imported.
2) bbcode is filtered when importing private messages, too.
3) few minor fixes.
Revision
1.15 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Sun May 21 09:34:26 2006 UTC
(3 years, 6 months ago)
by
augustin
Branch:
MAIN
Changes since
1.14: +211 -63 lines
Diff to
previous 1.14
1) added option to replace bbcode with html.
2) added option to select input format for imported posts.
3) better use of new Form API: use of collapsible sections for better navigation.
Revision
1.14 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri May 19 19:24:39 2006 UTC
(3 years, 6 months ago)
by
augustin
Branch:
MAIN
Changes since
1.13: +2 -15 lines
Diff to
previous 1.13
removed comment.module comment_upload.module comment_upload.mysql:
With 4.7, there is no need to have a patched version of comment.module.
Revision
1.13 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Apr 27 11:13:16 2006 UTC
(3 years, 6 months ago)
by
augustin
Branch:
MAIN
Changes since
1.12: +1 -1 lines
Diff to
previous 1.12
See #60655 : the files redirecting traffic from the old phpBB url to
the new Drupal url requires the include path to be set up properly.
Revision
1.11 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Thu Apr 20 05:43:28 2006 UTC
(3 years, 7 months ago)
by
augustin
Branch:
MAIN
Changes since
1.10: +800 -862 lines
Diff to
previous 1.10
Drupal 4.7 upgrade #59471 by neclimdul (user 48673) .
Code cleanup and upgrade to Drupal 4.7 API.
There are still many small issues to iron out.
Revision
1.4 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Fri Apr 14 05:52:23 2006 UTC
(3 years, 7 months ago)
by
augustin
Branch:
MAIN
Changes since
1.3: +1933 -1 lines
Diff to
previous 1.3
John Hwang's import script has been placed within a proper Drupal module. I have set all the main hooks, and developped a fairly comprehensive setting page. Users now only have to enable this module like any other module, and configure everything from admin/settings/phpbb2drupal. There are still many minor details to fix, but the main login is set, and overall it works well. beginner.
Revision
1.1 -
(
view)
(
download)
(
as text)
(
annotate)
-
[select for diffs]
Tue Apr 4 07:09:20 2006 UTC
(3 years, 7 months ago)
by
augustin
Branch:
MAIN
See #57197 by beginner, a.k.a. Augustin Masquilier
First release of the phpBB2 to Drupal migration script in a Drupal module form.
This form allows you to request diffs between any two revisions of this file.
For each of the two "sides" of the diff,
select a symbolic revision name using the selection box, or choose
'Use Text Field' and enter a numeric revision.