[ABD] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Any abandoned Extensions will be moved to this forum.

WARNING: Extensions in this forum are not currently being supported or maintained by the original Extension author. Proceed at your own risk.
Forum rules
IMPORTANT: Extension Development Forum rules

WARNING: Extensions in this forum are not currently being supported nor updated by the original Extension author. Proceed at your own risk.
Locked
jazzista88
Registered User
Posts: 4
Joined: Thu Aug 27, 2015 11:55 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by jazzista88 »

Hi!

Great job i was really searching for this kind of extension! So thank you in advance!

I just updated my phpbb board to 3.2.1 and enabled the extension.

all seems to be working but i get something strange in the editor when i edit a topic.

you can see at this link:

https://www.dropbox.com/s/ta91w2iod3ckb ... r.png?dl=0

Is it fixable?

Many thanks.
User avatar
Chrono
Registered User
Posts: 71
Joined: Fri Jul 12, 2002 2:52 am
Location: Chihuahua México
Name: Alfonso Camacho
Contact:

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by Chrono »

jazzista88 wrote: Thu Sep 14, 2017 7:26 pm Hi!

Great job i was really searching for this kind of extension! So thank you in advance!

I just updated my phpbb board to 3.2.1 and enabled the extension.

all seems to be working but i get something strange in the editor when i edit a topic.

you can see at this link:

https://www.dropbox.com/s/ta91w2iod3ckb ... r.png?dl=0

Is it fixable?

Many thanks.
That blank area is where the custom bbcode you added. Only desactive the option to show in the editor or add you own custom icons... --> viewtopic.php?f=456&t=2427126&start=30#p14763656

Cheers!
www.degeneracionx.com - Anime, Games & Nothing Else.
Anime and Games Hispanic Community (Spanish only)
Sorry for my poor english
jazzista88
Registered User
Posts: 4
Joined: Thu Aug 27, 2015 11:55 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by jazzista88 »

Chrono wrote: Thu Sep 14, 2017 7:34 pm
jazzista88 wrote: Thu Sep 14, 2017 7:26 pm Hi!

Great job i was really searching for this kind of extension! So thank you in advance!

I just updated my phpbb board to 3.2.1 and enabled the extension.

all seems to be working but i get something strange in the editor when i edit a topic.

you can see at this link:

https://www.dropbox.com/s/ta91w2iod3ckb ... r.png?dl=0

Is it fixable?

Many thanks.
That blank area is where the custom bbcode you added. Only desactive the option to show in the editor or add you own custom icons... --> viewtopic.php?f=456&t=2427126&start=30#p14763656

Cheers!
Thank you for your reply.

I already tried to put a png image 16x16 with the same name of the bbcode i need, in this case anchor.

I have a problem because in ACP i enabled the checkbox to see the icon, but i see an icon that is not the one i inserted and the bbcode for anchor is not working. When i put the mouse on this icon i cannot see just anchor as name but i see "insert anchor".
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

Hi, martec! I noticed a conflict with Steve's Topic/Post Reaction extension. The editor does not work very well when both are active. I posted the details on this link: viewtopic.php?f=456&t=2397266&start=315#p14825316

Is there a way to solve this? The author of Topic/Post R. said he has no time to see this.
I'm sorry for my English. Google Translator does a bad job. :D
martec
Registered User
Posts: 324
Joined: Sat Sep 19, 2009 2:15 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by martec »

SalazarAG wrote: Sat Sep 16, 2017 9:29 pm Hi, martec! I noticed a conflict with Steve's Topic/Post Reaction extension. The editor does not work very well when both are active. I posted the details on this link: viewtopic.php?f=456&t=2397266&start=315#p14825316

Is there a way to solve this? The author of Topic/Post R. said he has no time to see this.
Hi try:

Open "postreactions ext folder"/styles/all/template/js/ajax_reactions.js

Find:

Code: Select all

var message = $('textarea', '#message-box').val().length;
add after:

Code: Select all

		if (typeof CKEDITOR !== "undefined" &&
			typeof CKEDITOR.instances !== "undefined" &&
			typeof CKEDITOR.instances["message"] === "object") {
			var message = CKEDITOR.instances["message"].getData();
		}
Ps. To take effect, you need clear cache of forum in ACP, browser and and cloudflare if you use.
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

