mirror of
				https://github.com/flynx/ImageGrid.git
				synced 2025-10-31 19:30:07 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			619 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			619 lines
		
	
	
		
			16 KiB
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| /**********************************************************************
 | |
| * 
 | |
| *
 | |
| *
 | |
| **********************************************************************/
 | |
| ((typeof define)[0]=='u'?function(f){module.exports=f(require)}:define)
 | |
| (function(require){ var module={} // make module AMD/node compatible...
 | |
| /*********************************************************************/
 | |
| 
 | |
| if(typeof(process) != 'undefined'){
 | |
| 	var pathlib = requirejs('path')
 | |
| }
 | |
| 
 | |
| var electron
 | |
| try{
 | |
| 	electron = requirejs('electron')
 | |
| } catch(e){ }
 | |
| 
 | |
| 
 | |
| var actions = require('lib/actions')
 | |
| var features = require('lib/features')
 | |
| var toggler = require('lib/toggler')
 | |
| 
 | |
| var core = require('features/core')
 | |
| var base = require('features/base')
 | |
| var widgets = require('features/ui-widgets')
 | |
| 
 | |
| 
 | |
| 
 | |
| /*********************************************************************/
 | |
| 
 | |
| var Widget = 
 | |
| module.Widget = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'widget',
 | |
| 	depends: [
 | |
| 		'-ui-app-control',
 | |
| 	],
 | |
| })
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| var NWHostActions = actions.Actions({
 | |
| 	// window stuff...
 | |
| 	// XXX should this be nested in a .window object???
 | |
| 	get title(){
 | |
| 		return nw.Window.get().title },
 | |
| 	set title(value){
 | |
| 		nw.Window.get().title = value },
 | |
| 	get size(){
 | |
| 		var win = nw.Window.get()
 | |
| 		return [
 | |
| 			win.width,
 | |
| 			win.height,
 | |
| 		]
 | |
| 	},
 | |
| 	set size(value){
 | |
| 		var win = nw.Window.get()
 | |
| 		win.width = value[0]
 | |
| 		win.height = value[1]
 | |
| 	},
 | |
| 	get position(){
 | |
| 		var win = nw.Window.get()
 | |
| 		return [
 | |
| 			win.x,
 | |
| 			win.y,
 | |
| 		]
 | |
| 	},
 | |
| 	set position(value){
 | |
| 		var win = nw.Window.get()
 | |
| 		win.x = value[0]
 | |
| 		win.y = value[1]
 | |
| 	},
 | |
| 
 | |
| 	show: ['- Window/',
 | |
| 		function(){
 | |
| 			nw.Window.get().show() }],
 | |
| 	minimize: ['Window/Minimize',
 | |
| 		function(){
 | |
| 			nw.Window.get().minimize() }],
 | |
| 	toggleFullScreen: ['Window/Full screen mode',
 | |
| 		toggler.CSSClassToggler(
 | |
| 			function(){ return document.body }, 
 | |
| 			'.full-screen-mode',
 | |
| 			function(action){
 | |
| 				var that = this
 | |
| 				var w = nw.Window.get()
 | |
| 
 | |
| 				// change the state only if the target state is not the same
 | |
| 				// as the current state...
 | |
| 				if((w.isFullscreen ? 'on' : 'off') != action){
 | |
| 					this.ribbons.preventTransitions()
 | |
| 
 | |
| 					// hide the viewer to hide any animation crimes...
 | |
| 					this.dom[0].style.visibility = 'hidden'
 | |
| 
 | |
| 					// XXX async...
 | |
| 					// 		...this complicates things as we need to do the next
 | |
| 					// 		bit AFTER the resize is done...
 | |
| 					w.toggleFullscreen()
 | |
| 
 | |
| 					setTimeout(function(){ 
 | |
| 						that
 | |
| 							.centerViewer()
 | |
| 							.focusImage()
 | |
| 							.ribbons
 | |
| 								.restoreTransitions()
 | |
| 
 | |
| 						that.dom[0].style.visibility = ''
 | |
| 					}, 100)
 | |
| 				}
 | |
| 
 | |
| 				// NOTE: we delay this to account for window animation...
 | |
| 				setTimeout(function(){ 
 | |
| 					that.storeWindowGeometry() 
 | |
| 				}, 500)
 | |
| 			})],
 | |
| 
 | |
| 	// XXX add ability to use devtools on background page (node context)...
 | |
| 	showDevTools: ['Interface|Development/Show Dev Tools',
 | |
| 		function(){
 | |
| 			nw.Window.get().showDevTools &&
 | |
| 				nw.Window.get().showDevTools()
 | |
| 		}],
 | |
| 	showInFolder: ['File|Image/Show in $folder',
 | |
| 		function(image){
 | |
| 			image = this.images[this.data.getImage(image)]
 | |
| 
 | |
| 			var base = image.base_path || this.location.path
 | |
| 			var filename = image.path
 | |
| 			var path = pathlib.normalize(base + '/' + filename)
 | |
| 
 | |
| 			nw.Shell.showItemInFolder(path)
 | |
| 		}],
 | |
| 
 | |
| 	toggleSplashScreen: ['Interface/',
 | |
| 		function(){
 | |
| 		}],
 | |
| })
 | |
