dandv
(Dan Dascalescu)
10 أبريل 2015، 9:39ص
1
elberet
(Jens Maier)
10 أبريل 2015، 6:09م
2
This looks similar to SMF2’s quote syntax. You could copy my somewhat over-engineered solution from the SMF2 importer…
إعجاب واحد (1)
dandv
(Dan Dascalescu)
20 سبتمبر 2015، 3:27ص
3
@elberet : Unfortunately I don’t speak Ruby and am not familiar with the Discourse internals and DB schema , and the SMF importer is quite different from the MyBB one (I guess the magic is in the MessageDependencyGraph
class ).
Could you point me towards how, for starters, to patch the MyBB script to convert the date in the quote line?
Also, how practical would it be to just go ahead with the migration, and later patch the quote line in the imported posts?
michaeld
(Michael - Communiteq)
20 سبتمبر 2015، 8:01ص
4
Can you elaborate on what you are doing there? For us, it has never worked, it always gives a ‘recursion too deep’ error and then crashes.
إعجابَين (2)
dandv
(Dan Dascalescu)
22 سبتمبر 2015، 5:16ص
5
I’ve looked some more into this. The quote syntax for MyBB is:
[quote='username' pid='1234' dateline='1412029545']
...
[/quote]
In Discourse, it’s
[quote="username, post:12, topic:1234"]
...
[/quote]
How can I get the post number and topic ID from the post ID , via the API? process_mybb_post would need to be updated to take that into account; BTW, the import_id
parameter isn’t used.
riking
(Kane York)
22 سبتمبر 2015، 5:17ص
6
You want to call post_id_from_imported_post_id
from the import script.
إعجاب واحد (1)
dandv
(Dan Dascalescu)
22 سبتمبر 2015، 6:21ص
7
That seems to return only one id . Don’t we need the post number within the topic (not its id), and the topic id?
riking
(Kane York)
22 سبتمبر 2015، 6:23ص
8
Well, you can pass that to Post.find(id)
and get the post_number
and topic_id
out from that.
dandv
(Dan Dascalescu)
22 سبتمبر 2015، 12:37م
9
Thanks @riking . I’ve sent a PR .
Now how could I run just that replacement on existing posts?
@elberet : my approach is far simpler. Would you mind taking a look?