martec wrote: Sun Sep 17, 2017 3:40 am
SalazarAG wrote: Sat Sep 16, 2017 9:29 pm Hi, martec! I noticed a conflict with Steve's Topic/Post Reaction extension. The editor does not work very well when both are active. I posted the details on this link: viewtopic.php?f=456&t=2397266&start=315#p14825316

Is there a way to solve this? The author of Topic/Post R. said he has no time to see this.
Hi try:

Open "postreactions ext folder"/styles/all/template/js/ajax_reactions.js

Find:

Code: Select all

var message = $('textarea', '#message-box').val().length;
add after:

Code: Select all

		if (typeof CKEDITOR !== "undefined" &&
			typeof CKEDITOR.instances !== "undefined" &&
			typeof CKEDITOR.instances["message"] === "object") {
			var message = CKEDITOR.instances["message"].getData();
		}
Ps. To take effect, you need clear cache of forum in ACP, browser and and cloudflare if you use.
Hi! worked very well! Thank you very much
I'm sorry for my English. Google Translator does a bad job. :D
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

Hi, martec. I was using the editor when I noticed some things. I was posting a story from a site (the link is this: https://noticias.uol.com.br/ultimas-not ... didato.htm ) and the copied text has several paragraphs. When I paste the text into the editor, it does not recognize the paragraphs, see:

Image

I noticed that to insert new paragraphs you need to click on the red arrow as shown in the image. But for long texts this takes a lot. I was wondering if there is a way to paste a text and the editor recognizes his paragraphs.

Thank you very much.
I'm sorry for my English. Google Translator does a bad job. :D
martec
Registered User
Posts: 324
Joined: Sat Sep 19, 2009 2:15 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by martec »

SalazarAG wrote: Mon Sep 18, 2017 11:56 pm Hi, martec. I was using the editor when I noticed some things. I was posting a story from a site (the link is this: https://noticias.uol.com.br/ultimas-not ... didato.htm ) and the copied text has several paragraphs. When I paste the text into the editor, it does not recognize the paragraphs, see:

Image

I noticed that to insert new paragraphs you need to click on the red arrow as shown in the image. But for long texts this takes a lot. I was wondering if there is a way to paste a text and the editor recognizes his paragraphs.

Thank you very much.
Hi,

you could do the test in http://sdk.ckeditor.com/samples/bbcode.html ?
If same issue happen unfortunately I can not do anything about the issue, because it's out of my control.
You will have to contact the ckeditor developer.
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

martec wrote: Tue Sep 19, 2017 1:51 am
SalazarAG wrote: Mon Sep 18, 2017 11:56 pm Hi, martec. I was using the editor when I noticed some things. I was posting a story from a site (the link is this: https://noticias.uol.com.br/ultimas-not ... didato.htm ) and the copied text has several paragraphs. When I paste the text into the editor, it does not recognize the paragraphs, see:

Image

I noticed that to insert new paragraphs you need to click on the red arrow as shown in the image. But for long texts this takes a lot. I was wondering if there is a way to paste a text and the editor recognizes his paragraphs.

Thank you very much.
Hi,

you could do the test in http://sdk.ckeditor.com/samples/bbcode.html ?
If same issue happen unfortunately I can not do anything about the issue, because it's out of my control.
You will have to contact the ckeditor developer.
Hi! I tested on this site and the text was pasted with their respective paragraphs, look:

Image
I'm sorry for my English. Google Translator does a bad job. :D
martec
Registered User
Posts: 324
Joined: Sat Sep 19, 2009 2:15 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by martec »

SalazarAG wrote: Tue Sep 19, 2017 2:06 am
martec wrote: Tue Sep 19, 2017 1:51 am
SalazarAG wrote: Mon Sep 18, 2017 11:56 pm Hi, martec. I was using the editor when I noticed some things. I was posting a story from a site (the link is this: https://noticias.uol.com.br/ultimas-not ... didato.htm ) and the copied text has several paragraphs. When I paste the text into the editor, it does not recognize the paragraphs, see:

Image

I noticed that to insert new paragraphs you need to click on the red arrow as shown in the image. But for long texts this takes a lot. I was wondering if there is a way to paste a text and the editor recognizes his paragraphs.

Thank you very much.
Hi,

you could do the test in http://sdk.ckeditor.com/samples/bbcode.html ?
If same issue happen unfortunately I can not do anything about the issue, because it's out of my control.
You will have to contact the ckeditor developer.
Hi! I tested on this site and the text was pasted with their respective paragraphs, look:

Image
hi,

please give me steps .
i tried copy text from site, but i don't have success.
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

martec wrote: Tue Sep 19, 2017 7:29 am
SalazarAG wrote: Tue Sep 19, 2017 2:06 am
martec wrote: Tue Sep 19, 2017 1:51 am
SalazarAG wrote: Mon Sep 18, 2017 11:56 pm Hi, martec. I was using the editor when I noticed some things. I was posting a story from a site (the link is this: https://noticias.uol.com.br/ultimas-not ... didato.htm ) and the copied text has several paragraphs. When I paste the text into the editor, it does not recognize the paragraphs, see:

Image

I noticed that to insert new paragraphs you need to click on the red arrow as shown in the image. But for long texts this takes a lot. I was wondering if there is a way to paste a text and the editor recognizes his paragraphs.

Thank you very much.
Hi,

you could do the test in http://sdk.ckeditor.com/samples/bbcode.html ?
If same issue happen unfortunately I can not do anything about the issue, because it's out of my control.
You will have to contact the ckeditor developer.
Hi! I tested on this site and the text was pasted with their respective paragraphs, look:

Image
hi,

please give me steps .
i tried copy text from site, but i don't have success.
Hi! Sorry, here is another link where you can copy and paste in the editor: https://br.noticias.yahoo.com/2-atualiz ... 00570.html
I'm sorry for my English. Google Translator does a bad job. :D
martec
Registered User
Posts: 324
Joined: Sat Sep 19, 2009 2:15 pm

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by martec »

SalazarAG wrote: Tue Sep 19, 2017 7:25 pm Hi! Sorry, here is another link where you can copy and paste in the editor: https://br.noticias.yahoo.com/2-atualiz ... 00570.html
Hi,

tested here.
There's no difference, in https://sdk.ckeditor.com/samples/bbcode.html if you click in source button and return again to wysiwyg mode, all paragraphs are lost. And what is send to forum is source mode text.

Anyway, I saw the problem. I do not guarantee you because I do not know if I can solve it.
But I'll try to solve it. Again I do not guarantee.
User avatar
SalazarAG
Registered User
Posts: 677
Joined: Mon Mar 30, 2015 10:48 am

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by SalazarAG »

martec wrote: Wed Sep 20, 2017 1:13 am
SalazarAG wrote: Tue Sep 19, 2017 7:25 pm Hi! Sorry, here is another link where you can copy and paste in the editor: https://br.noticias.yahoo.com/2-atualiz ... 00570.html
Hi,

tested here.
There's no difference, in https://sdk.ckeditor.com/samples/bbcode.html if you click in source button and return again to wysiwyg mode, all paragraphs are lost. And what is send to forum is source mode text.

Anyway, I saw the problem. I do not guarantee you because I do not know if I can solve it.
But I'll try to solve it. Again I do not guarantee.
Thanks, Martec, for all the help. If you can solve this problem I will be very happy :))

Even if it is not possible, I thank you for the help
I'm sorry for my English. Google Translator does a bad job. :D
bvetter
Registered User
Posts: 10
Joined: Sun Jan 08, 2017 3:14 pm
Location: Berlin, Germany
Contact:

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by bvetter »

I've an emoji (from https://github.com/sylvaindurand/emojione-phpbb)

Code: Select all

>:\
which triggers an error in "dropdownsmiliesdesmore":

Image

The svg emojis from https://github.com/sylvaindurand/emojione-phpbb is also added very large:
Image
https://www.alefo.de - the inofficial german alexa and echo community
https://www.gassistant.de - the inofficial german google assistant community
User avatar
mael
Registered User
Posts: 76
Joined: Wed Jan 11, 2017 1:21 am
Name: DANY

Re: [3.2][BETA] Rin Editor for phpBB (WYSIWYG Editor) (Powerd by CKEditor)

Post by mael »

Awesome extension man very useful,just one question it has compatibility with this: viewtopic.php?f=616&t=2414716
Locked

Return to “Abandoned Extensions”