All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.WEB-INF.gui.common.init.applicationInitialisierung.xhtml Maven / Gradle / Ivy

Go to download

Die IsyFact-Standards bilden das architektonische, technologische und methodische Fundament der IsyFact. Sie umfassen allgemeingültige und wiederverwendbare Konzepte und Komponenten, die für die Entwicklung beliebiger Fachanwendungen relevant sind.

There is a newer version: 6.2.0
Show newest version


    
    
    
        
        
        	function isBrowserversionUnterstuetzt(ieMinimaleVersion) {
    			// UserAgent, bspw:
    			// IE 10 (Win7): Mozilla/5.0 (compatible; MSIE 10.0; Windows NT 6.1; WOW64; Trident/6.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)
    			// IE 8  (Win7): Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)
    			// IE 7  (Win7): Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.1; WOW64; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; .NET4.0C; .NET4.0E; MS-RTC LM 8)
    			// FF 31 (Win7): Mozilla/5.0 (Windows NT 6.1; WOW64; rv:31.0) Gecko/20100101 Firefox/31.0
    			var userAgent = window.navigator.userAgent;
    			var internetExplorerStringPosition = userAgent.indexOf("MSIE ");
    			if (internetExplorerStringPosition != -1){
    				var aktuelleVersionSubString = userAgent.substring(internetExplorerStringPosition+5, userAgent.indexOf(".", internetExplorerStringPosition));
    				var aktuelleVersion = parseInt(aktuelleVersionSubString);
    				if(aktuelleVersion >= ieMinimaleVersion){
    					return true;
    				}
    				return false;
    			}
				return true;
    		}
        
    		var browserFuerJavascriptUnterstuetzt = isBrowserversionUnterstuetzt(9); 
			if(browserFuerJavascriptUnterstuetzt){
				// Javascript-Support
            	window.location.replace("?javascriptAktiviert=true&urspruenglicheAnfrageUrl=${urspruenglicheAnfrageUrl}");
			}
			else{
				// Kein Javascript-Support
				window.location.replace("?javascriptAktiviert=false&urspruenglicheAnfrageUrl=${urspruenglicheAnfrageUrl}");
			}
        
    

    
    

        
    














© 2015 - 2024 Weber Informatics LLC | Privacy Policy