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 79 ediciones intermedias de 2 usuarios)
Línea 1: Línea 1:
// Guided Tour to help users start editing
 
 
 
( function ( window, document, $, mw, gt ) {
 
( function ( window, document, $, mw, gt ) {
gt.defineTour( {
 
        name: 'inicio',
 
        steps: [ {
 
                title: 'Upload your image',
 
                description: 'Welcome to the Wiki Loves Monuments 2013 United States Upload Wizard.',
 
                overlay: true,
 
                buttons: [ {
 
                        action: 'next'
 
                } ],
 
 
                // shouldSkip is a general tool to skip a step based on their progress towards some goal.  This is used to ensure this step will not be shown once they have started editing.
 
                // shouldSkip always returns true to skip, or false otherwise.
 
  shouldSkip: function() {
 
                        return gt.hasQuery( { action: 'edit' } );
 
                }
 
        },
 
{
 
                title: 'Upload your file',
 
                description: 'Follow the instructions on the screen to upload your file. When you are finished uploading, click 'next'.',
 
           
 
                position: 'right',
 
                // Same as above.  We plan to make this less repetitive in the future.
 
// shouldSkip is a general tool to skip a step based on their progress towards some goal.  This is used to ensure this step will not be shown once they have started editing.
 
                // shouldSkip always returns true to skip, or false otherwise.
 
  shouldSkip: function() {
 
return gt.isPage( 'Special:ChangeEmail' );
 
                }
 
  
         },
+
      if ( mw.config.get( 'wgPageName' ) !== 'Bienvenidos_al_Currículum_Nacional_Base' ) {
{
+
return;
                 title: 'Confirm your email',
+
}
                 description: 'Please <a href="https://commons.wikimedia.org/wiki/Special:ChangeEmail">confirm your email</a>. Without it, we cannot contact you if you win. <a href="https://commons.wikimedia.org/wiki/Special:ChangeEmail">Click here to confirm your email.</a>',
+
 
                
+
      if (mw.cookie.get('inicio_tour')){
                 position: 'bottom',
+
                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,
 
                 closeOnClickOutside: false,
  buttons: [ {
+
                overlay: false
                        action: 'end'
+
} )
                } ]
+
.back( 'portada6' );
 
+
        
  shouldSkip: function() {
 
return gt.isPage( 'Special:ChangeEmail' );
 
                }
 
       },
 
  
} );
+
} ( 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