Support

Support Options

Report a problem

About you
This is a randomly generated image of letters and numbers. Letters not clear? Click to renew CAPTCHA.
About the problem

FUN88 คาสิโน เครดิตฟรี และโบนัสฟรีเครดิต เดิมพันออนไลน์

Discoverability
Visible
Join Policy
Open/Anyone
Created
27 Sep 2021

Help: Wiki Formatting

Wiki Formatting

Wiki markup is a core feature for Topic pages, tightly integrating all the other parts of Trac into a flexible and powerful whole.

This site has a built in small and powerful wiki rendering engine. This wiki engine implements an ever growing subset of the commands from other popular Wikis, especially MoinMoin.

This page demonstrates the formatting syntax available anywhere Wiki Formatting is allowed.

Font Styles

The pages supports the following font styles:

 * '''bold''', '''!''' can be bold too''', and '''! '''
 * ''italic''
 * '''''bold italic'''''
 * __underline__
 * {{{monospace}}} or `monospace`
 * ~~strike-through~~
 * ^superscript^ 
 * ,,subscript,,

Display:

  • bold, ! can be bold too, and !
  • italic
  • bold italic
  • underline
  • monospace or monospace
  • strike-through
  • superscript
  • subscript

Notes:

  • {{{...}}} and `...` commands not only select a monospace font, but also treat their content as verbatim text, meaning that no further wiki processing is done on this text.
  • ! tells wiki parser to not take the following characters as wiki format, so pay attention to put a space after !, e.g. when ending bold.

Headings

You can create heading by starting a line with one up to five equal characters (”=”) followed by a single space and the headline text. The line should end with a space followed by the same number of = characters. The heading might optionally be followed by an explicit id. If not, an implicit but nevertheless readable id will be generated.

Example:

= Heading =
== Subheading ==
=== About ''this'' ===
=== Explicit id === #using-explicit-id-in-heading

Display:

Heading

Subheading

About this

Explicit id

Paragraphs

A new text paragraph is created whenever two blocks of text are separated by one or more empty lines.

A forced line break can also be inserted, using:

Line 1[[BR]]Line 2

Display:

Line 1
Line 2

Lists

The wiki supports both ordered/numbered and unordered lists.

NOTE: The first character of a list item must be a space: “ * text”

Example:

 * Item 1
  * Item 1.1
 * Item 2

 # Item 1
  # Item 1.a
  # Item 1.b
   # Item 1.b.i
  # Item 1.b.ii
 # Item 2

Display:

  • Item 1
    • Item 1.1
  • Item 2
  1. Item 1
    1. Item 1.a
    2. Item 1.b
      1. Item 1.b.i
      2. Item 1.b.ii
  2. Item 2

Note that there must be one or more spaces preceding the list item markers, otherwise the list will be treated as a normal paragraph.

For multi-line content within a listed item, the content must be indented the same number of spaces as the initial list line content. That is, if it takes 3 characters to start a list “(space)#(space)Content”, the multi-line content must be indented 3 spaces.

Example:

 * One
 * Two[[br]]
   Multi-line content
 * Three
  • One
  • Two
    Multi-line content
  • Three

Definition Lists

The wiki also supports definition lists. Definition terms start with one space “ “ and end with double colons “::”. Definitions must be on the line immediately following the term and start with two to three spaces.

Example:

A line with no beginning spaces.

 llama::
   some kind of mammal, with hair
 ppython::
   some kind of reptile, without hair
   (can you spot the typo?)

Display:

A line with no beginning spaces.

llama
some kind of mammal, with hair
ppython
some kind of reptile, without hair
(can you spot the typo?)

Preformatted Text

Block containing preformatted text are suitable for source code snippets, notes and examples. Use three curly braces wrapped around the text to define a block quote. The curly braces need to be on a separate line.

Example:

{{{
  def HelloWorld():
      print "Hello World"
}}}

Display:

 def HelloWorld():
     print "Hello World"

Blockquotes

In order to mark a paragraph as blockquote, indent that paragraph with two spaces.

Example:

  This text is a quote from someone else.

Display:

This text is a quote from someone else.


Simple tables can be created like this:

||Cell 1||Cell 2||Cell 3||
||Cell 4||Cell 5||Cell 6||

Display:

Cell 1 Cell 2 Cell 3
Cell 4 Cell 5 Cell 6

Cell headings can be specified by wrapping the content in a pair of ‘=’ characters. Note that the ‘=’ characters have to stick to the cell separators, like this:

||        ||= stable =||= latest =||
||= 0.10 =||  0.10.5  || 0.10.6dev||
||= 0.11 =||  0.11.6  || 0.11.7dev||

Display:

stable latest
0.10 0.10.5 0.10.6dev
0.11 0.11.6 0.11.7dev

Finally, specifying an empty cell means that the next non empty cell will span the empty cells. For example:

|| 1 || 2 || 3 ||
|||| 1-2 || 3 ||
|| 1 |||| 2-3 ||
|||||| 1-2-3 ||

Display:

1 2 3
1-2 3
1 2-3
1-2-3

To explicitly align content:

||= attribute list =||= longer column  =||
||<. align left     ||   longer text    ||
||>. align right    ||   longer text    ||
||=. center         ||   longer text    ||
||<>. justify       ||   longer text    ||
||^. valign top     || longer[[br]]text ||
||~. bottom         || longer[[br]]text ||

Display:

attribute list longer column
align left longer text
align right longer text
center longer text
justify longer text
valign top longer
text
bottom longer
text

Note that if the content of a cell “sticks” to one side of the cell and only one, then the text will be aligned on that side. Explicit alignment (above) will override this. Example:

||=Text =||= Numbers =||
||left align    ||        1.0||
||      right align||     4.5||
|| default alignment ||   2.5||
||default||         2.5||
||  default ||      2.5||
|| default ||       2.5||
||<.     left align||     4.5||
Text Numbers
left align 1.0
right align 4.5
default alignment 2.5
default 2.5
default 2.5
default 2.5
left align 4.5

Links

Hyperlinks are automatically created for WikiPageNames and URLs. WikiPageLinks can be disabled by prepending an exclamation mark “!” character, such as !WikiPageLink.

Example:

  MainPage, http://www.edgewall.com/, !NotAlink

Display:

MainPage, http://www.edgewall.com/, NotAlink

Links can be given a more descriptive title by writing the link followed by a space and a title and all this inside square brackets. If the descriptive title is omitted, then the explicit prefix is discarded, unless the link is an external link. This can be useful for wiki pages not adhering to the WikiPageNames convention.

Example:

 * [http://www.edgewall.com/ Edgewall Software]
 * [MainPage Main Page]
 * [Help:WikiMacros]

Display:

Setting Anchors

An anchor, or more correctly speaking, an anchor name can be added explicitly at any place in the Wiki page, in order to uniquely identify a position in the document:

[=#point1]

It’s also very close to the syntax for the corresponding link to that anchor:

[#point1]

Example usage:

[#point2 jump to the second point]

...

Point2:  [=#point2] Jump here

jump to the second point

Point2: Jump here

Escaping Links and Wiki Page Names

You may avoid making hyperlinks out of WikiLinks by preceding an expression with a single “!” (exclamation mark).

Example:

 !NoHyperLink
 !#42 is not a link

Display: NoHyperLink !#42 is not a link

Images

The simplest way to include an image is to upload it as attachment to the current page, and put the filename in a macro call like [[Image(picture.gif)]].

In addition to the current page, it is possible to refer to other resources:

  • [[Image(picture.gif)]] (simplest)
  • [[Image(picture.gif, 120px)]] (give it a specific width)
  • [[Image(picture.gif, right)]] (align by keyword)
  • [[Image(picture.gif, nolink)]] (unlinked)
  • [[Image(picture.gif, align=right)]] (align by attribute)

See Wiki Macros for further documentation on the [[Image()]] macro.

Macros

Macros are custom functions to insert dynamic content in a page.

Example:

[[Timestamp]]

Display: 2024-05-03 15:36:28

See Wiki Macros for more information, and a list of installed macros.

Miscellaneous

Four or more dashes will be replaced by a horizontal line.

Example:

----

Display:


Created on , Last modified on


Debug Console

Close13 MBRequestSessionTimelineDatabase74Events48
$_GET
Array( ) Array(

)
$_POST
Array( ) Array(

)
$_COOKIE
Array( ) Array(

)
$_SERVER
Array( REDIRECT_SCRIPT_URL => /groups/montee88/wiki/Help:WikiFormatting, REDIRECT_SCRIPT_URI ... Array(
REDIRECT_SCRIPT_URL => /groups/montee88/wiki/Help:WikiFormatting,
REDIRECT_SCRIPT_URI => https://itmig.curie.fr/groups/montee88/wiki/Help:WikiFormatting,
REDIRECT_HTTPS => on,
REDIRECT_SSL_TLS_SNI => itmig.curie.fr,
REDIRECT_STATUS => 200,
SCRIPT_URL => /groups/montee88/wiki/Help:WikiFormatting,
SCRIPT_URI => https://itmig.curie.fr/groups/montee88/wiki/Help:WikiFormatting,
HTTPS => on,
SSL_TLS_SNI => itmig.curie.fr,
HTTP_ACCEPT => */*,
HTTP_USER_AGENT => Mozilla/5.0 AppleWebKit/537.36 (KHTML, like Gecko; compatible; ClaudeBot/1.0; +claudebot@anthropic.com),
HTTP_HOST => itmig.curie.fr,
PATH => /usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin,
SERVER_SIGNATURE => ,
SERVER_SOFTWARE => Apache/2.4.10 (Debian),
SERVER_NAME => itmig.curie.fr,
SERVER_ADDR => 192.168.25.26,
SERVER_PORT => 443,
REMOTE_ADDR => 3.139.90.131,
DOCUMENT_ROOT => /var/www/itmig,
REQUEST_SCHEME => https,
CONTEXT_PREFIX => ,
CONTEXT_DOCUMENT_ROOT => /var/www/itmig,
SERVER_ADMIN => [no address given],
SCRIPT_FILENAME => /var/www/itmig/index.php,
REMOTE_PORT => 13828,
REDIRECT_URL => /groups/montee88/wiki/Help:WikiFormatting,
GATEWAY_INTERFACE => CGI/1.1,
SERVER_PROTOCOL => HTTP/1.1,
REQUEST_METHOD => GET,
QUERY_STRING => ,
REQUEST_URI => /groups/montee88/wiki/Help:WikiFormatting,
SCRIPT_NAME => /index.php,
PHP_SELF => /index.php,
REQUEST_TIME_FLOAT => 1714750588.188,
REQUEST_TIME => 1714750588
)
separator .
orderBy id
orderDir asc
1 registerIP
2 access
always
renew
tracker.sid ed241f5660d3804895bae717d8de9c33
tracker.ssid ed241f5660d3804895bae717d8de9c33
tracker.rsid ed241f5660d3804895bae717d8de9c33
session.token 6a80648a82cf99544dc985b78bd03d2c
  • site 0.019 seconds (+0.019); 3.75 MB (+3.750) - afterInitialise
  • site 0.029 seconds (+0.010); 4.50 MB (+0.750) - afterRoute
  • site 0.187 seconds (+0.158); 12.75 MB (+8.250) - afterDispatch
  • site 0.195 seconds (+0.008); 12.75 MB (0.000) - beforeRenderModule mod_custom (Hub Footer)
  • site 0.197 seconds (+0.002); 13.00 MB (+0.250) - afterRenderModule mod_custom (Hub Footer)
  • site 0.197 seconds (+0.000); 13.00 MB (0.000) - beforeRenderModule mod_breadcrumbs (Breadcrumbs)
  • site 0.201 seconds (+0.004); 13.00 MB (0.000) - afterRenderModule mod_breadcrumbs (Breadcrumbs)
  • site 0.201 seconds (+0.000); 13.00 MB (0.000) - beforeRenderModule mod_menu (Main Menu)
  • site 0.208 seconds (+0.007); 13.00 MB (0.000) - afterRenderModule mod_menu (Main Menu)
  • site 0.208 seconds (+0.000); 13.00 MB (0.000) - beforeRenderModule mod_search (Search)
  • site 0.210 seconds (+0.002); 13.25 MB (+0.250) - afterRenderModule mod_search (Search)
  • site 0.210 seconds (+0.000); 13.25 MB (0.000) - beforeRenderModule mod_reportproblems (Trouble Report)
  • site 0.217 seconds (+0.007); 13.25 MB (0.000) - afterRenderModule mod_reportproblems (Trouble Report)
  • site 0.223 seconds (+0.006); 13.25 MB (0.000) - onAfterRender
  • site 0.225 seconds (+0.003); 13.25 MB (0.000) - sessionStore
13 MB

74 Queries Logged: 0.019031047821045 seconds

  1. SELECT data
      FROM `jos_session`
      WHERE `session_id` = '340ba86e3626b538efa3bd8b60e65401'
  2. DELETE
      FROM`jos_session`
      WHERE `session_id` = '340ba86e3626b538efa3bd8b60e65401'
  3. SELECT data
      FROM `jos_session`
      WHERE `session_id` = 'ed241f5660d3804895bae717d8de9c33'
  4. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_languages'
  5. SELECT session_id
      FROM `jos_session`
      WHERE `session_id` = 'ed241f5660d3804895bae717d8de9c33'
      LIMIT 1
  6. INSERT INTO `jos_session` (`session_id`,`client_id`,`time`,`ip`)
      VALUES ('ed241f5660d3804895bae717d8de9c33','0','1714750588','3.139.90.131')
  7. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_members'
  8. SELECT b.id
      FROM `jos_usergroups` AS `a`
      LEFT JOIN jos_usergroups AS b
      ON b.lft <= a.lft
      AND b.rgt >= a.rgt
      WHERE `a`.`id` = '1'
  9. SELECT *
      FROM `jos_viewlevels`
  10. SELECT folder AS type,element AS name,protected,params
      FROM `jos_extensions`
      WHERE `enabled` >= '1'
      AND `type` = 'plugin'
      AND `state` >= '0'
      AND `access` IN ('1','1','4')
      ORDER BY `ordering` ASC
  11. SELECT m.id,m.menutype,m.title,m.alias,m.note,m.path AS route,m.link,m.type,m.level,m.language,m.browserNav,m.access,m.params,m.home,m.img,m.template_style_id,m.component_id,m.parent_id,e.element AS component
      FROM `jos_menu` AS `m`
      LEFT JOIN jos_extensions AS e
      ON e.extension_id = m.component_id
      WHERE `m`.`published` = '1'
      AND `m`.`parent_id` > '0'
      AND `m`.`client_id` = '0'
      ORDER BY `m`.`lft` ASC
  12. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_groups'
  13. SELECT *
      FROM `jos_xgroups`
      WHERE cn = 'montee88';
  14. (select uidNumber, 'invitees' AS role
      from jos_xgroups_invitees
      where gidNumber='1016') UNION (select uidNumber, 'applicants' AS role
      from jos_xgroups_applicants
      where gidNumber='1016') UNION (select uidNumber, 'members' AS role
      from jos_xgroups_members
      where gidNumber='1016') UNION (select uidNumber, 'managers' AS role
      from jos_xgroups_managers
      where gidNumber='1016')
  15. SELECT jos_template_styles.id,jos_template_styles.home,jos_template_styles.template,jos_template_styles.params,jos_extensions.protected
      FROM `jos_template_styles`
      INNER JOIN jos_extensions
      ON jos_extensions.element = jos_template_styles.template
      WHERE `jos_template_styles`.`client_id` = '0'
      AND `jos_extensions`.`enabled` = '1'
      AND `jos_extensions`.`type` = 'template'
      AND jos_extensions.`client_id` = `jos_template_styles`.`client_id`
      ORDER BY `home` DESC
  16. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_tags'
  17. DELETE
      FROM `jos_xgroups_pages_checkout`
      WHERE `userid`='0'
  18. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_projects'
  19. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_resources'
  20. SHOW FULL COLUMNS
      FROM `jos_xgroups_pages`
  21. SELECT *
      FROM jos_xgroups_pages
      WHERE gidNumber='1016'
      AND state IN (0,1)
      ORDER BY lft ASC
  22. SELECT COUNT(jos_announcements.id) AS count
      FROM `jos_announcements`
      WHERE `jos_announcements`.`scope` = '
      group'
      AND `jos_announcements`.`scope_id` = '1016'
      AND `jos_announcements`.`state` = '1'
      AND (`jos_announcements`.`publish_up` IS NULL OR `jos_announcements`.`publish_up` <= '2024-05-03 15:36:28' )
      AND (`jos_announcements`.`publish_down` IS NULL OR `jos_announcements`.`publish_down` >= '2024-05-03 15:36:28' )
  23. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_blog'
  24. SELECT COUNT(jos_blog_entries.id) AS count
      FROM `jos_blog_entries`
      WHERE `jos_blog_entries`.`scope` = '
      group'
      AND `jos_blog_entries`.`scope_id` = '1016'
      AND `jos_blog_entries`.`state` IN ('1')
      AND `jos_blog_entries`.`access` IN ('1','1','4')
      AND (`jos_blog_entries`.`publish_up` IS NULL OR `jos_blog_entries`.`publish_up` <= '2024-05-03 15:36:28' )
      AND (`jos_blog_entries`.`publish_down` IS NULL OR `jos_blog_entries`.`publish_down` >= '2024-05-03 15:36:28' )
  25. SELECT COUNT(*)
      FROM `jos_events`
      WHERE scope='
      group'
      AND scope_id=1016
      AND state=1
      AND (publish_up >='2024-05-03 15:36:28' OR publish_down >= '2024-05-03 15:36:28')
  26. SELECT COUNT(*)
      FROM `jos_events`
      WHERE scope='
      group'
      AND scope_id=1016
      AND state=1
      AND (publish_up >= '2024-05-03 15:36:28' OR publish_down >= '2024-05-03 15:36:28')
      AND publish_up <= '2024-05-31 23:59:59'
  27. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_collections'
  28. SHOW FULL COLUMNS
      FROM `jos_collections`
  29. SELECT COUNT(DISTINCT b.id)
      FROM jos_collections AS b
      INNER JOIN `jos_collections_items` AS im
      ON im.type='collection'
      AND im.object_id=b.id
      LEFT JOIN `jos_collections_following` AS f
      ON f.following_type='collection'
      AND f.following_id=b.id
      LEFT JOIN `jos_xgroups` AS g
      ON g.gidNumber=b.object_id
      AND b.object_type='
      group'
      WHERE b.state='1'
      AND b.access='0'
      AND b.object_id='1016'
      AND b.object_type='
      group'
  30. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_courses'
  31. SHOW FULL COLUMNS
      FROM `jos_courses`
  32. SELECT COUNT(*)
      FROM jos_courses AS c
      WHERE c.group_id='1016'
  33. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_forum'
  34. SELECT COUNT(jos_forum_posts.id) AS count
      FROM `jos_forum_posts`
      WHERE `jos_forum_posts`.`scope` = '
      group'
      AND `jos_forum_posts`.`scope_id` = '1016'
      AND `jos_forum_posts`.`state` = '1'
      AND `jos_forum_posts`.`parent` = '0'
  35. SELECT *
      FROM `jos_xgroups_memberoption`
      WHERE `jos_xgroups_memberoption`.`gidNumber` = '1016'
      AND `jos_xgroups_memberoption`.`userid` = '0'
      AND `jos_xgroups_memberoption`.`optionname` = 'receive-forum-email'
  36. SHOW FULL COLUMNS
      FROM `jos_projects`
  37. SELECT DISTINCT p.id
      FROM jos_project_owners as po, jos_projects AS p
      LEFT JOIN jos_project_owners AS o
      ON o.projectid=p.id
      AND o.userid != 0
      AND p.state!= 2 JOIN jos_users as x
      ON x.id=p.created_by_user
      LEFT JOIN jos_xgroups as g
      ON g.gidNumber=p.owned_by_group
      WHERE p.id=po.projectid
      AND p.state NOT IN (2, 3)
      AND po.status=1
      AND po.groupid=1016
  38. SELECT *
      FROM `jos_resource_types`
      WHERE `jos_resource_types`.`category` = '27'
      ORDER BY `type` ASC
  39. SELECT COUNT(jos_resources.id) AS count
      FROM `jos_resources`
      WHERE `jos_resources`.`published` IN ('1')
      AND `jos_resources`.`group_owner` = 'montee88'
      AND `jos_resources`.`access` IN ('0','1','2','3','4')
      AND (`jos_resources`.`publish_up` = '0000-00-00 00:00:00' OR `jos_resources`.`publish_up` <= '2024-05-03 15:36:28' )
      AND (`jos_resources`.`publish_down` = '0000-00-00 00:00:00' OR `jos_resources`.`publish_down` >= '2024-05-03 15:36:28' )
  40. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_wiki'
  41. SELECT COUNT(jos_wiki_pages.id) AS count
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
      AND `jos_wiki_pages`.`state` = '1'
  42. SELECT COUNT(jos_wiki_pages.id) AS count
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
  43. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'Help:WikiFormatting'
      AND `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
  44. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'Help:WikiFormatting'
      AND `jos_wiki_pages`.`scope` = 'site'
      AND `jos_wiki_pages`.`scope_id` = '0'
  45. SELECT *
      FROM `jos_wiki_versions`
      WHERE `jos_wiki_versions`.`id` = '3'
  46. SELECT element
      FROM `jos_extensions`
      WHERE folder='wiki'
      AND type='plugin'
      AND enabled=1
      AND element LIKE 'parser%'
      ORDER BY enabled DESC
      LIMIT 1
  47. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'MainPage'
      AND `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
  48. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'Help:WikiMacros'
      AND `jos_wiki_pages`.`scope` = 'site'
      AND `jos_wiki_pages`.`scope_id` = '0'
  49. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'WikiPageNames'
      AND `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
  50. SELECT *
      FROM `jos_wiki_pages`
      WHERE `jos_wiki_pages`.`state` = '1'
      AND `jos_wiki_pages`.`pagename` = 'WikiPageNames'
      AND `jos_wiki_pages`.`scope` = '
      group'
      AND `jos_wiki_pages`.`scope_id` = '1016'
  51. SELECT *
      FROM `jos_wiki_links`
      WHERE `jos_wiki_links`.`page_id` = '1'
  52. SELECT jos_tags_object.label,jos_tags.*
      FROM `jos_tags`
      INNER JOIN jos_tags_object
      ON jos_tags_object.tagid = jos_tags.id
      WHERE `jos_tags_object`.`tbl` = 'wiki'
      AND `jos_tags_object`.`objectid` = '1'
      AND `jos_tags`.`admin` = '0'
      GROUP BY jos_tags_object.label,jos_tags.id
  53. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_wishlist'
  54. SELECT *
      FROM `jos_wishlist`
      WHERE `jos_wishlist`.`referenceid` = '1016'
      AND `jos_wishlist`.`category` = '
      group'
  55. SELECT *
      FROM `jos_wishlist_ownergroups`
      WHERE `jos_wishlist_ownergroups`.`wishlist` = '42'
  56. SELECT *
      FROM `jos_wishlist_owners`
      WHERE `jos_wishlist_owners`.`wishlist` = '42'
      AND `jos_wishlist_owners`.`type` != '2'
  57. SELECT a.rules
      FROM `jos_assets` AS `a`
      WHERE `a`.`id` = '1'
      GROUP BY a.id, a.rules, a.lft
  58. SELECT b.rules
      FROM `jos_assets` AS `a`
      LEFT JOIN jos_assets AS b
      ON b.lft <= a.lft
      AND b.rgt >= a.rgt
      WHERE `a`.`name` = 'manage'
      GROUP BY b.id, b.rules, b.lft
      ORDER BY `b`.`lft` ASC
  59. SELECT *
      FROM `jos_assets`
      WHERE `jos_assets`.`parent_id` = '0'
  60. SELECT *
      FROM `jos_assets`
      WHERE `jos_assets`.`id` = '1'
  61. SELECT COUNT(jos_wishlist_item.id) AS count
      FROM `jos_wishlist_item`
      WHERE `jos_wishlist_item`.`wishlist` = '42'
      AND `jos_wishlist_item`.`status` != '2'
      AND `jos_wishlist_item`.`private` = '0'
  62. SELECT COUNT(jos_activity_recipients.id) AS count
      FROM `jos_activity_recipients`
      WHERE `jos_activity_recipients`.`scope` = '
      group'
      AND `jos_activity_recipients`.`scope_id` = '1016'
      AND `jos_activity_recipients`.`state` = '1'
      AND `jos_activity_recipients`.`viewed` IS NULL
  63. SELECT *
      FROM `jos_announcements`
      WHERE `jos_announcements`.`scope` = '
      group'
      AND `jos_announcements`.`scope_id` = '1016'
      AND `jos_announcements`.`state` = '1'
      AND `jos_announcements`.`sticky` = '1'
      AND (`jos_announcements`.`publish_up` IS NULL OR `jos_announcements`.`publish_up` <= '2024-05-03 15:36:28' )
      AND (`jos_announcements`.`publish_down` IS NULL OR `jos_announcements`.`publish_down` >= '2024-05-03 15:36:28' )
  64. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_users'
  65. SELECT *
      FROM jos_xgroups_pages
      WHERE gidNumber='1016'
      AND state IN (1)
      ORDER BY lft ASC
  66. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_search'
  67. SELECT m.id,m.title,m.module,m.position,m.content,m.showtitle,m.params,mm.menuid,e.protected
      FROM `jos_modules` AS `m`
      LEFT JOIN jos_modules_menu AS mm
      ON mm.moduleid = m.id
      LEFT JOIN jos_extensions AS e
      ON e.element = m.module
      AND e.client_id = m.client_id
      WHERE `m`.`published` = '1'
      AND `e`.`enabled` = '1'
      AND (`m`.`publish_up` IS NULL OR `m`.`publish_up` <= '2024-05-03 15:36:28' )
      AND (`m`.`publish_down` IS NULL OR `m`.`publish_down` >= '2024-05-03 15:36:28' )
      AND `m`.`access` IN ('1','1','4')
      AND `m`.`client_id` = '0'
      AND (`mm`.`menuid` = '81' OR `mm`.`menuid` <= '0' )
      ORDER BY `m`.`position` ASC,`m`.`ordering` ASC
  68. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_support'
  69. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_content'
  70. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_categories'
  71. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_kb'
  72. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_media'
  73. SELECT extension_id AS id,element AS "option",params,enabled
      FROM `jos_extensions`
      WHERE `type` = 'component'
      AND `element` = 'com_answers'
  74. UPDATE `jos_session`
      SET `data` = '__default|a:10:{s:15:\"session.counter\";i:1;s:19:\"session.timer.start\";i:1714750588;s:18:\"session.timer.last\";i:1714750588;s:17:\"session.timer.now\";i:1714750588;s:8:\"registry\";O:23:\"Hubzero\\Config\\Registry\":2:{s:7:\"\0*\0data\";O:8:\"stdClass\":2:{s:1:\"0\";s:7:\"session\";s:10:\"Components\";O:8:\"stdClass\":1:{s:9:\"Resources\";O:8:\"stdClass\":1:{s:6:\"Models\";O:8:\"stdClass\":1:{s:4:\"Type\";O:8:\"stdClass\":2:{s:7:\"orderby\";s:4:\"type\";s:8:\"orderdir\";s:3:\"asc\";}}}}}s:9:\"separator\";s:1:\".\";}s:4:\"user\";C:17:\"Hubzero\\User\\User\":22:{a:1:{s:5:\"guest\";b:1;}}s:11:\"tracker.sid\";s:32:\"ed241f5660d3804895bae717d8de9c33\";s:12:\"tracker.ssid\";s:32:\"ed241f5660d3804895bae717d8de9c33\";s:12:\"tracker.rsid\";s:32:\"ed241f5660d3804895bae717d8de9c33\";s:13:\"session.token\";s:32:\"6a80648a82cf99544dc985b78bd03d2c\";}',`time` = '1714750588',`ip` = '3.139.90.131'
      WHERE `session_id` = 'ed241f5660d3804895bae717d8de9c33'
  • onAfterInitialise Method plgSystemP3p::onAfterInitialise /core/plugins/system/p3p/p3p.php:45
  • onAfterInitialise Method plgSystemRemember::onAfterInitialise /core/plugins/system/remember/remember.php:44
  • onAfterInitialise Method plgSystemHubzero::onAfterInitialise /core/plugins/system/hubzero/hubzero.php:46
  • onAfterInitialise Method plgSystemXFeed::onAfterInitialise /core/plugins/system/xfeed/xfeed.php:46
  • onAfterInitialise Method plgSystemSupergroup::onAfterInitialise /core/plugins/system/supergroup/supergroup.php:138
  • onAfterInitialise Method plgSystemReferrerpolicy::onAfterInitialise /core/plugins/system/referrerpolicy/referrerpolicy.php:21
  • onAfterRoute Method plgSystemJquery::onAfterRoute /core/plugins/system/jquery/jquery.php:46
  • onAfterRoute Method plgSystemSpamjail::onAfterRoute /core/plugins/system/spamjail/spamjail.php:46
  • onAfterRoute Method plgSystemIncomplete::onAfterRoute /core/plugins/system/incomplete/incomplete.php:46
  • onAfterRoute Method plgSystemUnconfirmed::onAfterRoute /core/plugins/system/unconfirmed/unconfirmed.php:46
  • onAfterRoute Method plgSystemUnapproved::onAfterRoute /core/plugins/system/unapproved/unapproved.php:46
  • onAfterRoute Method plgSystemPassword::onAfterRoute /core/plugins/system/password/password.php:46
  • onGroupAreas Method plgGroupsMembers::onGroupAreas /core/plugins/groups/members/members.php:84
  • onGroupAreas Method plgGroupsAnnouncements::onGroupAreas /core/plugins/groups/announcements/announcements.php:79
  • onGroupAreas Method plgGroupsBlog::onGroupAreas /core/plugins/groups/blog/blog.php:80
  • onGroupAreas Method plgGroupsCalendar::onGroupAreas /core/plugins/groups/calendar/calendar.php:79
  • onGroupAreas Method plgGroupsCollections::onGroupAreas /core/plugins/groups/collections/collections.php:151
  • onGroupAreas Method plgGroupsCourses::onGroupAreas /core/plugins/groups/courses/courses.php:80
  • onGroupAreas Method plgGroupsForum::onGroupAreas /core/plugins/groups/forum/forum.php:85
  • onGroupAreas Method plgGroupsMemberOptions::onGroupAreas /core/plugins/groups/memberoptions/memberoptions.php:53
  • onGroupAreas Method plgGroupsMessages::onGroupAreas /core/plugins/groups/messages/messages.php:80
  • onGroupAreas Method plgGroupsProjects::onGroupAreas /core/plugins/groups/projects/projects.php:93
  • onGroupAreas Method plgGroupsResources::onGroupAreas /core/plugins/groups/resources/resources.php:103
  • onGroupAreas Method plgGroupsWiki::onGroupAreas /core/plugins/groups/wiki/wiki.php:80
  • onGroupAreas Method plgGroupsWishlist::onGroupAreas /core/plugins/groups/wishlist/wishlist.php:80
  • onGroupAreas Method plgGroupsFiles::onGroupAreas /core/plugins/groups/files/files.php:79
  • onGroupAreas Method plgGroupsActivity::onGroupAreas /core/plugins/groups/activity/activity.php:52
  • onGroup Method plgGroupsMembers::onGroup /core/plugins/groups/members/members.php:109
  • onGroup Method plgGroupsAnnouncements::onGroup /core/plugins/groups/announcements/announcements.php:155
  • onGroup Method plgGroupsBlog::onGroup /core/plugins/groups/blog/blog.php:105
  • onGroup Method plgGroupsCalendar::onGroup /core/plugins/groups/calendar/calendar.php:104
  • onGroup Method plgGroupsCollections::onGroup /core/plugins/groups/collections/collections.php:176
  • onGroup Method plgGroupsCourses::onGroup /core/plugins/groups/courses/courses.php:105
  • onGroup Method plgGroupsForum::onGroup /core/plugins/groups/forum/forum.php:110
  • onGroup Method plgGroupsMemberOptions::onGroup /core/plugins/groups/memberoptions/memberoptions.php:79
  • onGroup Method plgGroupsMessages::onGroup /core/plugins/groups/messages/messages.php:105
  • onGroup Method plgGroupsProjects::onGroup /core/plugins/groups/projects/projects.php:118
  • onGroup Method plgGroupsResources::onGroup /core/plugins/groups/resources/resources.php:128
  • onGroup Method plgGroupsWiki::onGroup /core/plugins/groups/wiki/wiki.php:105
  • onGroup Method plgGroupsWishlist::onGroup /core/plugins/groups/wishlist/wishlist.php:106
  • onGroup Method plgGroupsFiles::onGroup /core/plugins/groups/files/files.php:104
  • onGroup Method plgGroupsActivity::onGroup /core/plugins/groups/activity/activity.php:77
  • onBeforeGroup Method plgGroupsAnnouncements::onBeforeGroup /core/plugins/groups/announcements/announcements.php:98
  • onAfterDispatch Method plgSystemMobile::onAfterDispatch /core/plugins/system/mobile/mobile.php:47
  • onAfterDispatch Method plgSystemDebug::onAfterDispatch /core/plugins/system/debug/debug.php:85
  • onAfterDispatch Method PlgSystemHighlight::onAfterDispatch /core/plugins/system/highlight/highlight.php:49
  • onDisplay Method plgCaptchaImage::onDisplay /core/plugins/captcha/image/image.php:80
  • onAfterRender Method plgSystemSef::onAfterRender /core/plugins/system/sef/sef.php:45