vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB4 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=251)
-   -   Getting some BBCode to properly work (https://vborg.vbsupport.ru/showthread.php?t=297589)

AzzazelCyC 04-26-2013 02:03 AM

Basically, if you check over the HTML code, it is inserting the "row 1, cell 1" "row 1, cell 2" as data; what I am trying to accomplish here is that, using this statement:

[table (=head if needs title)] Data 1 | Data 2 [press enter to go to the next line or terminate this row]
Data 1.1 | Data 2.1 [press enter again]
Data 1.2 | Data 2.2[/ table]

Gets to print this:

https://vborg.vbsupport.ru/external/2013/04/7.png

With the data the user has entered, obviously; therefore, I don't see a need to use php whatsoever if this is some simple HTML code that should work, as, basically, the HTML code for the table above is:

Code:

<table border="1">
        <tr>
                <td>Data 1</td>
                <td>Data 2</td>
        </tr>
        <tr>
                <td>Data 1.1</td>
                <td>Data 2.1</td>
        </tr>
        <tr>
                <td>Data 1.2</td>
                <td>Data 2.2</td>
        </tr>
</table>


tbworld 04-26-2013 03:41 AM

I am not sure where our communication problem is. I do not understand how you can use your construct under vBulletins BBCODE system without some custom coding.

vBulletin default bbcode only accepts two parameters {param} and {option}. It is a simple two input system that is parsed.

I have not spent two much time pouring over the vbulletins BBCODE system, I do not use it all that much: since it is limited for safety. So if I am incorrect, please correct me, and refer me to an example using the method you are talking about.

In order to pass complex data I have always written back-end code and used the vB_bbcode_parser class. (may have spelled the class incorrectly).

----

Maybe what you are referring to is creating an HTML form. I see from this example you are using simple user prompts?

AzzazelCyC 04-26-2013 04:58 AM

Well, I guess this was more complicated than I thought.

I got a question though, taking what you said "bbcode accepts two parameters" how does the "common" or bult-in table tags work? it needs, obviously, to be built like on HTML by using table, tr and td, but this isn't taking just 2 parameters; I see like going up to php code and everything is a bit excessive just to be able to create simple table tags, I might be mistaken though, in which case, I don't see how it is worth putting so much work into this.

tbworld 04-26-2013 06:03 AM

Quote:

Originally Posted by AzzazelCyC (Post 2418602)
Well, I guess this was more complicated than I thought.

I got a question though, taking what you said "bbcode accepts two parameters" how does the "common" or bult-in table tags work? it needs, obviously, to be built like on HTML by using table, tr and td, but this isn't taking just 2 parameters;

You're right the [TABLE] tag is not a standard BBCODE. A couple of files to look at.

/includes/class_bbcode.php
/packages/vbform/bbcodehelper/table.php.

'class_bbcpde.php'
class vB_BbCodeParser
method 'parseTableTag'
method 'build_parse_array'
function 'fetch_tag_list'
Then look at 'table.php' ...

It will help you gain a little insight. :)

--------------- Added [DATE]1366961088[/DATE] at [TIME]1366961088[/TIME] ---------------

It occurred to me last night that you might not know that if you double click on an image in the editor you can align it left or right, change the image size and target. It is not a complete fix for image alignment in posts, but it does help.

We have altered vbulletin so that it is adaptive especially for tablets. So I did some modifications how photos are shown in the posts, depending on the number of photos. Thus extending vbulletins image positioning. Essentially creating a auto-formatted output.


All times are GMT. The time now is 02:54 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01055 seconds
  • Memory Usage 1,728KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete