Diferencia entre revisiones de «MediaWiki:Guidedtour-tour-inicio.js»

De CNB
Ir a la navegación Ir a la búsqueda
Busca en cnbGuatemala con Google

 
(No se muestran 82 ediciones intermedias de 2 usuarios)
Línea 1: Línea 1:
/*
+
( function ( window, document, $, mw, gt ) {
* Guided Tour to test guided tour features.
 
*/
 
(function (window, document, $, mw, gt) {
 
  
// XXX (mattflaschen, 2012-01-02): See GuidedTourHooks.php
+
      if ( mw.config.get( 'wgPageName' ) !== 'Bienvenidos_al_Currículum_Nacional_Base' ) {
var pageName = mw.config.get('wgGuidedTourHelpGuiderUrl'),
+
return;
msgs = {
+
}
'guidedtour-tour-nominatefordeletion-title': "Nominating content for deletion",
+
 
'guidedtour-tour-nominatefordeletion-description': "This short interactive tutorial will show you how to nominate content for deletion at {{SITENAME}}.",
+
      if (mw.cookie.get('inicio_tour')){
'guidedtour-tour-nominatefordeletion-link-title': "Click this link",
+
                return;
'guidedtour-tour-nominatefordeletion-link-description': "to start the deletion procedure for the current page."
+
        }
};
+
 
+
     
 +
      tour = new gt.TourBuilder( {
 +
name: 'inicio'
 +
} );
  
// Again a crappy extension that does not support i18n!!!
+
      mw.cookie.set('inicio_tour','done');
switch (mw.config.get('wgUserLanguage').toLowerCase()) {
+
       
case 'de':
+
       
case 'de-at':
+
var pageName = 'Bienvenidos_al_Currículum_Nacional_Base',
case 'de-ch':
+
tour;
case 'de-formal':
 
case 'gsw':
 
case 'als':
 
case 'bar':
 
$.extend(msgs, {
 
'guidedtour-tour-nominatefordeletion-title': "Einen Löschantrag stellen",
 
'guidedtour-tour-nominatefordeletion-description': "Diese kurze, interaktive Tour wird aufzeigen, wie Du Löschanträge für Inhalte auf {{SITENAME}} stellen kannst.",
 
'guidedtour-tour-nominatefordeletion-link-title': "Klicke auf diesen Link",
 
'guidedtour-tour-nominatefordeletion-link-description': "um die Löschprozedur für die aktuelle Seite zu starten."
 
});
 
break;
 
}
 
mw.messages.set(msgs);
 
  
gt.defineTour({
+
/*
+
tour.firstStep( {
* This is the name of the tour.  It must be lowercase, without any hyphen (-) or
+
name: 'portada',
* period (.) characters.
+
title: 'Hola, esta es tu puerta de acceso al CNB en línea. ¡Sigue explorando!',
*
+
description: 'Selecciona la flecha para ver lo que puedes encontrar en esta página.',
* If this is an on-wiki tour, it should match the MediaWiki page. For instance,
+
                position: 'topRight',
* if this were on-wiki, it would be MediaWiki:Guidedtour-tour-test.js
+
                closeOnClickOutside: false,
*
+
overlay: true
* The IDs below should use the same name in the middle (e.g. gt-test-2).
+
} )
*/
+
name: 'nominatefordeletion',
+
.next( 'portada1' );
  
isSinglePage: true,
+
tour.step( {
shouldLog: false,
+
name: 'portada1',
 +
title: 'Desde la portada puedes explorar los niveles del currículo.',
 +
description: '',
 +
attachTo: '#Inicial-y-Preprimaria-main',               
 +
position: 'top',
 +
                closeOnClickOutside: false,
 +
                overlay: false,
 +
} )
 +
.next( 'portada2' )
 +
.back( 'portada' );
  
/*
+
      tour.step( {
* This is a list of the tour steps, in order.
+
name: 'portada2',
*/
+
title: 'Selecciona [Expandir] para ver el contenido de cada nivel.',
steps: [{
+
description: 'Pruébalo ahora, que no interrumpirás esta guía.',
/*
+
attachTo: '#Tabla-contenidos-del-CNB-expand',              
* Show overlay at start of tour
+
position: 'top',
*/
+
                closeOnClickOutside: false,
titlemsg: 'guidedtour-tour-nominatefordeletion-title',
+
                overlay: false,
descriptionmsg: 'guidedtour-tour-nominatefordeletion-description',
+
} )
onShow: function () {
+
.next( 'portada3' )
if (!$('#p-tb').hasClass('expanded')) {
+
.back( 'portada1' );
mw.log("Expanding");
 
$('#p-tb-label').mousedown().click().mouseup();
 
}
 
},
 
overlay: true,
 
buttons: [{
 
action: 'next',
 
onclick: function() {
 
console.log("Test Ok.");
 
}
 
}]
 
}, {
 
/*
 
* Callout of sidebar menu
 
*/
 
titlemsg: 'guidedtour-tour-nominatefordeletion-link-title',
 
descriptionmsg: 'guidedtour-tour-nominatefordeletion-link-description',
 
  
// This positions the guider next to a page element, in this
+
      tour.step( {
// case the portal link (which is "Community portal" on English
+
name: 'portada3',
// Wikipedia, but varies by site).
+
title: 'Aquí puedes llegar directamente a las mallas curriculares por área.',
// The string is a jQuery selector.  "#n-portal" means the HTML
+
description: 'Selecciona la cabeza de flecha (el triángulo a la izquierda) para abrir y cerrar las opciones del menú. No interrumpe esta guía.',
// element with this id attribute, and "a" means an a, or link,
+
attachTo: 'div[id^="p-Mallas_curriculares_Inicia"]',               
// element inside that.
+
position: 'left',
attachTo: '#t-ajaxquickdelete',
+
                closeOnClickOutside: false,
 +
                overlay: false
 +
} )
 +
.next( 'portada4' )
 +
.back( 'portada2' );
  
// This means the guider shows to the right of the Community Portal link
+
      tour.step( {
position: 'right',
+
name: 'portada4',
 +
title: '¡Además puedes seguir lo que se comenta en las redes sociales!',
 +
description: '',
 +
attachTo: '#twitterMainLink',               
 +
position: 'right',
 +
                closeOnClickOutside: false,
 +
                overlay: false
 +
} )
 +
.next( 'portada5' )
 +
.back( 'portada3' );
 +
       
 +
      tour.step( {
 +
name: 'portada5',
 +
title: 'Los 4 módulos te orientarán para aplicar el currículo en el aula...',
 +
description: '',
 +
attachTo: '#modulo-fundamentos-id',               
 +
position: 'top',
 +
                closeOnClickOutside: false,
 +
                overlay: false
 +
} )
 +
.next( 'portada6' )
 +
.back( 'portada4' );
  
buttons: [{
+
      tour.step( {
action: 'end'
+
name: 'portada6',
}]
+
title: '... y sin duda encontrarás material interesante en estas secciones de recursos complementarios.',
}]
+
description: '',
});
+
attachTo: '#p-Recursos_de_Lectoescritura',               
 +
position: 'left',
 +
                closeOnClickOutside: false,
 +
                overlay: false
 +
} )
 +
.next( 'portada7' )
 +
.back( 'portada5' );
 +
       
 +
      tour.step( {
 +
name: 'portada7',
 +
title: '¿Tienes preguntas? Consulta la sección de ayuda. Y ¡sigue explorando el sitio!',
 +
description: '',
 +
        attachTo: '#p-Ayuda_y_otros',              
 +
position: 'right',
 +
                closeOnClickOutside: false,
 +
                overlay: false
 +
} )
 +
.back( 'portada6' );
 +
     
  
}(window, document, jQuery, mediaWiki, mediaWiki.guidedTour));
+
} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );

Revisión actual del 09:28 10 mar 2017

( function ( window, document, $, mw, gt ) {

       if ( mw.config.get( 'wgPageName' ) !== 'Bienvenidos_al_Currículum_Nacional_Base' ) {
		return;
	}

       if (mw.cookie.get('inicio_tour')){
                return;
        }

       
       tour = new gt.TourBuilder( {	
		name: 'inicio'
	} );

       mw.cookie.set('inicio_tour','done');
        
        	
	var pageName = 'Bienvenidos_al_Currículum_Nacional_Base',
		tour;	

	
	tour.firstStep( {
		name: 'portada',		
		title: 'Hola, esta es tu puerta de acceso al CNB en línea. ¡Sigue explorando!',		
		description: 'Selecciona la flecha para ver lo que puedes encontrar en esta página.',
                position: 'topRight',
                closeOnClickOutside: false,
		overlay: true
	} )
	
	.next( 'portada1' );

	tour.step( {		
		name: 'portada1',
		title: 'Desde la portada puedes explorar los niveles del currículo.',
		description: '',
		attachTo: '#Inicial-y-Preprimaria-main',                
		position: 'top',
                closeOnClickOutside: false,
                overlay: false,
	} )
	.next( 'portada2' )	
	.back( 'portada' );

       tour.step( {		
		name: 'portada2',
		title: 'Selecciona [Expandir] para ver el contenido de cada nivel.',
		description: 'Pruébalo ahora, que no interrumpirás esta guía.',
		attachTo: '#Tabla-contenidos-del-CNB-expand',                
		position: 'top',
                closeOnClickOutside: false,
                overlay: false,
	} )
	.next( 'portada3' )	
	.back( 'portada1' );

       tour.step( {		
		name: 'portada3',
		title: 'Aquí puedes llegar directamente a las mallas curriculares por área.',
		description: 'Selecciona la cabeza de flecha (el triángulo a la izquierda) para abrir y cerrar las opciones del menú. No interrumpe esta guía.',
		attachTo: 'div[id^="p-Mallas_curriculares_Inicia"]',                
		position: 'left',
                closeOnClickOutside: false,
                overlay: false
	} )
	.next( 'portada4' )	
	.back( 'portada2' );

       tour.step( {		
		name: 'portada4',
		title: '¡Además puedes seguir lo que se comenta en las redes sociales!',
		description: '',
		attachTo: '#twitterMainLink',                
		position: 'right',
                closeOnClickOutside: false,
                overlay: false
	} )
	.next( 'portada5' )	
	.back( 'portada3' );
        
       tour.step( {		
		name: 'portada5',
		title: 'Los 4 módulos te orientarán para aplicar el currículo en el aula...',
		description: '',
		attachTo: '#modulo-fundamentos-id',                
		position: 'top',
                closeOnClickOutside: false,
                overlay: false
	} )
	.next( 'portada6' )	
	.back( 'portada4' );

       tour.step( {		
		name: 'portada6',
		title: '... y sin duda encontrarás material interesante en estas secciones de recursos complementarios.',
		description: '',
		attachTo: '#p-Recursos_de_Lectoescritura',                
		position: 'left',
                closeOnClickOutside: false,
                overlay: false
	} )
	.next( 'portada7' )	
	.back( 'portada5' );
        
       tour.step( {		
		name: 'portada7',
		title: '¿Tienes preguntas? Consulta la sección de ayuda. Y ¡sigue explorando el sitio!',
		description: '',
        	attachTo: '#p-Ayuda_y_otros', 	               
		position: 'right',
                closeOnClickOutside: false,
                overlay: false
	} )
	.back( 'portada6' );
       

} ( window, document, jQuery, mediaWiki, mediaWiki.guidedTour ) );

Conjunto de experiencias, planificadas o no, que tienen lugar en los centros educativos como posibilidad de aprendizaje del alumnado. Una perspectiva tradicional acentúa el carácter de plan (con elementos como objetivos, contenidos, metodología y evaluación), frente a un enfoque práctico que destaca las experiencias vividas en el proceso educativo.

En el continuo de coaching es el rol de ser muy directo y enseñar, mostrar, guiar, etc.

Término introducido por Le Boterf, entendido como los conocimientos, procedimientos y actitudes que es preciso emplear para resolver una situación. Unos son recursos internos, que posee la persona, tales como conocimientos, procedimientos y actitudes