Насоки за оформяне и съставяне на съдържанието

  • Адресите на уеб-страници и e-mail адресите автоматично се конвертират в хипервръзки.
  • Разрешени HTML tag-ове: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd>

  • Линиите и параграфите се разпознават автоматично. Таговете <br /> нов ред, <p> параграф и </p> се вмъкват автоматично. Ако даден параграф не бъде разпознат, просто добавете два празни реда.
  • The Views module allows administrators to create dynamic lists of content for display in pages or blocks. It is possible to insert those lists into existing node bodies and blocks, but such inclusion requires that PHP filtering be turned on. The Insert View module allows any user to insert view listings using tag syntax, without the need for PHP execution permissions. The Insert View tag syntax for embedding a view is relatively simple:

    [view:my_view]

    is replaced by the content listing corresponding to the named view. In this case it is my_view.

    [view:my_view=my_display]

    invokes the my_view view using the my_display view display ID. If the display slot is left empty, the view's "default" display is used.

    [view:my_view=my_display=1,2,3]

    uses the my_display view display, and passes a comma delimited list of arguments (in this case 1, 2, and 3) to the view.

    Here's an example you could use with the default view named "tracker" which uses the page display and takes a user ID as an argument:

    [view:tracker=page=1]

    In short this tag says, "Insert the view named tracker, use the "page" display, and supply the argument 1."

    Sometimes you want to pass an argument without specifying a display ID. You can do that by leaving the display ID slot empty, like so:

    [view:my_view==1]

    How to find a display ID: On the edit page for the view in question, you'll find a list of displays at the left side of the control area. "Defaults" will be at the top of that list. Hover your mouse pointer over the name of the display you want to use. A URL will appear in the status bar of your browser. This is usually at the bottom of the window, in the chrome. Everything after #views-tab- is the display ID. For example in http://localhost/admin/build/views/edit/tracker?destination=node%2F51#views-tab-page the display ID would be "page".

  • SWF Tools Filter

    The basic syntax for embedding a flash file (.swf), flash movie (.flv) or audio file (.mp3) is:

    [swf file="filename.swf"]

    If you would like to override SWF Tools and flash player default settings, you can specify additional parameters. For example:

    [swf file="song.mp3" flashvars="backcolor=#AABBCC&&forecolor=#11AA11"]

    If you would like to output a list of files then the format is:

    [swf files="image1.jpg&&image2.jpg&&..."]
    SWF Tools Filter will accept following:
    • params : You can specify values for parameters to be passed to Flash to control the appearance of the output. Typical values are bgcolor and wmode. Example: params="wmode=true&&bgcolor="#00FF00" Alternatively you can supply each parameter individually without using params. Example wmode="true" bgcolor="#00FF00"
    • flashvars : You can specify values for output as flashvars, which become available to the Flash movie that is playing. This is often done to control a media player. Refer to the documentation of the flash player you are using to know what flashvar options are available. Example: flashvars="autostart=true&&volume=80"
    • methods : Optional information about how to display the file. The most common usage is to specify a particular media player and thus override the default specified on the settings page. Example: methods="player=onepixelout_mp3"

    WARNING: with params, flashvars and othervars, pass multiple values separated by &&.