| 
 | |
| var NWHost = 
 | |
| module.NWHost = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-nw-host',
 | |
| 	exclusive: 'ui-host',
 | |
| 	depends: [],
 | |
| 
 | |
| 	actions: NWHostActions,
 | |
| 
 | |
| 	isApplicable: function(){ return this.runtime.nw },
 | |
| })
 | |
| 
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| var ElectronHostActions = actions.Actions({
 | |
| 	// window stuff...
 | |
| 	// XXX should this be nested in a .window object???
 | |
| 	// XXX should these be props or methods???
 | |
| 	get title(){
 | |
| 		return electron.remote.getCurrentWindow().getTitle() },
 | |
| 	set title(value){
 | |
| 		electron.remote.getCurrentWindow().setTitle(value) },
 | |
| 	get size(){
 | |
| 		return electron.remote.getCurrentWindow().getSize() },
 | |
| 	set size(value){
 | |
| 		value && electron.remote.getCurrentWindow().setSize(value[0], value[1]) },
 | |
| 	get position(){
 | |
| 		return electron.remote.getCurrentWindow().getPosition() },
 | |
| 	set position(value){
 | |
| 		value && electron.remote.getCurrentWindow().setPosition(value[0], value[1]) },
 | |
| 
 | |
| 	show: ['- Window/',
 | |
| 		function(){
 | |
| 			electron.remote.getCurrentWindow().show() }],
 | |
| 	minimize: ['Window/Minimize',
 | |
| 		function(){
 | |
| 			electron.remote.getCurrentWindow().minimize() }],
 | |
| 	// XXX this is almost generic, but it is not usable unless within 
 | |
| 	// 		a user event handler...
 | |
| 	// 		...can we use this on electron???
 | |
| 	// 		if this fails use:
 | |
| 	// 			electron.remote.getCurrentWindow().isFullScreen(..)
 | |
| 	// 			electron.remote.getCurrentWindow().setFullScreen(..)
 | |
| 	toggleFullScreen: ['Window/Full screen mode',
 | |
| 		toggler.CSSClassToggler(
 | |
| 			function(){ return document.body }, 
 | |
| 			'.full-screen-mode',
 | |
| 			function(action){
 | |
| 				var that = this
 | |
| 				var win = electron.remote.getCurrentWindow()
 | |
| 
 | |
| 				var state = win.isFullScreen() ? 'on' : 'off'
 | |
| 
 | |
| 				// change the state only if the target state is not the same
 | |
| 				// as the current state...
 | |
| 				if(state != action){
 | |
| 					this.ribbons.preventTransitions()
 | |
| 
 | |
| 					// hide the viewer to hide any animation crimes...
 | |
| 					this.dom[0].style.visibility = 'hidden'
 | |
| 
 | |
| 					// XXX async...
 | |
| 					// 		...this complicates things as we need to do the next
 | |
| 					// 		bit AFTER the resize is done...
 | |
| 					win.setFullScreen(action == 'on' ? true : false)
 | |
| 
 | |
| 					setTimeout(function(){ 
 | |
| 						that
 | |
| 							.centerViewer()
 | |
| 							.focusImage()
 | |
| 							.ribbons
 | |
| 								.restoreTransitions()
 | |
| 
 | |
| 						that.dom[0].style.visibility = ''
 | |
| 					}, 100)
 | |
| 				}
 | |
| 
 | |
| 				// NOTE: we delay this to account for window animation...
 | |
| 				setTimeout(function(){ 
 | |
| 					that.storeWindowGeometry() 
 | |
| 				}, 500)
 | |
| 			})],
 | |
| 
 | |
| 	showDevTools: ['Interface|Development/Show Dev Tools',
 | |
| 		function(){
 | |
| 			var w = electron.remote.getCurrentWindow()
 | |
| 				
 | |
| 			w.openDevTools() 
 | |
| 			// focus the devtools if its window is available...
 | |
| 			w.devToolsWebContents
 | |
| 				&& w.devToolsWebContents.focus()
 | |
| 		}],
 | |
| 	// XXX make this portable (osx, linux)...
 | |
| 	showInFolder: ['File|Image/Show in $folder',
 | |
| 		function(image){
 | |
| 			image = this.images[this.data.getImage(image)]
 | |
| 
 | |
| 			var base = image.base_path || this.location.path
 | |
| 			var filename = image.path
 | |
| 			var path = pathlib.normalize(base + '/' + filename)
 | |
| 
 | |
| 			requirejs('child_process')
 | |
| 				// XXX this is windows-specific...
 | |
| 				.exec(`explorer.exe /select,"${ pathlib.normalize(path) }"`)
 | |
| 				// XXX osx...
 | |
| 				//.exec('open -R '+JSON.stringify(path))
 | |
| 		}],
 | |
| 
 | |
| 	// XXX make this a real toggler...
 | |
| 	toggleSplashScreen: ['Interface/',
 | |
| 		function(){
 | |
| 			var splash = this.splash = new electron.BrowserWindow({
 | |
| 				// let the window to get ready before we show it to the user...
 | |
| 				//show: false,
 | |
| 
 | |
| 				frame: false,
 | |
| 				center: true,
 | |
| 				//backgroundColor: XXX,
 | |
| 				width: 500, 
 | |
| 				height: 500,
 | |
| 
 | |
| 				alwaysOnTop: true,
 | |
| 
 | |
| 				resizable: false,
 | |
| 				movable: false,
 | |
| 				minimizable: false,
 | |
| 				maximizable: false,
 | |
| 				fullscreenable: false,
 | |
| 
 | |
| 				autoHideMenuBar: true,
 | |
| 			})
 | |
| 
 | |
| 			splash.setMenu(null)
 | |
| 
 | |
| 			// and load the index.html of the app.
 | |
| 			splash.loadURL(url.format({
 | |
| 				// XXX unify this with index.html
 | |
| 				pathname: path.join(__dirname, 'splash.html'),
 | |
| 				protocol: 'file:',
 | |
| 				slashes: true
 | |
| 			}))
 | |
| 		}],
 | |
| })
 | |
