Posts: 248
Threads: 39
Joined: Jul 2014
Reputation:
10
[list]
[*][quote]PS4 GTA 5 uses DualShock 4 speaker for phone calls & police radio, lightbar flashes red & blue during pursuits, touchpad to change weapon[/quote]
https://mobile.twitter.com/VG_Dave/status/529692327288528896
[*]New screenshots of GTA 5 on PS4
http://imgur.com/a/E5xUa
[*]PS4 First Person Gameplay
[/list]
[video=youtube]http://www.youtube.com/watch?v=7oFmRN0oadI[/video]
I will continue to update the thread as more information is released. Most of these things were confirmed by IGN's 1 hour gameplay of GTA 5.
Will appear as:
There is also the issue of copy/pasting and it will remove several elements like the quote tag.
Thank you.
Posts: 2,512
Threads: 122
Joined: Jul 2011
Reputation:
289
2014-11-05, 01:14 AM
(This post was last modified: 2014-11-05, 01:15 AM by martec.)
what?
space in list tag?
this isn´t problem with editor, but com parser of mybb. You can go to WYSIWYG mode and return to source mode, spacing between the link and the item list is kept intact in editor.
quote tag in list tag? you are improperly using the tag list
and check code of sceditor
var validChildren = {
ul: ['li', 'ol', 'ul'],
ol: ['li', 'ol', 'ul'],
table: ['tr'],
tr: ['td', 'th'],
code: ['br', 'p', 'div']
};
https://github.com/samclarke/SCEditor/bl...e.js#L1255
Quote tag isn´t validChildren of list tag. Is not impossible thing to change, but personally it does not make much sense.
Posts: 248
Threads: 39
Joined: Jul 2014
Reputation:
10
2014-11-05, 04:58 AM
(This post was last modified: 2014-11-05, 04:58 AM by mikeh.)
(2014-11-05, 01:14 AM)martec Wrote: what?
space in list tag?
this isn´t problem with editor, but com parser of mybb. You can go to WYSIWYG mode and return to source mode, spacing between the link and the item list is kept intact in editor.
quote tag in list tag? you are improperly using the tag list
and check code of sceditor
var validChildren = {
ul: ['li', 'ol', 'ul'],
ol: ['li', 'ol', 'ul'],
table: ['tr'],
tr: ['td', 'th'],
code: ['br', 'p', 'div']
};
https://github.com/samclarke/SCEditor/bl...e.js#L1255
Quote tag isn´t validChildren of list tag. Is not impossible thing to change, but personally it does not make much sense. There is still the issue of spacing after a link within the list tags. I think the best alternative is making your own bullet points with -
Posts: 2,512
Threads: 122
Joined: Jul 2011
Reputation:
289
2014-11-05, 05:26 AM
(This post was last modified: 2014-11-05, 05:29 AM by martec.)
(2014-11-05, 04:58 AM)mikeh Wrote: There is still the issue of spacing after a link within the list tags. I think the best alternative is making your own bullet points with -
plz, an example
if you saying again about spacing between the link and the item list, this isn´t problem with editor, but with parser of mybb
and i don´t know why mybb remove white line in lista tag, and i don´t know if this is intentional
Posts: 121
Threads: 18
Joined: Mar 2013
Reputation:
3
2014-11-06, 04:36 AM
(This post was last modified: 2014-11-06, 04:54 AM by Alia.)
When I post a paragraph and put a space before the next paragraph, it goes away when I submit. It doesn't happen on this board, but it does on mine since 1.8.01. So something went funny somewhere.
Posts: 2,512
Threads: 122
Joined: Jul 2011
Reputation:
289
2014-11-06, 01:11 PM
(This post was last modified: 2014-11-06, 01:15 PM by martec.)
(2014-11-05, 04:58 AM)mikeh Wrote: There is still the issue of spacing after a link within the list tags. I think the best alternative is making your own bullet points with -
fix of spacing...
in root/inc/class_parser.php
find:
$message = preg_replace("#\s*\[\*\]\s*#", "</li>\n<li>", $message);
replace:
$message = preg_replace("#\[\*\]\s*#", "</li>\n<li>", $message);
before fix:
In editor:
In postbit
after fix:
In editor:
In postbit
as you can see it's definitely not a problem caused by the editor
Posts: 494
Threads: 82
Joined: Dec 2012
Reputation:
50
2014-11-13, 02:38 PM
(This post was last modified: 2014-11-13, 02:40 PM by ATofighi.)
(2014-11-06, 01:11 PM)martec Wrote: (2014-11-05, 04:58 AM)mikeh Wrote: There is still the issue of spacing after a link within the list tags. I think the best alternative is making your own bullet points with -
fix of spacing...
in root/inc/class_parser.php
find:
$message = preg_replace("#\s*\[\*\]\s*#", "</li>\n<li>", $message);
replace:
$message = preg_replace("#\[\*\]\s*#", "</li>\n<li>", $message);
before fix:
In editor:
![[Image: ae8OWCs.png]](https://camo.mybb.com/9e829372f364f7c590a4d5aa5bfcb9bf5088c072/687474703a2f2f692e696d6775722e636f6d2f6165384f5743732e706e67)
In postbit
![[Image: e8Q6sxM.png]](https://camo.mybb.com/8631eecef43e0dada4882d9c597cf5b9ef37d71a/687474703a2f2f692e696d6775722e636f6d2f6538513673784d2e706e67)
after fix:
In editor:
![[Image: ae8OWCs.png]](https://camo.mybb.com/9e829372f364f7c590a4d5aa5bfcb9bf5088c072/687474703a2f2f692e696d6775722e636f6d2f6165384f5743732e706e67)
In postbit
![[Image: b6hoIu6.png]](https://camo.mybb.com/334a9f283308643282201951bb8b76a75d8f80c3/687474703a2f2f692e696d6775722e636f6d2f6236686f4975362e706e67)
as you can see it's definitely not a problem caused by the editor before \s* in parser for first [*]
if we remove it this code:
[list]
[*] item 1
[*] item 2
[/list]
will parse to:
<ul>
</li><li> item 1
</li><li> item 2
</li>
</ul>
Note: I don't test it.
Posts: 2,512
Threads: 122
Joined: Jul 2011
Reputation:
289
2014-11-14, 02:33 AM
(This post was last modified: 2014-11-14, 02:40 AM by martec.)
(2014-11-13, 02:38 PM)My-BB.Ir Wrote: before \s* in parser for first [*] if we remove it this code:
[list]
[*] item 1
[*] item 2
[/list]
will parse to:
<ul>
</li><li> item 1
</li><li> item 2
</li>
</ul>
Note: I don't test it.
sorry...
but I did not understand what you're trying to tell me
for me not has any issue...
Posts: 2,833
Threads: 141
Joined: Jan 2012
Reputation:
86
This is still a bug, at least posting a link in a list doesn't work (I've always problems with it in my threads). Not sure whether we should fix it as a bug in MyBB or report to the SCEditor team (if it hasn't been yet).
Support PMs will be ignored!
Posts: 5,525
Threads: 73
Joined: Feb 2012
Reputation:
582
Hi,
Thank you for your report. We have pushed this issue to our Github repository for further analysis where you can track our commits and progress with fixing this bug. Discussions regarding this bug may also take place there too.
Follow this link to visit the issue on Github: https://github.com/mybb/mybb/issues/2143
Thanks for contributing to MyBB!
Regards,
The MyBB Group
|