• DELETE FROM KEYWORDS WHERE ID_DOMAINE=361892
  • DoneDoneDone

    URL:www.qual.ch

    Connection: keep-alive
    Date: Thu, 31 Oct 2024 14:23:23 GMT
    Content-Length: 169
    Content-Type: text/html
    Location: https://pacs.cird.ch
    Server: nginx/1.22.1
    
    
    Location => https://pacs.cird.ch
    Status => 301
    <html>
    <head><title>301 Moved Permanently</title></head>
    

    (vide) Tentative en https

    https://pacs.cird.ch

    <!DOCTYPE html>
    <html ng-app="my-login-page">
        <head>
            <!-- Header -->
            <meta http-equiv="Content-type" content="text/html; charset=UTF-8"/>
            <title >GXD5 Pacs - Connexion utilisateur</title>
            <!-- Meta -->
            <meta name="language" content="fr" />
            <meta name="Robots" content="index, nofollow" />
            <!-- Favicon -->
            <link  rel="shortcut icon" type="image/x-icon" href="/favicon.ico" />
            <link  rel="icon" type="image/png" href="/favicon.png" />
            <!-- Apple Device -->
            <meta name="viewport" content="width=device-width, user-scalable=no" />
            <meta name="apple-mobile-web-app-capable" content="no" />
            <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
    
            <link rel="stylesheet" type="text/css" href="src/css/jQuery/jQuery-UI.css">
            <link rel="stylesheet" type="text/css" href="lib/bootstrap3.3.7/bootstrap.min.css">
            <link rel="stylesheet" type="text/css" href="share/acces_dossier/patient/dist/css/styles.css">
            <!-- CSS -->
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/style.css" />
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/jQuery/jQuery-UI.css" />
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/login/cookie.css" />
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/barreOutils/part.css" />
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/barreOutils/main.css.php?theme=dark" />
        <link rel="stylesheet" type="text/css" href="/diam4/src/css/login/mobile.css" />
            <script type="text/javascript" src="src/js/jQuery/jquery-2.1.0.js"></script>
            <script type="text/javascript" src="lib/bootstrap3.3.7/bootstrap.min.js"></script>
            <script type="text/javascript" src="lib/angular/angular.min.js"></script>
            <script type="text/javascript" src="/lib/angular/angular-cookies.min.js"></script>
            <script type="text/javascript" src="lib/datetime-pollyfill-translated.php"></script>
            <!-- JS -->
        <script type="text/javascript" src="/diam4/src/js/jQuery/jquery-1.8.2.js?1672938077"></script>
        <script type="text/javascript" src="/diam4/src/js/jQuery/jquery-ui-1.9.0.custom.js?1672938080"></script>
        <script type="text/javascript" src="/diam4/src/js/javascript.js?1672938083"></script>
        <script type="text/javascript" src="/diam4/src/js/jQuery/jquery-2.1.0.js?1672938078"></script>
        <script type="text/javascript" src="/diam4/src/js/login/cookie.js?1672938083"></script>
            <script type="text/javascript">
    
    			var embedded                               = false;
                var ACCES_DOSSIER_LAUNCH_UNIVIEW_DIRECTLY  = 0;
    			var displayTries                           = true;
    			var loginErrorOccured                      = getCookieBooleanValue( 'LOGIN_ERROR_OCCURED' );
    
                device_detected_js = "Undefined";
                error_login_msg_js = "";
                force_web_js = "false";
                DOT_POSITION_IN_AN_js = -1;
                date_format_js = "DD/MM/YYYY";
                if(Date){
                    today = new Date();
                    current_full_year = today.getFullYear();
                }else{
                    current_full_year = 1901;
                    console.log("Erreur de l'API JS : Date n'existe pas.");
                }
                current_short_year = (current_full_year - 2000 <0) ? current_short_year - 1900 : current_full_year - 2000;
    
                /**
                 * Reformat the date in access folder login view.
                 * @param String date_in is a date formatted like this dd/mm/yy or dd/mm/yyyy (dd and mm are switched in en_EN)
                 * @return String the date well formatted (dd/mm/yyyy)
                 */
                date_reformat = function (date_in) {
                    var date_elts = date_in.match(/([0-9]{2})[-\/]([0-9]{2})[-\/]([12][0-9]{3})/);
                    var date_elts_short = date_in.match(/([0-9]{2})[-\/]([0-9]{2})[-\/]00([0-9]{2})/);
                    if(date_elts!==null){
                        console.log("date reformated " + date_elts[1] + '/' + date_elts[2] + '/' + date_elts[3]);
                        var el = top.document.getElementById("dialogForServiceMessageDisplay");
                        if(el!== null){
                          el.style.display = "none";
                        }
                        return date_elts[1] + '/' + date_elts[2] + '/' + date_elts[3];
                    }else if(date_elts_short!==null){//when the user use the two lasts digits for the year
                        if(date_elts_short[3] <= current_short_year){
                            return date_elts_short[1] + '/' + date_elts_short[2] + '/20' + date_elts_short[3];
                        }else{
                            return date_elts_short[1] + '/' + date_elts_short[2] + '/19' + date_elts_short[3];
                        }
                    }else{
                        return "01/01/1789" /*nobody DOF for the case where the date is not well formed*/;
                    }
                };
    
                AN_reformat = function(AN_in){
                    if(typeof AN_in == "string" && AN_in.slice(0,3)=="Err"){
                        console.log("The variable DOT_POSITION_IN_AN doesn't exists in this version of the PACS. Please update your PACS database.");
                        return AN_in;
                    }
                    if(DOT_POSITION_IN_AN_js < 0){
                        console
                        return AN_in;
                    }
                    var AN = AN_in.replace(/[^a-z_0-9]/gi,"");//remove unaccepted characters from the AN.
                    return [AN.slice(0, DOT_POSITION_IN_AN_js), ".", AN.slice(DOT_POSITION_IN_AN_js)].join('');
                };
    
    
                // Angular things
                var app = angular.module("my-login-page", ["datetime",'ngCookies']);
                app.controller("myCtrl", ['$scope','$cookies', function($scope,$cookies) {
                    $scope.logintype = "staff";
                    $scope.enable_old_acces_dossier = "0";
                    $scope.device_detected = device_detected_js;
                    $scope.mydevicetype = device_detected_js;
    
                    $scope.set_device = function(device){
                        $scope.mydevicetype = device;
                    };
    
                    $scope.get_color_body = function(theme){
                      if(theme == "dark")
                        return {'background-color':'#343a40'};
                      if(theme == "dark_eos")
                        return {'background-color':'white'};
                    };
    
                    $scope.get_style_form = function(theme){
                      if(theme == "dark")
                      return {
                        'background': '#ecf0f1',
                        'box-shadow': '5px 5px 5px 5px rgba(0, 0, 0, 0.7), -7px 15px 15px rgba(255, 255, 255, 0.3) inset',
                        'border-radius': '4px 0'
                      };
                      if(theme == "dark_eos")
                        return {
                          'background':'white',
    
                          'border-radius': '10px'
                        };
                    };
    
                    $scope.get_style_button = function(theme){
                      return {
                          'background-color': '#4CC0DF',
                          'color': 'white',
                          'border-color': '#4CC0DF'
                        };
                    };
    
                    if (force_web_js == "true" || device_detected_js == "Undefined"){
                        $scope.set_device('Web');
                    }
                    $scope.date_changed = function(){
                        var date_ = $('[name=input_date_naissance]').val();
                        if(date_.match(/([0-9]{2})[-\/]([0-9]{2})[-\/]00([0-9]{2})/) !== null){
                            $('[name=input_date_naissance]').val(date_reformat(date_));
                        }
                    };
                    $scope.AN_update = function(){
                        var val_before = $('[name=accession_number]').val();
                        var an_formatted="";
                        if(val_before.length > DOT_POSITION_IN_AN_js){
                            an_formatted = AN_reformat(val_before);
                        }else{
                            an_formatted = val_before;
                        }
                        $('[name=accession_number]').val(an_formatted);
                    };
                    $scope.force_web_s = force_web_js;
                    $scope.input_date_naissance = "";
                    $scope.error_login_msg = error_login_msg_js;
                    $scope.displayTries = displayTries;
    				$scope.loginErrorOccured = loginErrorOccured;
                    $scope.use_ladp = ("no" == "yes");
                    $scope.hide_error_msg = function(){
                        $('#error_message').html("");
                    };
                    $scope.connect = function($form){
    					setCookiesAccepted();
                        if ($scope.logintype === 'patient'){
                            // PATIENT login type is used
                            var url_action = "";
                            if ( $('[name=accession_number]').val() == "" ){
                                return false;
                            }
                            switch ($scope.mydevicetype) {
                                case 'Pad':
                                    if( $scope.enable_old_acces_dossier == "1" ){
                                        url_action = "/acces_dossier/index.php?deviceChooser=Pad";
                                    }
                                    else{
                                      url_action = "/acces_dossier/patient/index.php?ifce_type=staff";
                                    }
                                    $('[name=loginForm]').attr("action", url_action );
                                    break;
                                case 'Touch':
                                    if( $scope.enable_old_acces_dossier == "1" ){
                                        url_action = "/acces_dossier/index.php?deviceChooser=Touch";
                                    }
                                    else{
                                      url_action = "/acces_dossier/patient/index.php?ifce_type=staff";
                                    }
    
                                    $('[name=loginForm]').attr("action", url_action );
                                    break;
                                case 'Web':
                                    if( embedded )
                                    {
                                        url_action = "/acces_dossier/acces_dossier.php?deviceChooser=Web&use_session=1";
                                    }
                                    else
                                    {
                                        if( ACCES_DOSSIER_LAUNCH_UNIVIEW_DIRECTLY )
                                        {
                                            url_action = "/acces_dossier/index.php?deviceChooser=Web";
                                        }
                                        else
                                        {
                                           if( $scope.enable_old_acces_dossier == "1" ){
                                              url_action = "/acces_dossier/acces_dossier.php?deviceChooser=Web";
                                           }
                                           else{
                                              url_action = "/acces_dossier/patient/index.php?ifce_type=staff";
                                           }
                                        }
                                    }
                                    $('[name=loginForm]').attr("action", url_action + "&ifce_type=staff");
                                    break;
    
                                    default:
                                    if( $scope.enable_old_acces_dossier == "1" ){
                                        url_action = "/acces_dossier/acces_dossier.php?deviceChooser=Web";
                                    }
                                    else{
                                        url_action = "/acces_dossier/patient/index.php?ifce_type=staff";
                                    }
    
                                    $('[name=loginForm]').attr("action", url_action);
                                    break;
                            }
                            $('[name=date_naissance]').val(date_reformat($('[name=input_date_naissance]').val()));
                            // Post the login form
                            $('[name=loginForm]').submit();
                        } else {
                            // PHYSICIAN (ie Staff) login type is used
                            if ($form.$valid) {
                                // Store the device & interface type parameters
                                $('[name=saveDevice]').val($scope.mydevicetype);
                                $('[name=loginType]').val($scope.logintype);
                                // Store login
                                $('input[id=login]').attr("name", "loginName");
                                // Store post action URL
                                $('[name=loginForm]').attr("action", "authenticate.php?");
                                // Post the login form
                                $('[name=loginForm]').submit();
                            }
                        }
                    };
                    $scope.hasLogo = Boolean("");
                }]);
            </script>
    		<style>
    			.form-signin button[name=Connexion_], div.cookieMsg > .btnOK, div.cookiesPolicy .btnOK
    			{
    				background-color : #4CC0DF;
    				border-color     : #4CC0DF;
    			}
    		</style>
        </head>
        
  • 31/10/2024 15:23:19: delta titre foireux
  • GXD5 Pacs - Connexion utilisateur

    Recherche META Description de la page

    Recherche META Keywords de la page

    UPDATE DOMAINES SET server='nginx/1.22.1',redirection='https://pacs.cird.ch',Status='200',err='',[TITRE]=N'GXD5 Pacs - Connexion utilisateur',[DESCRIPTION]=N'',[KEYWORDS]=N'' WHERE id=361892
  • 0

    GXD5 Pacs - Connexion utilisateur

  • 0. GXD5 (4)
  • --------->0
  • 1. Pacs (4)
  • --------->0
  • 2. - (1)
  • --------->0
  • 3. Connexion (9)
  • --------->0
  • 4. utilisateur (11)
  • --------->0
    INSERT INTO KEYWORDS (keyword,id_domaine) VALUES (N'GXD5',361892),(N'Pacs',361892),(N'-',361892),(N'Connexion',361892),(N'utilisateur',361892)