| 
 | |
| var ElectronHost = 
 | |
| module.ElectronHost = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-electron-host',
 | |
| 	exclusive: 'ui-host',
 | |
| 	depends: [],
 | |
| 
 | |
| 	actions: ElectronHostActions,
 | |
| 
 | |
| 	isApplicable: function(){ return this.runtime.electron },
 | |
| })
 | |
| 
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| // XXX this needs to trigger only when fullwindow browser mode and not 
 | |
| // 		get loaded when in widget mode...
 | |
| 
 | |
| var BrowserHostActions = actions.Actions({
 | |
| 	// window stuff...
 | |
| 	get title(){
 | |
| 		return $('title').text() },
 | |
| 	set title(value){
 | |
| 		$('title').text(value) },
 | |
| })
 | |
| 
 | |
| // NOTE: keep this defined last as a fallback...
 | |
| var BrowserHost = 
 | |
| module.BrowserHost = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-browser-host',
 | |
| 	exclusive: 'ui-host',
 | |
| 	depends: [],
 | |
| 
 | |
| 	actions: BrowserHostActions,
 | |
| 
 | |
| 	isApplicable: function(){ return !this.runtime.widget },
 | |
| })
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| var PortableAppControl = 
 | |
| module.PortableAppControl = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-portable-app-control',
 | |
