<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Peso</id>
	<title>Code::Blocks - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://wiki.codeblocks.org/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Peso"/>
	<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php/Special:Contributions/Peso"/>
	<updated>2026-05-06T21:41:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.0</generator>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Developer_documentation&amp;diff=3653</id>
		<title>Developer documentation</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Developer_documentation&amp;diff=3653"/>
		<updated>2006-07-18T10:13:09Z</updated>

		<summary type="html">&lt;p&gt;Peso: Add link to Launchpad&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Code::Blocks Documentation]]&lt;br /&gt;
[[Category:Developer Documentation]]&lt;br /&gt;
Articles for Code::Blocks developers.&lt;br /&gt;
&lt;br /&gt;
* '''[https://launchpad.net/products/codeblocks/ Translation]'''&lt;br /&gt;
:Code::Blocks uses Launchpad to coordinate translation efforts.&lt;br /&gt;
&lt;br /&gt;
* '''[[Coding style to use]]'''&lt;br /&gt;
:The source code formatting style used in the Code::Blocks' source.&lt;br /&gt;
&lt;br /&gt;
* '''[[Creating a custom lexer for Code::Blocks editor]]'''&lt;br /&gt;
:How to add support for new syntax lighting schemes.&lt;br /&gt;
&lt;br /&gt;
* '''[[Creating a patch to submit to BerliOS (Patch Tracker)]]'''&lt;br /&gt;
:Creating a diff file and then submitting it to the patch tracker.&lt;br /&gt;
&lt;br /&gt;
* '''[[Unicode Standards]]'''&lt;br /&gt;
:Information about unicode standards and how unicode is handled in Code::Blocks' source code.&lt;br /&gt;
&lt;br /&gt;
* '''[[Various development tips]]'''&lt;br /&gt;
:List of various development tips for Code::Blocks.&lt;br /&gt;
&lt;br /&gt;
== Plugin development ==&lt;br /&gt;
&lt;br /&gt;
* [[Creating a simple &amp;quot;Hello World&amp;quot; plugin]]&lt;br /&gt;
* [[Creating a Plug-in which modifies CB's Menus]]&lt;br /&gt;
&lt;br /&gt;
* [[Research on doing a Plug-in for embedded help in CB]]&lt;br /&gt;
&lt;br /&gt;
== Scripting ==&lt;br /&gt;
&lt;br /&gt;
Using scripting to extend Code::Blocks' functionality&lt;br /&gt;
&lt;br /&gt;
* [[Wizard scripts|Creating a new project wizard]]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Internationalization&amp;diff=3652</id>
		<title>Internationalization</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Internationalization&amp;diff=3652"/>
		<updated>2006-07-18T10:09:16Z</updated>

		<summary type="html">&lt;p&gt;Peso: Categorize as developer documentation&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Code::Blocks Documentation]]&lt;br /&gt;
[[Category:Developer Documentation]]&lt;br /&gt;
&lt;br /&gt;
This article is about how to realize and use localized C:B. All the works have been done under Windows XP SP2.&lt;br /&gt;
&lt;br /&gt;
== Get the English POT file ==&lt;br /&gt;
&lt;br /&gt;
The english POT file url is:&lt;br /&gt;
&lt;br /&gt;
https://developer.berlios.de/patch/?func=detailpatch&amp;amp;patch_id=822&amp;amp;group_id=5358&lt;br /&gt;
 &lt;br /&gt;
