<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://gipegasus.com.ar/wikienlace/skins/common/feed.css?303"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="es">
		<id>http://gipegasus.com.ar/wikienlace/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGuidedtour-tour-mytest.js</id>
		<title>MediaWiki:Guidedtour-tour-mytest.js - Historial de revisiones</title>
		<link rel="self" type="application/atom+xml" href="http://gipegasus.com.ar/wikienlace/index.php?action=history&amp;feed=atom&amp;title=MediaWiki%3AGuidedtour-tour-mytest.js"/>
		<link rel="alternate" type="text/html" href="http://gipegasus.com.ar/wikienlace/index.php?title=MediaWiki:Guidedtour-tour-mytest.js&amp;action=history"/>
		<updated>2026-04-05T18:32:40Z</updated>
		<subtitle>Historial de revisiones para esta página en el wiki</subtitle>
		<generator>MediaWiki 1.23.0</generator>

	<entry>
		<id>http://gipegasus.com.ar/wikienlace/index.php?title=MediaWiki:Guidedtour-tour-mytest.js&amp;diff=2426&amp;oldid=prev</id>
		<title>Gcsantiago: Página creada con «/*  * Guided Tour to test guided tour features.  */   // Copy the next two lines into your tour. ( function ( window, document, $, mw, gt ) {   // Declare a variable for us...»</title>
		<link rel="alternate" type="text/html" href="http://gipegasus.com.ar/wikienlace/index.php?title=MediaWiki:Guidedtour-tour-mytest.js&amp;diff=2426&amp;oldid=prev"/>
				<updated>2014-08-02T03:00:28Z</updated>
		
		<summary type="html">&lt;p&gt;Página creada con «‎&lt;span dir=&quot;auto&quot;&gt;&lt;span class=&quot;autocomment&quot;&gt;* Guided Tour to test guided tour features.: &lt;/span&gt;   // Copy the next two lines into your tour. ( function ( window, document, $, mw, gt ) {   // Declare a variable for us...»&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Página nueva&lt;/b&gt;&lt;/p&gt;&lt;div&gt;/*&lt;br /&gt;
 * Guided Tour to test guided tour features.&lt;br /&gt;
 */&lt;br /&gt;
 &lt;br /&gt;