| 	depends: [
 | |
| 		'ui',
 | |
| 		'ui-host',
 | |
| 	],
 | |
| 
 | |
| 	isApplicable: function(){ return this.runtime.browser },
 | |
| 
 | |
| 	config: {
 | |
| 		//'window-title': 'ImageGrid.Viewer (${VERSION}): ${FILENAME}',
 | |
| 		'window-title': '${FILENAME} - ImageGrid.Viewer (${VERSION})',
 | |
| 	},
 | |
| 
 | |
| 	handlers: [
 | |
| 		// update window title...
 | |
| 		// XXX make this generic...
 | |
| 		['focusImage clear',
 | |
| 			function(){
 | |
| 				if(this.images){
 | |
| 					var img = this.images[this.current]
 | |
| 					this.title = (this.config['window-title'] 
 | |
| 							|| 'ImageGrid.Viewer (${VERSION}): ${FILENAME}')
 | |
| 						// XXX get this from the viewer...
 | |
| 						.replace('${VERSION}', this.version || 'gen4')
 | |
| 						.replace('${FILENAME}', 
 | |
| 							img ? 
 | |
| 									(img.name 
 | |
| 										|| (img.path && img.path.replace(/\.[\\\/]/, ''))
 | |
| 										|| this.current
 | |
| 										|| '')
 | |
| 								: (this.current || ''))
 | |
| 						.replace('${PATH}', 
 | |
| 							(img && img.path) ?
 | |
| 									(img.base_path || '.') 
 | |
| 										+'/'+ img.path.replace(/\.[\\\/]/, '')
 | |
| 								: '')
 | |
| 						/*
 | |
| 						.replace('${DIR}', 
 | |
| 							pathlib.dirname((img.base_path || '.') 
 | |
| 								+'/'+ img.path.replace(/\.[\\\/]/, '')))
 | |
| 						*/
 | |
| 						// XXX add ...
 | |
| 				}
 | |
| 			}],
 | |
| 	],
 | |