I will update this file periodically. Of course, you can use the tool which I have created (see belown) to generate the POT file.&lt;br /&gt;
&lt;br /&gt;
The content of the tool which is named as '''intl.bat''' is below:&lt;br /&gt;
&lt;br /&gt;
 rem ======= Begin of intl.bat =======&lt;br /&gt;
 &lt;br /&gt;
 @echo off&lt;br /&gt;
 wxrc src\resources\*.xrc -g -o  src\src-xrc.cpp&lt;br /&gt;
 wxrc sdk\resources\*.xrc -g -o  sdk\sdk-xrc.cpp&lt;br /&gt;
 wxrc plugins\astyle\resources\*.xrc -g -o  plugins\astyle\astyle-xrc.cpp&lt;br /&gt;
 wxrc plugins\classwizard\resources\*.xrc -g -o  plugins\classwizard\classwizard-xrc.cpp&lt;br /&gt;
 wxrc plugins\codecompletion\resources\*.xrc -g -o  plugins\codecompletion\codecompletion-xrc.cpp&lt;br /&gt;
 wxrc plugins\compilergcc\resources\*.xrc -g -o  plugins\compilergcc\compilergcc-xrc.cpp&lt;br /&gt;
 wxrc plugins\debuggergdb\resources\*.xrc -g -o  plugins\debuggergdb\debuggergdb-xrc.cpp&lt;br /&gt;
 wxrc plugins\defaultmimehandler\resources\*.xrc -g -o  plugins\defaultmimehandler\defaultmimehandler-xrc.cpp&lt;br /&gt;
 wxrc plugins\pluginwizard\resources\*.xrc -g -o  plugins\pluginwizard\pluginwizard-xrc.cpp&lt;br /&gt;
 wxrc plugins\todo\resources\*.xrc -g -o  plugins\todo\todo-xrc.cpp &lt;br /&gt;
 &lt;br /&gt;
 if not exist po md po&lt;br /&gt;
 &lt;br /&gt;
 xgettext -C -n -k_ -o po\codeblocks.pot src\*.cpp src\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot src\wxAUI\*.cpp src\wxAUI\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\*.cpp sdk\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\as\bindings\*.cpp sdk\as\bindings\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\propgrid\src\propgrid\*.cpp sdk\propgrid\include\wx\propgrid\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\wxFlatNotebook\*.cpp&lt;br /&gt;
 rem xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\as\include\*.h&lt;br /&gt;
 rem xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\as\source\*.cpp sdk\as\source\*.h&lt;br /&gt;
 rem xgettext -C -n -k_ -j -o po\codeblocks.pot sdk\wxscintilla\*.cpp sdk\wxscintilla\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\codecompletion\*.cpp plugins\codecompletion\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\codecompletion\parser\*.cpp plugins\codecompletion\parser\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\astyle\*.cpp plugins\astyle\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\astyle\astyle\*.cpp plugins\astyle\astyle\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\classwizard\*.cpp plugins\classwizard\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\codecompletion\*.cpp plugins\codecompletion\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\compilergcc\*.cpp plugins\compilergcc\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\debuggergdb\*.cpp plugins\debuggergdb\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\defaultmimehandler\*.cpp plugins\defaultmimehandler\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\pluginwizard\*.cpp plugins\pluginwizard\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\todo\*.cpp plugins\todo\*.h&lt;br /&gt;
 xgettext -C -n -k_ -j -o po\codeblocks.pot plugins\xpmanifest\*.cpp plugins\xpmanifest\*.h&lt;br /&gt;
 pause&lt;br /&gt;
 &lt;br /&gt;
 rem ======= End of intl.bat =======&lt;br /&gt;
