../code/conceptPage.scroll id mediawiki name MediaWiki appeared 2002 tags wikiMarkup website https://en.wikipedia.org/wiki/MediaWiki#Markup spec https://www.mediawiki.org/wiki/Specs/wikitext/1.0.0 aka wikitext aka wikicode aka wiki markup description The syntax and keywords used by the MediaWiki software to format a page. lab Wikimedia Foundation, Inc isOpenSource true fileType text wordRank 9998 docs https://www.mediawiki.org/wiki/Documentation https://en.wikipedia.org/wiki/Help:Wikitext country United States reference https://www.mediawiki.org/wiki/Wikitext reference https://doc.wikimedia.org/mediawiki-core/master/php/classParser.html rijuRepl https://riju.codes/mediawiki example Hello, world! example = Heading 1 = Indentation as used on talk pages: :Each colon at the start of a line ::causes the line to be indented by three more character positions. :::(The indentation persists * Item1 * Item2 * Item3 * Item4 ** Sub-item 4 a) *** Sub-item 4 a) 1. **** Sub-item 4 a) 1. i) **** Sub-item 4 a) 1. ii) ** Sub-item 4 b) === Ordered Lists === * Item5 # Item1 # Item2 # Item3 # Item4 ## Sub-item 1 ### Sub-sub-item #### Sub-sub-sub-item ## Sub-item 2 # Item5 wikipedia https://en.wikipedia.org/wiki/MediaWiki example

A dialogue

"Take some more tea," the March Hare said to Alice, very earnestly.

"I've had nothing yet," Alice replied in an offended tone: "so I can't take more."

"You mean you can't take less," said the Hatter: "it's very easy to take more than nothing."