| })
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| var WindowedAppControlActions = actions.Actions({
 | |
| 	config: {
 | |
| 		'window-delay-initial-display': 200,
 | |
| 
 | |
| 		'show-splash-screen': 'on',
 | |
| 	},
 | |
| 
 | |
| 	// XXX revise these...
 | |
| 	close: ['File|Window/Close viewer',
 | |
| 		function(){ window.close() }],
 | |
| 	storeWindowGeometry: ['- Window/Store window state',
 | |
| 		function(){
 | |
| 			// store window parameters (size, state)...
 | |
| 			//var win = nw.Window.get()
 | |
| 			var size = this.size
 | |
| 			var position = this.position
 | |
| 
 | |
| 			// fullscreen...
 | |
| 			// ...avoid overwriting size...
 | |
| 			if(this.toggleFullScreen('?') == 'on'){
 | |
| 				this.config.window = this.config.window || {}
 | |
| 				this.config.window.fullscreen = true
 | |
| 				//this.config.window.zoom = win.zoomLevel 
 | |
| 
 | |
| 			} else {
 | |
| 				this.config.window = {
 | |
| 					size: {
 | |
| 						width: size[0],
 | |
| 						height: size[1],
 | |
| 					},
 | |
| 					// XXX position...
 | |
| 					fullscreen: false,
 | |
| 					//zoom: win.zoomLevel,
 | |
| 				}
 | |
| 			}
 | |
| 		}],
 | |
| 	restoreWindowGeometry: ['- Window/Restore window state',
 | |
| 		function(){
 | |
| 			var that = this
 | |
| 			// or global.window.nwDispatcher.requireNwGui()
 | |
| 			// (see: https://github.com/rogerwang/node-webkit/issues/707)
 | |
| 			//var win = nw.Window.get()
 | |
| 
 | |
| 			// XXX move this into .restoreWindowGeometry(..)
 | |
| 			// get window state from config and load it...
 | |
| 			var cfg = this.config.window
 | |
| 			if(cfg != null){
 | |
| 				var W = screen.width
 | |
| 				var H = screen.height
 | |
| 				var w = 800
 | |
| 				var h = 600
 | |
| 				//var s = cfg.scale
 | |
| 
 | |
| 				if(cfg.size){
 | |
| 					//w = win.width = Math.min(cfg.size.width, screen.width)
 | |
| 					//h = win.height = Math.min(cfg.size.height, screen.height)
 | |
| 					w = Math.min(cfg.size.width, screen.width)
 | |
| 					h = Math.min(cfg.size.height, screen.height)
 | |
| 					this.size = [w, h]
 | |
| 				}
 | |
| 
 | |
| 				// place on center of the screen...
 | |
| 				//var x = win.x = Math.round((W - w)/2)
 | |
| 				//var y = win.y = Math.round((H - h)/2)
 | |
| 				var x = Math.round((W - w)/2)
 | |
| 				var y = Math.round((H - h)/2)
 | |
| 				this.position = [x, y]
 | |
| 
 | |
| 				//if(s){
 | |
| 				//	win.zoomLevel = s
 | |
| 				//}
 | |
| 
 | |
| 				//console.log('GEOMETRY:', w, h, x, y)
 | |
| 
 | |
| 				this.centerViewer()
 | |
| 			}
 | |
| 
 | |
| 			/* XXX still buggy....
 | |
| 			// restore interface scale...
 | |
| 			this.toggleInterfaceScale(
 | |
| 				this.config['ui-scale-mode'] 
 | |
| 				|| this.toggleInterfaceScale('??')[0])
 | |
| 			*/
 | |
| 
 | |
| 			// NOTE: we delay this to enable the browser time to render
 | |
| 			// 		things before we show them to the user...
 | |
| 			setTimeout(function(){
 | |
| 				that.show()
 | |
| 
 | |
| 				// XXX check if we are full screen...
 | |
| 				if(cfg != null && cfg.fullscreen){
 | |
| 					that.toggleFullScreen('on')
 | |
| 				}
 | |
| 
 | |
| 				// declare we are ready...
 | |
| 				$(function(){ that.declareReady() })
 | |
| 
 | |
| 			}, this.config['window-delay-initial-display'] || 0)
 | |
| 		}],
 | |
| 
 | |
| 	toggleSplashScreenShowing: ['Interface/Splash screen on start',
 | |
| 		core.makeConfigToggler('show-splash-screen', ['on', 'off'])],
 | |
| })
 | |
| 
 | |
| // XXX store/load window state...
 | |
| // 		- size
 | |
| // 		- state (fullscreen/normal)
 | |
| var WindowedAppControl = 
 | |
| module.WindowedAppControl = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-windowed-app-control',
 | |
| 	depends: [
 | |
| 		'ui',
 | |
| 		'ui-host',
 | |
| 	],
 | |
| 
 | |
| 	actions: WindowedAppControlActions,
 | |
| 
 | |
| 	// XXX BUG: when running in electron:
 | |
| 	// 			- loading this breaks the other buttons (menu, collections, ...)
 | |
| 	// 			- .toggleFullScreen(..) works in an odd manner -- ok when 
 | |
| 	// 				explicitly called or button pushed but in opposite manner 
 | |
| 	// 				when F11 (FIXED?)
 | |
| 	// 			- ready protocol breaks -- need to call .ready() to unstall 
 | |