&lt;br /&gt;
== The translation tool ==&lt;br /&gt;
&lt;br /&gt;
Usually, we use the poEdit tool which can be downloaded [http://www.poedit.org/download.php here].&lt;br /&gt;
&lt;br /&gt;
== Translating in poEdit ==&lt;br /&gt;
&lt;br /&gt;
Rename codeblocks.pot into codeblocks.po. Use poEdit to open the file codeblocks.po. Change a few settings like:&lt;br /&gt;
&lt;br /&gt;
[File]-&amp;gt;[Preferences]-&amp;gt;[Personalize]&lt;br /&gt;
&lt;br /&gt;
[Catalog]-&amp;gt;[Settings]-&amp;gt;[Project info]-&amp;gt;[Team/email/Language/Charset]&lt;br /&gt;
&lt;br /&gt;
If Code::Blocks is compiled with Unicode, the charset should be set to utf-8; If Code::Blocks is compiled with ANSI, the charset should be set to your own language charset like gb2312, koi8-r etc.&lt;br /&gt;
&lt;br /&gt;
After these settings are done, you can start translating. Don't be fooled, it's a hard work! During the process, of course, you can use your translation at any time. &lt;br /&gt;
&lt;br /&gt;
== Create and use the .mo file ==&lt;br /&gt;
&lt;br /&gt;
Pressing Ctrl+S in poEdit, you can get a *.mo file like codeblocks.mo which is what we need. To use codeblocks.mo, we just place it into C:\Program Files\CodeBlocks or C:\Program Files\CodeBlocks\share\CodeBlocks\locale\&amp;lt;lang&amp;gt;\LC_MESSAGES or C:\Program Files\CodeBlocks\share\CodeBlocks\locale\&amp;lt;lang&amp;gt;. My language is Chinese and I have installed C::B into E:\, so I place codeblocks.mo into E:\Program Files\CodeBlocks\share\CodeBlocks\locale\zh_CN.&lt;br /&gt;
&lt;br /&gt;
If you want to use codeblocks.mo under Linux or Unix, you just place it into /usr/X11R6/share/locale/&amp;lt;lang&amp;gt;/LC_MESSAGES/. For example, I put it into /usr/X11R6/share/locale/zh_CN/LC_MESSAGES/ under FreeBSD.&lt;br /&gt;
&lt;br /&gt;
Details about internationalization using wxWidgets can be found in the wxWidgets docs.&lt;br /&gt;
&lt;br /&gt;
== Let Code::Blocks support your language ==&lt;br /&gt;
&lt;br /&gt;
If you want Code::Blocks to support your language, you must modify the file \codeblocks\src\src\appglobals.cpp. In it, you can search for the word 'Chinese' to see the example. There are two vars about it:&lt;br /&gt;
&lt;br /&gt;
    const wxString langs[LANGUAGES_SIZE]&lt;br /&gt;
    const int locales[LANGUAGES_SIZE]&lt;br /&gt;
&lt;br /&gt;
== Troubleshooting ==&lt;br /&gt;
&lt;br /&gt;
If you have any questions, you can send me a mail: zxpmyth at yahoo.com.cn.&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Internationalization&amp;diff=3633</id>
		<title>Talk:Internationalization</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Internationalization&amp;diff=3633"/>
		<updated>2006-07-13T13:23:30Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[/index.php?topic=1022 This fairly long thread on the forum] has lots of people that wants to do translation. As the number of translators increase so do the need for coordination.&lt;br /&gt;
&lt;br /&gt;
I would like to propose that CodeBlocks is registered with https://launchpad.net/ to centralise the translation.&lt;br /&gt;
&lt;br /&gt;
If it is registered, this page should contain a link to the relevant page.&lt;br /&gt;
&lt;br /&gt;
[[User:Peso]] 13-JUL-2006&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Internationalization&amp;diff=3632</id>
		<title>Talk:Internationalization</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Internationalization&amp;diff=3632"/>
		<updated>2006-07-13T13:21:23Z</updated>

		<summary type="html">&lt;p&gt;Peso: Suggest registration with launchpad.net&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[/index.php?topic=1022 This fairly long thread on the forum] has lots of people that wants to do translation. As the number of translators increase so do the need for coordination.&lt;br /&gt;
&lt;br /&gt;
I would like to propose that CodeBlocks is registered with https://launchpad.net/ to centralise the translation.&lt;br /&gt;
&lt;br /&gt;
[[User:Peso]]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=User:Peso&amp;diff=3630</id>
		<title>User:Peso</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=User:Peso&amp;diff=3630"/>
		<updated>2006-07-13T13:19:54Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi.&lt;br /&gt;
&lt;br /&gt;
I'm using CodeBlocks in my spare time to write an Abalone playing program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Tools used:&lt;br /&gt;
* Windows, and some [http://www.colinux.org/ coLinux]&lt;br /&gt;
* [http://www.scintilla.org/ Scintilla] (I wish PFE still lived) / [http://www.gnu.org/software/emacs/ Emacs] (I wish I had learned VI first)&lt;br /&gt;
* C++ through [http://gcc.gnu.org/ GCC]. Actually [http://www.mingw.org/ MinGW] most of the time.&lt;br /&gt;
* [http://www.wxwidgets.org/ wxWidgets]&lt;br /&gt;
* [http://www.wxwidgets.org/wiki/index.php/WxIFM wxIFM]&lt;br /&gt;
* [http://www.gimp.org/windows/ GIMP]&lt;br /&gt;
* [http://www.gnu.org/software/autoconf/ Autoconf]&lt;br /&gt;
* [http://www.jrsoftware.org/isinfo.php Inno Setup]&lt;br /&gt;
* [http://groups.yahoo.com/group/abalone_prog/ abalone_prog] and [http://148009.aceboard.net/ Abalone Theory Forum]&lt;br /&gt;
* CodeBlocks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Peer Sommerlund&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=User:Peso&amp;diff=3629</id>
		<title>User:Peso</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=User:Peso&amp;diff=3629"/>
		<updated>2006-07-13T13:18:04Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Hi.&lt;br /&gt;
&lt;br /&gt;
I'm using CodeBlocks in my spare time to write an Abalone playing program.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Tools used:&lt;br /&gt;
* Windows, and some [http://www.colinux.org/ coLinux]&lt;br /&gt;
* [http://www.scintilla.org/ Scintilla] (I wish PFE still lived) / [http://www.gnu.org/software/emacs/ Emacs] (I wish I had learned VI first)&lt;br /&gt;
* [http://gcc.gnu.org/ GCC], mostly [http://www.mingw.org/ MinGW]&lt;br /&gt;
* [http://www.wxwidgets.org/ wxWidgets]&lt;br /&gt;
* [http://www.wxwidgets.org/wiki/index.php/WxIFM wxIFM]&lt;br /&gt;
* [http://www.gimp.org/windows/ GIMP]&lt;br /&gt;
* [http://www.gnu.org/software/autoconf/ Autoconf]&lt;br /&gt;
* [http://www.jrsoftware.org/isinfo.php Inno Setup]&lt;br /&gt;
* [http://groups.yahoo.com/group/abalone_prog/ abalone_prog] and [http://148009.aceboard.net/ Abalone Theory Forum]&lt;br /&gt;
* CodeBlocks&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Regards,&lt;br /&gt;
Peer Sommerlund&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;diff=2945</id>
		<title>Template:Community:ImprovableArticles</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;diff=2945"/>
		<updated>2006-05-23T07:46:53Z</updated>

		<summary type="html">&lt;p&gt;Peso: Add link to Building_From_Source&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Debugger scripts]] could use a brief step-by-step instruction so you don't have to read and understand the forum links.&lt;br /&gt;
*[[Building_From_Source]] could perhaps be better organized, see [[Talk:Building_From_Source]].&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;[https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;amp;action=edit Edit]&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2944</id>
		<title>Talk:Installing Code::Blocks</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2944"/>
		<updated>2006-05-23T07:43:40Z</updated>

		<summary type="html">&lt;p&gt;Peso: Fix link to category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are several pages that give instructions on how to build codeblocks. I think this page should really be just a collection of links to all the specialised pages. Any opinions?&lt;br /&gt;
&lt;br /&gt;
The build instructions can be found at [[:Category:Installation\Build_Instructions]]. &lt;br /&gt;
&lt;br /&gt;
A list of all pages (if some are not categorized properly) [[Special:Allpages]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here are a list of those that still live&lt;br /&gt;
&lt;br /&gt;
Unix specific&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Linux_(applies_to_all_distros)]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_RPM_based_distributions]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Gentoo]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_FreeBSD]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Mac_OS_X]]&lt;br /&gt;
Windows specific&lt;br /&gt;
* [[Compiling_wxWidgets_2.4.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.1_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Setting_the_WX_VER_variable]]&lt;br /&gt;
&lt;br /&gt;
Some relevant info can be found&lt;br /&gt;
* [[Nightly_Cookbook]] --- zip is needed (this info is missing from the current page)&lt;br /&gt;
&lt;br /&gt;
Peer Sommerlund, 2006-may-23&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2943</id>
		<title>Using STLFilt with MinGW</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2943"/>
		<updated>2006-05-23T07:40:31Z</updated>

		<summary type="html">&lt;p&gt;Peso: /* Links */  Instructions on how to link to a category&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''Sandbox''' where you can edit until your heart's content. Check out the 'edit' link at the top of this page to play around in here.&lt;br /&gt;
&lt;br /&gt;
== Italic Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the ''italic text''.&lt;br /&gt;
&lt;br /&gt;
== Bold Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the '''bold text'''.&lt;br /&gt;
&lt;br /&gt;
== Lists ==&lt;br /&gt;
&lt;br /&gt;
*Lists are easy.&lt;br /&gt;
**Really easy.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
&lt;br /&gt;
Some images....&lt;br /&gt;
&lt;br /&gt;
[[Image:Chk.png]]&lt;br /&gt;
[[Image:Nop.png]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
Links to other pages, external sites. etc&lt;br /&gt;
&lt;br /&gt;
Link to page in this wiki&lt;br /&gt;
[[Sandbox]]&lt;br /&gt;
&lt;br /&gt;
Link with no title&lt;br /&gt;
[http://www.google.com]&lt;br /&gt;
&lt;br /&gt;
Link with title&lt;br /&gt;
[http://www.google.com The Google Search engine]&lt;br /&gt;
&lt;br /&gt;
Link to category (note the initial colon)&lt;br /&gt;
[[:Category:Installation\Build Instructions]]&lt;br /&gt;
&lt;br /&gt;
To categorize a page, remove the initial colon like this: &amp;lt;nowiki&amp;gt;[[Category:Installation\Build_Instructions]]&amp;lt;/nowiki&amp;gt;&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2942</id>
		<title>Using STLFilt with MinGW</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2942"/>
		<updated>2006-05-23T07:35:00Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''Sandbox''' where you can edit until your heart's content. Check out the 'edit' link at the top of this page to play around in here.&lt;br /&gt;
&lt;br /&gt;
== Italic Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the ''italic text''.&lt;br /&gt;
&lt;br /&gt;
== Bold Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the '''bold text'''.&lt;br /&gt;
&lt;br /&gt;
== Lists ==&lt;br /&gt;
&lt;br /&gt;
*Lists are easy.&lt;br /&gt;
**Really easy.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
&lt;br /&gt;
Some images....&lt;br /&gt;
&lt;br /&gt;
[[Image:Chk.png]]&lt;br /&gt;
[[Image:Nop.png]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
Links to other pages, external sites. etc&lt;br /&gt;
&lt;br /&gt;
Link to page in this wiki&lt;br /&gt;
[[Sandbox]]&lt;br /&gt;
&lt;br /&gt;
Link with no title&lt;br /&gt;
[http://www.google.com]&lt;br /&gt;
&lt;br /&gt;
Link with title&lt;br /&gt;
[http://www.google.com The Google Search engine]&lt;br /&gt;
&lt;br /&gt;
Link to category&lt;br /&gt;
[[Category:Installation\Build_Instructions]] -- this doesn't work. How do you do this properly??&lt;br /&gt;
Like this: [[:Category:Installation\Build Instructions]]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2940</id>
		<title>Talk:Installing Code::Blocks</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2940"/>
		<updated>2006-05-23T06:06:34Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are several pages that give instructions on how to build codeblocks. I think this page should really be just a collection of links to all the specialised pages. Any opinions?&lt;br /&gt;
&lt;br /&gt;
The build instructions can be found at Category:[[Installation/Build_Instructions]]. (I'm not enough familiar with MediaWiki to be able to link properly to this page) &lt;br /&gt;
&lt;br /&gt;
A list of all pages (if some are not categories properly) [[Special:Allpages]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Here are a list of those that still live&lt;br /&gt;
&lt;br /&gt;
Unix specific&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Linux_(applies_to_all_distros)]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_RPM_based_distributions]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Gentoo]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_FreeBSD]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Mac_OS_X]]&lt;br /&gt;
Windows specific&lt;br /&gt;
* [[Compiling_wxWidgets_2.4.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.1_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Setting_the_WX_VER_variable]]&lt;br /&gt;
&lt;br /&gt;
Some relevant info can be found&lt;br /&gt;
* [[Nightly_Cookbook]] --- zip is needed (this info is missing from the current page)&lt;br /&gt;
&lt;br /&gt;
Peer Sommerlund, 2006-may-23&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2939</id>
		<title>Using STLFilt with MinGW</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2939"/>
		<updated>2006-05-23T06:06:12Z</updated>

		<summary type="html">&lt;p&gt;Peso: How do you link to a category?&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''Sandbox''' where you can edit until your heart's content. Check out the 'edit' link at the top of this page to play around in here.&lt;br /&gt;
&lt;br /&gt;
== Italic Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the ''italic text''.&lt;br /&gt;
&lt;br /&gt;
== Bold Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the '''bold text'''.&lt;br /&gt;
&lt;br /&gt;
== Lists ==&lt;br /&gt;
&lt;br /&gt;
*Lists are easy.&lt;br /&gt;
**Really easy.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
&lt;br /&gt;
Some images....&lt;br /&gt;
&lt;br /&gt;
[[Image:Chk.png]]&lt;br /&gt;
[[Image:Nop.png]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
Links to other pages, external sites. etc&lt;br /&gt;
&lt;br /&gt;
Link to page in this wiki&lt;br /&gt;
[[Sandbox]]&lt;br /&gt;
&lt;br /&gt;
Link with no title&lt;br /&gt;
[http://www.google.com]&lt;br /&gt;
&lt;br /&gt;
Link with title&lt;br /&gt;
[http://www.google.com The Google Search engine]&lt;br /&gt;
&lt;br /&gt;
Link to category&lt;br /&gt;
[[Category:Installation/Build_Instructions]] -- this doesn't work. How do you do this properly??&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2938</id>
		<title>Talk:Installing Code::Blocks</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Installing_Code::Blocks&amp;diff=2938"/>
		<updated>2006-05-23T05:51:25Z</updated>

		<summary type="html">&lt;p&gt;Peso: Suggestion for new structure&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;There are several pages that give instructions on how to build codeblocks. I think this page should really be just a collection of links to all the specialised pages. Any opinions?&lt;br /&gt;
&lt;br /&gt;
The build instructions can be found at [[Special:Allpages]]&lt;br /&gt;
Here are a list of those that still live&lt;br /&gt;
&lt;br /&gt;
Unix specific&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Linux_(applies_to_all_distros)]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_RPM_based_distributions]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Gentoo]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_FreeBSD]]&lt;br /&gt;
* [[Compiling_Code::Blocks_in_Mac_OS_X]]&lt;br /&gt;
Windows specific&lt;br /&gt;
* [[Compiling_wxWidgets_2.4.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.1_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Compiling_wxWidgets_2.6.2_to_develop_Code::Blocks_(MSW)]]&lt;br /&gt;
* [[Setting_the_WX_VER_variable]]&lt;br /&gt;
&lt;br /&gt;
Peer Sommerlund, 2006-may-23&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;diff=2835</id>
		<title>Template:Community:ImprovableArticles</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;diff=2835"/>
		<updated>2006-04-18T06:41:04Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;*[[Debugger scripts]] could use a brief step-by-step instruction so you don't have to read and understand the forum links.&lt;br /&gt;
&amp;lt;div align=&amp;quot;right&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;small&amp;gt;[https://wiki.codeblocks.org/index.php?title=Template:Community:ImprovableArticles&amp;amp;action=edit Edit]&amp;lt;/small&amp;gt;&lt;br /&gt;
&amp;lt;/div&amp;gt;&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Roadmap_for_version_1.0&amp;diff=2833</id>
		<title>Roadmap for version 1.0</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Roadmap_for_version_1.0&amp;diff=2833"/>
		<updated>2006-04-18T06:22:51Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Code::Blocks Documentation]]&lt;br /&gt;
==Version 1.0 (Pheidippides)==&lt;br /&gt;
''12 August 2006''&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Version 1.0 RC final (Athenades)==&lt;br /&gt;
''1 July 2006''&lt;br /&gt;
*No feature additions.&lt;br /&gt;
*Regression and bug handling only.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Version 1.0 RC 3 (Ephialtes)==&lt;br /&gt;
''30 April 2006''&lt;br /&gt;
*[[Image:Chk.png]]Unicode support&lt;br /&gt;
**[[Image:Chk.png]]User interface&lt;br /&gt;
**[[Image:Chk.png]]Configuration system&lt;br /&gt;
**[[Image:Chk.png]]Editor component&lt;br /&gt;
**[[Image:Nop.png]]No fully automatic detection of document encoding&lt;br /&gt;
*[[Image:Blk.png]]Scripting support (Angelscript)&lt;br /&gt;
**[[Image:Chk.png]]Watch scripts (see [[Debugger scripts]])&lt;br /&gt;
**[[Image:Chk.png]]Build target scripts&lt;br /&gt;
**[[Image:Blk.png]]64bit support&lt;br /&gt;
*[[Image:Blk.png]]Global user variables&lt;br /&gt;
**[[Image:Chk.png]]Profile-dependent GUVs&lt;br /&gt;
**[[Image:Blk.png]]Multiple variable sets&lt;br /&gt;
**[[Image:Blk.png]]Custom variable definition&lt;br /&gt;
*[[Image:Chk.png]]wxFlatNoteBook editors&lt;br /&gt;
*[[Image:Chk.png]]wxAUI docking library&lt;br /&gt;
*[[Image:Chk.png]]Context-sensitive layout switching&lt;br /&gt;
*[[Image:Chk.png]]XML-based configuration system&lt;br /&gt;
*[[Image:Blk.png]]XML-based compiler framework&lt;br /&gt;
*[[Image:Blk.png]]Property-based build system&lt;br /&gt;
*[[Image:Chk.png]]Improved configuration user interface&lt;br /&gt;
*[[Image:Blk.png]]Automatic updates&lt;br /&gt;
*[[Image:Blk.png]]Usability and stability fixes for code completion plugin &lt;br /&gt;
*[[Image:Blk.png]]Regression and bug handling.&lt;br /&gt;
&lt;br /&gt;
==Version 1.0 RC 2 (Leonidas)==&lt;br /&gt;
''25 October 2005''&lt;br /&gt;
*Precompiled headers (PCH) support! (currently works only with GCC) &lt;br /&gt;
*The source is now fully UNICODE-compatible! &lt;br /&gt;
*The source is also fully 64-bit compatible! &lt;br /&gt;
*Autoconf/automake build system is now used for non-windows platforms&lt;br /&gt;
* New editor functionality&lt;br /&gt;
**Find declaration&lt;br /&gt;
**Open #include&lt;br /&gt;
*Project wizard plugins&lt;br /&gt;
*Support for SDCC&lt;br /&gt;
*Better handling of modified files outside the IDE&lt;br /&gt;
*Single file compilation&lt;br /&gt;
*Find-in-Files for arbitrary paths/filemasks&lt;br /&gt;
*All internal file formats are well-formed, valid XML&lt;br /&gt;
*New plugins:&lt;br /&gt;
**Code statistics: counts nr. of source lines, nr. of comment lines, etc. &lt;br /&gt;
**CBProfiler: parses and displays the output of GProf, the GNU Profiler&lt;br /&gt;
**SourceExporter: exports the active file to HTML/RTF/ODT&lt;br /&gt;
*New lexers: &lt;br /&gt;
**Fortran77 &lt;br /&gt;
**NVidia CG&lt;br /&gt;
**X-Base languages (Clipper, Foxpro) &lt;br /&gt;
*New and improved project templates: &lt;br /&gt;
**SDCC program &lt;br /&gt;
**Irrlicht 3D Graphics Engine &lt;br /&gt;
**Ogre 3D Graphics Engine &lt;br /&gt;
**GLFW project (OpenGL FrameWork) &lt;br /&gt;
**wxWidgets: static/dynamic unicode/ansi versions. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Version 1.0 RC 1-1 (Oedipus)==&lt;br /&gt;
''2 August 2005''&lt;br /&gt;
*Several critical bug fixes&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Version 1.0 RC 1 (Laius)==&lt;br /&gt;
''25 July 2005''&lt;br /&gt;
*Compiler support for OpenWatcom &lt;br /&gt;
*Per-target environment variables&lt;br /&gt;
*Convenient &amp;quot;Start here&amp;quot; page&lt;br /&gt;
*Improved gcc error parsing&lt;br /&gt;
*Find in files functionality&lt;br /&gt;
*Ability to add files to project recursively. &lt;br /&gt;
*External dependency handling&lt;br /&gt;
*Better import of foreign project files&lt;br /&gt;
*Many GDB debugger updates&lt;br /&gt;
*Numerous user interface improvements&lt;br /&gt;
*New project templates&lt;br /&gt;
**QT4. &lt;br /&gt;
**Ogre3D. &lt;br /&gt;
* Modular Syntax highlighting&lt;br /&gt;
* Syntax highlighting support for:&lt;br /&gt;
**C/C++ &lt;br /&gt;
**Windows resources &lt;br /&gt;
**HTML/XML/XSL&lt;br /&gt;
**Lua scripts &lt;br /&gt;
**GameMonkey scripts &lt;br /&gt;
**Hitach H8 ASM&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2832</id>
		<title>Using STLFilt with MinGW</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Using_STLFilt_with_MinGW&amp;diff=2832"/>
		<updated>2006-04-18T06:18:32Z</updated>

		<summary type="html">&lt;p&gt;Peso: /* Images */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Welcome to the '''Sandbox''' where you can edit until your heart's content. Check out the 'edit' link at the top of this page to play around in here.&lt;br /&gt;
&lt;br /&gt;
== Italic Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the ''italic text''.&lt;br /&gt;
&lt;br /&gt;
== Bold Text ==&lt;br /&gt;
&lt;br /&gt;
Look at the '''bold text'''.&lt;br /&gt;
&lt;br /&gt;
== Lists ==&lt;br /&gt;
&lt;br /&gt;
*Lists are easy.&lt;br /&gt;
**Really easy.&lt;br /&gt;
&lt;br /&gt;
== Images ==&lt;br /&gt;
&lt;br /&gt;
Some images....&lt;br /&gt;
&lt;br /&gt;
[[Image:Chk.png]]&lt;br /&gt;
[[Image:Nop.png]]&lt;br /&gt;
&lt;br /&gt;
== Links ==&lt;br /&gt;
&lt;br /&gt;
Links to other pages, external sites. etc&lt;br /&gt;
&lt;br /&gt;
Link to page in this wiki&lt;br /&gt;
[[Sandbox]]&lt;br /&gt;
&lt;br /&gt;
Link with no title&lt;br /&gt;
[http://www.google.com]&lt;br /&gt;
&lt;br /&gt;
Link with title&lt;br /&gt;
[http://www.google.com The Google Search engine]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Help:Editing&amp;diff=2587</id>
		<title>Help:Editing</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Help:Editing&amp;diff=2587"/>
		<updated>2006-04-01T15:28:31Z</updated>

		<summary type="html">&lt;p&gt;Peso: /* The wiki markup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General ==&lt;br /&gt;
&lt;br /&gt;
To edit a MediaWiki page, click on the '''&amp;quot;Edit this page&amp;quot;''' (or just '''&amp;quot;edit&amp;quot;''') link at one of its edges. This will bring you to a page with a text box containing the wikitext: the editable source code from which the server produces the webpage. For the special codes, see below.&lt;br /&gt;
&lt;br /&gt;
After adding to or changing the wikitext it is useful to press &amp;quot;Preview&amp;quot;, which produces the corresponding webpage in your browser but does not make it publicly available yet (not until you press &amp;quot;Save&amp;quot;). Errors in formatting, links, tables, etc., are often much easier to discover from the rendered page than from the raw wikitext.&lt;br /&gt;
&lt;br /&gt;
If you are not satisfied you can make more changes and preview the page as many times as necessary. Then write a short edit summary in the small text field below the edit-box and when finished press &amp;quot;Save&amp;quot;. Depending on your system, pressing the &amp;quot;Enter&amp;quot; key while the edit box is not active (i.e., there is no typing cursor in it) may have the same effect as pressing &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You may find it more convenient to copy and paste the text first into your favorite text editor, edit and spell check it there, and then paste it back into your web browser to preview. This way, you can also keep a local backup copy of the pages you have edited. It also allows you to make changes offline, but before you submit your changes, please make sure nobody else has edited the page since you saved your local copy (by checking the page history), otherwise you may accidently revert someone else's edits. If someone has edited it since you copied the page, you'll have to merge their edits into your new version (you can find their specific edits by using the &amp;quot;diff&amp;quot; feature of the page history). These issues are handled automatically by the Mediawiki software if you edit the page online, retrieving and submitting the wikicode in the same text box. &lt;br /&gt;
&lt;br /&gt;
== Dummy edit ==&lt;br /&gt;
&lt;br /&gt;
If the wikitext is not changed no edit will be recorded and the edit summary is discarded.&lt;br /&gt;
&lt;br /&gt;
A dummy edit is a change in wikitext that has no effect on the rendered page, such as changing the number of newlines at some position from 0 to 1 or from 2 to 3 or conversely (changing from 1 to 2 makes a difference, see below). This allows an edit summary, and is useful for correcting a previous edit summary, or an accidental marking of a previous edit as &amp;quot;minor&amp;quot; (see below). Also it is sometimes needed to refresh the cache of some item in the database, see e.g. A category tag in a template; caching problem. &lt;br /&gt;
&lt;br /&gt;
== Minor edits == &lt;br /&gt;
&lt;br /&gt;
== The wiki markup ==&lt;br /&gt;
&lt;br /&gt;
* http://www.mediawiki.org/wiki/Sandbox&lt;br /&gt;
* http://commons.wikimedia.org/wiki/Image:Cheatsheet-en.png&lt;br /&gt;
&lt;br /&gt;
== Page protection ==&lt;br /&gt;
&lt;br /&gt;
In a few cases the link labeled &amp;quot;Edit this page&amp;quot; is replaced by the text &amp;quot;Protected page&amp;quot; (or equivalents in the language of the project). In that case the page can not be edited.&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Help:Editing&amp;diff=2586</id>
		<title>Help:Editing</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Help:Editing&amp;diff=2586"/>
		<updated>2006-04-01T15:28:08Z</updated>

		<summary type="html">&lt;p&gt;Peso: /* The wiki markup */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== General ==&lt;br /&gt;
&lt;br /&gt;
To edit a MediaWiki page, click on the '''&amp;quot;Edit this page&amp;quot;''' (or just '''&amp;quot;edit&amp;quot;''') link at one of its edges. This will bring you to a page with a text box containing the wikitext: the editable source code from which the server produces the webpage. For the special codes, see below.&lt;br /&gt;
&lt;br /&gt;
After adding to or changing the wikitext it is useful to press &amp;quot;Preview&amp;quot;, which produces the corresponding webpage in your browser but does not make it publicly available yet (not until you press &amp;quot;Save&amp;quot;). Errors in formatting, links, tables, etc., are often much easier to discover from the rendered page than from the raw wikitext.&lt;br /&gt;
&lt;br /&gt;
If you are not satisfied you can make more changes and preview the page as many times as necessary. Then write a short edit summary in the small text field below the edit-box and when finished press &amp;quot;Save&amp;quot;. Depending on your system, pressing the &amp;quot;Enter&amp;quot; key while the edit box is not active (i.e., there is no typing cursor in it) may have the same effect as pressing &amp;quot;Save&amp;quot;.&lt;br /&gt;
&lt;br /&gt;
You may find it more convenient to copy and paste the text first into your favorite text editor, edit and spell check it there, and then paste it back into your web browser to preview. This way, you can also keep a local backup copy of the pages you have edited. It also allows you to make changes offline, but before you submit your changes, please make sure nobody else has edited the page since you saved your local copy (by checking the page history), otherwise you may accidently revert someone else's edits. If someone has edited it since you copied the page, you'll have to merge their edits into your new version (you can find their specific edits by using the &amp;quot;diff&amp;quot; feature of the page history). These issues are handled automatically by the Mediawiki software if you edit the page online, retrieving and submitting the wikicode in the same text box. &lt;br /&gt;
&lt;br /&gt;
== Dummy edit ==&lt;br /&gt;
&lt;br /&gt;
If the wikitext is not changed no edit will be recorded and the edit summary is discarded.&lt;br /&gt;
&lt;br /&gt;
A dummy edit is a change in wikitext that has no effect on the rendered page, such as changing the number of newlines at some position from 0 to 1 or from 2 to 3 or conversely (changing from 1 to 2 makes a difference, see below). This allows an edit summary, and is useful for correcting a previous edit summary, or an accidental marking of a previous edit as &amp;quot;minor&amp;quot; (see below). Also it is sometimes needed to refresh the cache of some item in the database, see e.g. A category tag in a template; caching problem. &lt;br /&gt;
&lt;br /&gt;
== Minor edits == &lt;br /&gt;
&lt;br /&gt;
== The wiki markup ==&lt;br /&gt;
&lt;br /&gt;
http://www.mediawiki.org/wiki/Sandbox&lt;br /&gt;
http://commons.wikimedia.org/wiki/Image:Cheatsheet-en.png&lt;br /&gt;
&lt;br /&gt;
== Page protection ==&lt;br /&gt;
&lt;br /&gt;
In a few cases the link labeled &amp;quot;Edit this page&amp;quot; is replaced by the text &amp;quot;Protected page&amp;quot; (or equivalents in the language of the project). In that case the page can not be edited.&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Debugger_scripts&amp;diff=2585</id>
		<title>Debugger scripts</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Debugger_scripts&amp;diff=2585"/>
		<updated>2006-04-01T15:22:40Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Debugger scripts ==&lt;br /&gt;
&lt;br /&gt;
Debugger scripts are similar to [http://www.codeproject.com/csharp/ImageVisualizer.asp Visual Studio Debugger Visualizer]. It allows you to write a small piece of code that gets executed by the debugger whenever you try to view a specific type of variables.&lt;br /&gt;
&lt;br /&gt;
Quote from Game_Ender - March 23, 2006&lt;br /&gt;
&lt;br /&gt;
''I don't think its possible to open up another window to visualize something but the can you make a debugger script.  This script is called by Code::Blocks when ever GDB encounters your variable type and can be used to show custom text with the important information you need in it.  Search for &amp;quot;debugger scripts&amp;quot; on the forum.  I don't think this feature is documented.''&lt;br /&gt;
&lt;br /&gt;
The forum has the following topics:&lt;br /&gt;
* [/index.php?topic=2097.0 Custom Watch Script Pluggins]&lt;br /&gt;
* [/index.php?topic=2636.0 Change the format in the debugger]&lt;br /&gt;
* [/index.php?topic=2150.0 Watches modification]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Debugger_scripts&amp;diff=2584</id>
		<title>Debugger scripts</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Debugger_scripts&amp;diff=2584"/>
		<updated>2006-04-01T15:16:33Z</updated>

		<summary type="html">&lt;p&gt;Peso: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Debugger scripts ==&lt;br /&gt;
&lt;br /&gt;
Debugger scripts are similar to [http://www.codeproject.com/csharp/ImageVisualizer.asp Visual Studio Debugger Visualizer]. It allows you to write a small piece of code that gets executed by the debugger whenever you try to view a specific type of variables.&lt;br /&gt;
&lt;br /&gt;
Quote from Game_Ender&lt;br /&gt;
&lt;br /&gt;
''I don't think its possible to open up another window to visualize something but the can you make a debugger script.  This script is called by Code::Blocks when ever GDB encounters your variable type and can be used to show custom text with the important information you need in it.  Search for &amp;quot;debugger scripts&amp;quot; on the forum.  I don't think this feature is documented.''&lt;br /&gt;
&lt;br /&gt;
The forum has the following topics:&lt;br /&gt;
* [/index.php?topic=2097.0 Custom Watch Script Pluggins]&lt;br /&gt;
* [/index.php?topic=2636.0 Change the format in the debugger]&lt;br /&gt;
* [/index.php?topic=2150.0 Watches modification]&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
	<entry>
		<id>https://wiki.codeblocks.org/index.php?title=Talk:Coding_style&amp;diff=2581</id>
		<title>Talk:Coding style</title>
		<link rel="alternate" type="text/html" href="https://wiki.codeblocks.org/index.php?title=Talk:Coding_style&amp;diff=2581"/>
		<updated>2006-04-01T14:52:03Z</updated>

		<summary type="html">&lt;p&gt;Peso: Request for coding standard for comments.&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;How about comments?&lt;/div&gt;</summary>
		<author><name>Peso</name></author>
	</entry>
</feed>