![]() |
bbcode font-size semantics
Currently vb uses <font> for bbcode font-size and so I'm trying to replace it with <span>
So far I've edited class_bbcode.php Example (color): PHP Code:
PHP Code:
PHP Code:
PHP Code:
so my question is where can I find where to change "default" font sizes 1 - 7 to say 10 - 20 (px)? |
Someone asked that question on stackoverflow: http://stackoverflow.com/questions/8...-size-10-to-px . Someone there came up with a conversion to ems.
|
Thanks but that's not what I mean, converting sizes to Points/Pixels/Ems is the easy part, I'm needing to change how vbulletin converts the members bbcode choice:
PHP Code:
PHP Code:
Code:
html' => '<span style="font-size:1%2$spx;">%1$s</span>, ..but I would still like to know where in vbulletin the font-size function, CSS or whatever is allowing me to choose specifically which font sizes I wish whether it be within a template or php file as I can't find where myself. |
Oh, OK. I think what you can do is change that code to use a callback like this:
Code:
// [SIZE=XXX] Then write a function called handle_bbcode_size that takes the size number 1-7 as a parameter and returns the replacment html. That way you can write whatever php you want to do the conversion. (Edit: I think the function actually takes two parameters, the text between the tags and the font size number). BTW, I haven't tried it, and looking at the other tags that have a callback I notice none of them have an option_regex so I don't know if that works with a callback or not. |
Hello... Can you please help me on this? How can i use %2$s and %1$s in the sample function below?
PHP Code:
|
Can you please say if it is possible or not please? :)
|
Well, I never did actually try it, as I mentioned above. But did you make the change to $tag_list that I posted above? It's in includes/class_bbcode.php. And the handle_bbcode_size function should go in there too, somewhere before the final } so that it's part of the class.
|
PHP Code:
PHP Code:
I enter some text in WYSIWYG text area and select the text, then i pick a size like 5. It changes the font size perfectly. (in the page source code it still says <font*) I click the preview button (in newreply), the page reloads and it still displays font size as "5". I check the page source code both in the preview table cell and WYSIWYG text area and they both display "<span style***" which is correct. I click the preview button once again and this time i notice the text's font size is converted to default size and the size tag is completely removed. Then I opened vbulletin_textedit.js and changed the line below: Code:
option.innerHTML = '<font size="' + sizeoptions[n] + '">' + sizeoptions[n] + '</font>'; Code:
option.innerHTML = '<span style="font-size:' + sizeoptions[n] + '">' + sizeoptions[n] + '</span>'; |
Oh, right, I forgot about the fact that it has to be able to go back and forth between bbcode and html. There's a file includes/class_wysiwygparser.php that goes from html to bbcode, and it uses the <font> tag instead of the font-size attribute. So you could either change your replacement to use the font tag (which I know isn't the way it's done these days), or else figure out how to change the code in class_wysiwygparser.php. I only glanced at it, but there's a function parse_style_attribute(), and it currently doesn't parse out the font size. You might be able to add a line to the $searchlist array to make it find the font size and insert a size tag for it. Probably something like:
Code:
array('tag' => 'size', 'option' => true, 'regex' => '#font-size:\s*([0-9]+px;?)#i', 'match' => 1) |
Quote:
--------------- Added 23 Apr 2015 at 15:47 --------------- Btw, my vb version is 3.8.8 and i don't see a file named class_wysiwygparser.php. Maybe it's a vb 4.x file? There is file named functions_wysiwyg.php though. Is this the related section? PHP Code:
|
Yeah, I forgot that you were using vb3, but they just changed the functions into a class, so it's pretty much the same thing. Here's the modified parse_style_attribute function I came up with:
PHP Code:
Unfortunately, what doesn't work right is the font dropdown in the editor (at least in vb4). You can use the menu to set the size of selected text, but it won't showthe size of selected text or let you change the size if text already has a size (I think probably because it doesn't recognize the <span... way of doing it, so it just tries to add another on the outside, which does nothing). I don't know what to do about hat, or whether it needs to be fixed in js somewhere, but I don't have time to look at that. (Maybe it will work in vb3, or at least be an easier problem to fix). Edit: No, same problem in vb3. But you've already looked at the js so maybe you have a head start. It looks like color, font, bold, italics, etc are done with attributes, so maybe you can find where those are handled and add font-size like we did in the php. I think the goal of the Op was to change the sizes associated with the numbers, so if that's true you might be able to go back to using <font> and get everything to work just using the changes to the tag list, but maybe you have a different goal. |
1 Attachment(s)
Thank you for your reply. It's working, but as you stated, dropdown problem and extra spans make it unusable at the moment. I'm still searching for the source of <font size="x"> tags (they are added when you select a text and choose a size for the first time, a refresh converts them to span).
I attached my uncompressed vbulletin_textedit.js. Two instances of font tags are converted to span and i really can't find where else <font size and <font face tags are generated. I also noticed that <font face, <font color and <font size tags are merged into one tag like: Code:
<font color="DeepSkyBlue" face="Franklin Gothic Medium" size="7">test</font> |
I think for the ckeditor it might be in clientscript\ckeplugins\enhancedsourcearea\plugin. js, but I'm not sure if that file is used directly, because I seem to remember that all the ckeditor plugins are combined into one file. But I tried to search for a section of the code and it was only found once, so I could be wrong about that. I suppose I should just try changing something in that file and see if it has any effect.
|
vBulletin 3 does not have a clientscript\ckeplugins\ folder :( It's really weird. I can't figure out what else building the WYSIWYG editor. I made a mass search in all *.js and *.php files but could not find any other <font tags.
|
Quote:
|
OK, I think the problem has to do with the section in vbulletin_textedit.js that starts with:
Code:
/** That section tries to call a function queryCommandValue('fontsize'), which I guess returns the numeric value of the font size of the selected text (like you set in a <font> tag), but doesn't know how to return the value if the font size is being set by CSS. A possible solution seem to have something to do with selection ranges, but I couldn't figure it out in the few minutes I spent on it. I figured maybe you know more js and could figure it out. |
Yes, i'd seen that section but could not think of any ways to alternate the code. I posted a question @ stackoverflow and if i get an answer I will post here. Thanks.
|
All times are GMT. The time now is 04:24 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|