| 	// 				the viewer
 | |
| 	// 		...does this all have anything to do with double init???
 | |
| 	isApplicable: function(){ return this.runtime.desktop },
 | |
| 	//isApplicable: function(){ return this.runtime.desktop && !this.runtime.electron },
 | |
| 
 | |
| 	// XXX show main window...
 | |
| 	handlers: [
 | |
| 		['start.pre',
 | |
| 			function(){ 
 | |
| 				// we are going to declare ready ourselves...
 | |
| 				this.requestReadyAnnounce() }],
 | |
| 		['start',
 | |
| 			function(){ 
 | |
| 				this.restoreWindowGeometry() }],
 | |
| 		[[
 | |
| 			'close.pre',
 | |
| 			'toggleFullScreen',
 | |
| 		],
 | |
| 			function(){ this.storeWindowGeometry() }],
 | |
| 	],
 | |
| })
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| 
 | |
| var AppControl = 
 | |
| module.AppControl = core.ImageGridFeatures.Feature('ui-app-control', [
 | |
| 	'ui-windowed-app-control',
 | |
| 	'ui-portable-app-control',
 | |
| ])
 | |
| 
 | |
| 
 | |
| //---------------------------------------------------------------------
 | |
| // Fullscreen app control buttons...
 | |
| 
 | |
| var AppButtonsActions = actions.Actions({
 | |
| 	config: {
 | |
| 		// append app-specific buttons...
 | |
| 		'app-buttons': Object.assign({},
 | |
| 			widgets.Buttons.actions.config['app-buttons'],
 | |
| 			{
 | |
| 				'_': ['minimize', 
 | |
| 					'minimize -- Minimize'],
 | |
| 				'↙': ['fullscreen', 
 | |
| 					'toggleFullScreen -- Toggle fullscreen'],
 | |
| 				'×': ['close', 
 | |
| 					'close -- Quit'],
 | |
| 			}),
 | |
| 	},
 | |
| })
 | |
| 
 | |
| var AppButtons = 
 | |
| module.AppButtons = core.ImageGridFeatures.Feature({
 | |
| 	title: '',
 | |
| 	doc: '',
 | |
| 
 | |
| 	tag: 'ui-app-buttons',
 | |
| 	depends: [
 | |
| 		'ui-windowed-app-control',
 | |
| 		'ui-buttons',
 | |
| 	],
 | |
| 	suggested: [
 | |
| 		// needed for reporting info in .makeButtonControls(..)
 | |
| 		'ui-status-bar',
 | |
| 	],
 | |
| 
 | |
| 	actions: AppButtonsActions,
 | |
| 
 | |
| 	handlers: [
 | |
| 		['start.pre', 
 | |
| 			function(){
 | |
| 				this.toggleAppButtons('on')
 | |
| 			}],
 | |
| 		['start toggleFullScreen', 
 | |
| 			function(){
 | |
| 				var fullscreen = this.toggleFullScreen('?')
 | |
| 				var buttons = this.dom.find('.app-buttons')
 | |
| 				
 | |
| 				// fullscreen button...
 | |
| 				buttons.find('.fullscreen.button')
 | |
| 					.html(fullscreen == 'on' ? '↙' : '↗')
 | |
| 					.attr('info', fullscreen == 'on' ? 'Exit fullscreen' : 'Fullscreen')
 | |
| 
 | |
| 				// XXX should this be done by css???
 | |
| 				if(fullscreen == 'on'){
 | |
| 					buttons.find('.button:not(.allways-shown)').show()
 | |
| 
 | |
| 				} else {
 | |
| 					buttons.find('.button:not(.allways-shown)').hide()
 | |
| 				}
 | |
| 
 | |
| 				//this.toggleFullScreenControls(fullScreen)
 | |
| 			}],
 | |
| 	],
 | |
| })
 | |
| 
 | |
| 
 | |
| 
 | |
| /**********************************************************************
 | |
| * vim:set ts=4 sw=4 :                               */ return module })
 |