Subversion Repositories oidplus

Rev

Rev 122 | Rev 127 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 122 Rev 126
Line 85... Line 85...
85
        <link rel="stylesheet" href="oidplus.min.css.php">
85
        <link rel="stylesheet" href="oidplus.min.css.php">
86
        <link rel="stylesheet" href="3p/bootstrap/css/bootstrap.min.css">
86
        <link rel="stylesheet" href="3p/bootstrap/css/bootstrap.min.css">
87
 
87
 
88
        <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
88
        <link rel="shortcut icon" type="image/x-icon" href="img/favicon.ico">
89
 
89
 
90
        <!-- <link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.css" /> -->
90
        <!-- DM 28 May 2019: Removed CookieConsent temporarily, because it is placed at the beginning of the page and therefore ruins the Google index ... -->
91
        <!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> -->
91
        <!-- We might not need it, because cookies are only set during login, and at the login page we already warn about cookies -->
-
 
92
        <!-- TODO: Bring back? -->
92
        <link rel="stylesheet" type="text/css" href="3p/cookieconsent/cookieconsent.min.css">
93
        <!-- <link rel="stylesheet" type="text/css" href="3p/cookieconsent/cookieconsent.min.css">
93
        <script src="3p/cookieconsent/cookieconsent.min.js"></script>
94
        <script src="3p/cookieconsent/cookieconsent.min.js"></script>
94
        <script>
95
        <script>
95
                window.addEventListener("load", function(){
96
                window.addEventListener("load", function(){
96
                window.cookieconsent.initialise({
97
                window.cookieconsent.initialise({
97
                        "palette": {
98
                        "palette": {
Line 103... Line 104...
103
                                        "background": "#4b81e8"
104
                                        "background": "#4b81e8"
104
                                }
105
                                }
105
                        },
106
                        },
106
                        "position": "bottom-right"
107
                        "position": "bottom-right"
107
                })});
108
                })});
108
        </script>
109
        </script> -->
109
</head>
110
</head>
110
 
111
 
111
<body>
112
<body>
112
 
113
 
113
<div id="frames">
114
<div id="frames">
114
        <div id="system_title_bar">
-
 
115
                <div id="system_title_menu" onclick="mobileNavButtonClick(this)" onmouseenter="mobileNavButtonHover(this)" onmouseleave="mobileNavButtonHover(this)">
-
 
116
                        <div id="bar1"></div>
-
 
117
                        <div id="bar2"></div>
-
 
118
                        <div id="bar3"></div>
-
 
119
                </div>
-
 
120
 
-
 
121
                <div id="system_title_text">
-
 
122
                        <a <?php echo oidplus_link('oidplus:system'); ?>>
-
 
123
                                <span id="system_title_1">ViaThinkSoft OIDplus 2.0</span><br>
-
 
124
                                <span id="system_title_2"><?php echo htmlentities(OIDplus::config()->systemTitle()); ?></span>
-
 
125
                        </a>
-
 
126
                </div>
-
 
127
        </div>
-
 
128
 
-
 
129
        <div id="oidtree" class="borderbox">
-
 
130
                <!-- <noscript>
-
 
131
                        <p><b>Please enable JavaScript to use all features</b></p>
-
 
132
                </noscript> -->
-
 
133
                <?php OIDplusTree::nonjs_menu(); ?>
-
 
134
        </div>
-
 
135
 
-
 
136
        <div id="content_window" class="borderbox">
115
        <div id="content_window" class="borderbox">
137
                <?php
116
                <?php
138
                $static_content = preg_replace_callback(
117
                $static_content = preg_replace_callback(
139
                        '|<a\s([^>]*)href="mailto:([^"]+)"([^>]*)>([^<]*)</a>|ismU',
118
                        '|<a\s([^>]*)href="mailto:([^"]+)"([^>]*)>([^<]*)</a>|ismU',
140
                        function ($treffer) {
119
                        function ($treffer) {
Line 152... Line 131...
152
                        echo '</p>';
131
                        echo '</p>';
153
                }
132
                }
154
                echo '<br>';
133
                echo '<br>';
155
                ?>
134
                ?>
156
        </div>
135
        </div>
-
 
136
 
-
 
137
        <div id="system_title_bar">
-
 
138
                <div id="system_title_menu" onclick="mobileNavButtonClick(this)" onmouseenter="mobileNavButtonHover(this)" onmouseleave="mobileNavButtonHover(this)">
-
 
139
                        <div id="bar1"></div>
-
 
140
                        <div id="bar2"></div>
-
 
141
                        <div id="bar3"></div>
-
 
142
                </div>
-
 
143
 
-
 
144
                <div id="system_title_text">
-
 
145
                        <a <?php echo oidplus_link('oidplus:system'); ?>>
-
 
146
                                <span id="system_title_1">ViaThinkSoft OIDplus 2.0</span><br>
-
 
147
                                <span id="system_title_2"><?php echo htmlentities(OIDplus::config()->systemTitle()); ?></span>
-
 
148
                        </a>
-
 
149
                </div>
-
 
150
        </div>
-
 
151
 
-
 
152
        <div id="oidtree" class="borderbox">
-
 
153
                <!-- <noscript>
-
 
154
                        <p><b>Please enable JavaScript to use all features</b></p>
-
 
155
                </noscript> -->
-
 
156
                <?php OIDplusTree::nonjs_menu(); ?>
-
 
157
        </div>
157
</div>
158
</div>
158
 
159
 
159
</body>
160
</body>
160
</html>
161
</html>
161
<?php
162
<?php