// Copy the next two lines into your tour.&lt;br /&gt;
( function ( window, document, $, mw, gt ) {&lt;br /&gt;
 &lt;br /&gt;
// Declare a variable for use later&lt;br /&gt;
var pageName = 'Help:Guided tours/guider';&lt;br /&gt;
 &lt;br /&gt;
gt.defineTour( {&lt;br /&gt;
	/*&lt;br /&gt;
	 * This is the name of the tour.  It must be lowercase, without any hyphen (-) or&lt;br /&gt;
	 * period (.) characters.&lt;br /&gt;
	 *&lt;br /&gt;
	 * The page where you save an on-wiki tour must be named&lt;br /&gt;
	 * MediaWiki:Guidedtour-tour-{name}.js , in this example MediaWiki:Guidedtour-tour-mytest.js&lt;br /&gt;
	 */&lt;br /&gt;
	name: 'mytest',&lt;br /&gt;
 &lt;br /&gt;
	/*&lt;br /&gt;
	 * Information defining each tour step, in order.&lt;br /&gt;
	 */&lt;br /&gt;
	steps: [ {&lt;br /&gt;
		/*&lt;br /&gt;
		 * Show overlay at start of tour&lt;br /&gt;
		 */&lt;br /&gt;
 &lt;br /&gt;
                // Note that for on-wiki tours, we use title and description with the actual text.&lt;br /&gt;
                // The title appears in the title bar of the guider.&lt;br /&gt;
		title: 'Testing',&lt;br /&gt;
 &lt;br /&gt;
                // The description appears in the body&lt;br /&gt;
		description: 'This is a test of the description. Lorem ipsum dolor sit!',&lt;br /&gt;
 &lt;br /&gt;
                // This specifies that the guider appears in the center of the screen&lt;br /&gt;
		overlay: true,&lt;br /&gt;
                // This means there is just the okay button, which will go to&lt;br /&gt;
                // the next step unless the user ends the tour.&lt;br /&gt;
		buttons: [ {&lt;br /&gt;
			action: 'next'&lt;br /&gt;
		} ]&lt;br /&gt;
	}, {&lt;br /&gt;
		/*&lt;br /&gt;
		 * Callout of left menu&lt;br /&gt;
		 */&lt;br /&gt;
		title: 'Test callouts',&lt;br /&gt;
		description: 'This is the community portal page.',&lt;br /&gt;
 &lt;br /&gt;
                // This positions the guider next to a page element, in this&lt;br /&gt;
                // case the portal link (which is &amp;quot;Community portal&amp;quot; on English&lt;br /&gt;
                // Wikipedia, but varies by site).&lt;br /&gt;
                // The string is a jQuery selector.  &amp;quot;#n-portal&amp;quot; means the HTML&lt;br /&gt;
                // element with this id attribute, and &amp;quot;a&amp;quot; means an a, or link,&lt;br /&gt;
                // element inside that.&lt;br /&gt;
		attachTo: '#n-portal a',&lt;br /&gt;
 &lt;br /&gt;
                // This means the guider shows to the right of the Community Portal link&lt;br /&gt;
		position: 'right',&lt;br /&gt;
 &lt;br /&gt;
		buttons: [ {&lt;br /&gt;
			action: 'next'&lt;br /&gt;
		} ]&lt;br /&gt;
	}, {&lt;br /&gt;
		/*&lt;br /&gt;
		 * Test out mediawiki parsing&lt;br /&gt;
		 */&lt;br /&gt;
		title: 'Test MediaWiki parse',&lt;br /&gt;
		description: 'A guider in your on-wiki tour can contain wikitext using onShow and parseDescription. Use it to create a wikilink to the [[{{MediaWiki:Guidedtour-help-url}}|Guided tours documentation]]. Or an external link [https://github.com/tychay/mwgadget.GuidedTour to GitHub], for instance.',&lt;br /&gt;
 &lt;br /&gt;
                // This attaches to the search box, by ID.&lt;br /&gt;
		attachTo: '#searchInput',&lt;br /&gt;
		position: 'bottomRight',&lt;br /&gt;
 &lt;br /&gt;
                // This means the description will be parsed as wikitext before being shown.&lt;br /&gt;
                onShow: gt.parseDescription,&lt;br /&gt;
		buttons: [ {&lt;br /&gt;
			action: 'next'&lt;br /&gt;
		} ]&lt;br /&gt;
	}, {&lt;br /&gt;
		/*&lt;br /&gt;
		 * Test out mediawiki description pages&lt;br /&gt;
		 */&lt;br /&gt;
		title: 'Test MediaWiki description pages',&lt;br /&gt;
 &lt;br /&gt;
                // In this case, we are putting a page name here, rather than text directly.&lt;br /&gt;
		description: pageName,&lt;br /&gt;
 &lt;br /&gt;
		overlay: true,&lt;br /&gt;
 &lt;br /&gt;
                // This means the wikitext will be loaded from the page name in the description field.&lt;br /&gt;
		onShow: gt.getPageAsDescription,&lt;br /&gt;
 &lt;br /&gt;
		buttons: [ {&lt;br /&gt;
                        // This makes a button which acts like a wikilink to 'Help:Guided tours/guider'&lt;br /&gt;
			name: 'Go to description page',&lt;br /&gt;
			onclick: function() {&lt;br /&gt;
				window.location = mw.util.wikiGetlink(pageName);&lt;br /&gt;
				return false;&lt;br /&gt;
			}&lt;br /&gt;
		}, {&lt;br /&gt;
                        // This makes the okay button on this step end the tour.&lt;br /&gt;
			action: 'end'&lt;br /&gt;
		} ]&lt;br /&gt;
	} ]&lt;br /&gt;
} );&lt;br /&gt;
 &lt;br /&gt;
// The following should be the last line of your tour.&lt;br /&gt;
} (window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );&lt;/div&gt;</summary>
		<author><name>Gcsantiago</name></author>	</entry>

	</feed>