related php linux freebsd solaris wordpress perl mysql rails javascript html python xml json latex ocaml jquery lua mariadb postgresql sqlite summary MediaWiki is a free and open-source wiki software. Originally developed by Magnus Manske and improved by Lee Daniel Crocker, it runs on many websites, including Wikipedia, Wiktionary and Wikimedia Commons. It is written in the PHP programming language and stores the contents into a database. Like WordPress, which is based on a similar licensing and architecture, it has become the dominant software in its category. The first version of the software was deployed to serve the needs of the Wikipedia encyclopedia in 2002. Wikipedia and other Wikimedia Foundation projects continue to define a large part of the requirement set for MediaWiki. The software is optimized to efficiently handle large projects, which can have terabytes of content and hundreds of thousands of hits per second. Because Wikipedia is one of the world's largest websites, achieving scalability through multiple layers of caching and database replication has been a major concern for developers. The software has more than 900 configuration settings and more than 1,900 extensions available for enabling various features to be added or changed. On Wikipedia alone, more than 1000 automated and semi-automated bots and other tools have been developed to assist in editing. It has also been deployed by some companies as an internal knowledge management system, and some educators have assigned students to use MediaWiki for collaborative group projects. created 2003 backlinksCount 6149 pageId 323710 revisionCount 2948 dailyPageViews 610 appeared 2002 linguistGrammarRepo https://github.com/textmate/mediawiki.tmbundle firstCommit 2006 lastCommit 2018 committerCount 8 commitCount 70 sampleCount 2 example = Overview = The GDB Tracepoint Analysis feature is an extension to the Tracing and Monitoring Framework that allows the visualization and analysis of C/C++ tracepoint data collected by GDB and stored to a log file. = Getting Started = The feature can be installed from the Eclipse update site by selecting '''Linux Tools''' > '''GDB Tracepoint Analysis'''. The feature requires GDB version 7.2 or later to be installed on the local host. The executable program 'gdb' must be found in the path. = GDB Trace Perspective = To open the perspective, select '''Window''' > '''Open Perspective''' > '''Other...''' > '''GDB Trace'''. The perspective includes the following views by default: * '''Project Explorer''': This view shows the projects in the workspace and is used to create and manage Tracing projects. * '''Debug''': This view shows the running C/C++ Postmortem Debugger instances and displays the thread and stack trace associated with a tracepoint. * '''Trace Control''': This view shows the status of the debugger and allows navigation of trace records. * '''Console''': This view displays console output of the C/C++ Postmortem Debugger. The editor area contains the '''Events''' and '''C/C++''' editors when a GDB Trace is opened. [[Image:images/GDBTracePerspective.png]] = Collecting Tracepoint Data = Collecting the C/C++ tracepoint data is outside the scope of this feature. It can be done from the GDB command line or by using the CDT debug component within Eclipse. See the CDT FAQ entry in the [[#References | References]] section. = Importing Tracepoint Data = Some information in this section is redundant with the LTTng User Guide. For further details, see the LTTng User Guide entry in the [[#References | References]] section. == Creating a Tracing Project == In the '''Project Explorer''' view, right-click and select '''New''' > '''Project...''' from the context menu. In the '''New Project''' dialog, select '''Tracing''' > '''Tracing Project''', click '''Next''', name your project and click '''Finish'''. == Importing a GDB Trace == In your tracing project, right-click on the '''Traces''' folder and select '''Import...'''. Browse to, or enter, a source directory. Select the trace file in the tree. Optionally set the trace type to '''GDB : GDB Trace'''. Click '''Finish'''. Alternatively, the trace can be drag & dropped to the '''Traces''' folder from any external file manager. == Selecting the GDB Trace Type == Right-click the imported trace in the '''Traces''' folder and choose '''Select Trace Type...''' > '''GDB''' > '''GDB Trace''' from the context menu. This step can be omitted if the trace type was selected at import. The trace will be updated with the GDB icon [[Image:images/gdb_icon16.png]]. == Selecting the Trace Executable == The executable file that created the tracepoint data must be identified so that the C/C++ Postmortem Debugger can be launched properly. Right-click the GDB trace in the '''Traces''' folder and choose '''Select Trace Executable...''' from the context menu. Browse to, or enter, the path of the executable file and press '''OK'''. The selected file must be recognized by GDB as an executable. = Visualizing Tracepoint Data = == Opening a GDB Trace == In the '''Traces''' folder, double-click the GDB trace or right-click it and select '''Open''' from the context menu. The tracepoint data will be opened in an Events editor, and a C/C++ Postmortem Debugger instance will be launched. If available in the workspace, the source code corresponding to the first trace record will also be opened in a C/C++ editor. At this point it is recommended to relocate the Events editor outside of the default editor area, so that it is not hidden by the C/C++ editor. == Viewing Trace Data == In the Events editor, a table is shown with one row for each trace record. The '''Trace Frame''' column shows the sequential trace record number. The '''Tracepoint''' column shows the number assigned by GDB at collection time for this tracepoint. The '''File''' column shows the file name, line number and method where the tracepoint was set. The '''Content''' column shows the data collected at run-time by the tracepoint. Searching and filtering can be done on any column by entering a regular expression in the column header. == Navigating the GDB Trace == Trace records can be selected in the Events editor using the keyboard or mouse. The C/C++ Postmortem Debugger in the '''Debug''' view will be updated to show the stack trace of the current trace record. The trace can also be navigated from the '''Trace Control''' view by clicking the '''Next Trace Record''' or '''Previous Trace Record''' buttons. The Events editor and '''Debug''' views will be updated. = References = * [http://wiki.eclipse.org/index.php/Linux_Tools_Project/LTTng2/User_Guide LTTng User Guide] * [http://wiki.eclipse.org/CDT/User/FAQ#How_can_I_trace_my_application_using_C.2FC.2B.2B_Tracepoints.3F CDT FAQ - How can I trace my application using C/C++ Tracepoints?] = Updating This Document = This document is maintained in a collaborative wiki. If you wish to update or modify this document please visit [http://wiki.eclipse.org/index.php/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide http://wiki.eclipse.org/Linux_Tools_Project/GDB_Tracepoint_Analysis/User_Guide] isbndb 2 year|publisher|title|authors|isbn13 20081014|O'Reilly Media, Inc.|MediaWiki|Daniel J. Barrett|9780596554149 20081014|O'Reilly Media, Inc.|MediaWiki|Daniel J. Barrett|9780596156541 githubLanguage MediaWiki fileExtensions mediawiki wiki trendingProjectsCount 0 repos 10 indeedJobs mediawiki developer 2022 30 linkedInSkill mediawiki 2018 3862 semanticScholar 0