/usr/share/stellarium/webroot/index.html is in stellarium-data 0.15.0-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 | <!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title><?= tr("Stellarium remote control plugin")?></title>
<link type="text/css" rel="stylesheet" href="/external/jquery-ui.css"/>
<link type="text/css" rel="stylesheet" href="style.css" />
<!-- Stellarium uses require.js to provide a controlled module environment -->
<script data-main="js/main" src="js/require.js" type="text/javascript"></script>
</head>
<body>
<!-- initial loading overlay -->
<div id="loadoverlay" class="ui-widget-overlay">
<div class="loadwrapper">
<div class="loadinner textcenter">
<img src="images/stellariumlarge.png" alt="Stellarium logo" class="display-block margin-auto"/>
<div class="margin-auto"><?= tr("Please wait, loading")?></div>
<noscript><p class="ui-state-error">This remote control requires JavaScript and a reasonably modern browser.<br/>For further information, here are <a href="http://www.enable-javascript.com/" target="_blank">
instructions how to enable JavaScript in your web browser</a></p></noscript>
</div>
</div>
</div>
<div id="wrapper" class="ui-corner-all ui-widget-content">
<header>
<img src="images/stellarium.png" alt="Stellarium logo"/>
<h1><?= tr("Stellarium remote control")?></h1>
</header>
<div id="tabs">
<ul>
<li><a href="#tab_main"><?= tr("Main controls")?></a></li>
<li><a href="#tab_selection"><?= tr("Selection")?></a></li>
<li><a href="#tab_view"><?= tr("Sky")?></a></li>
<li><a href="#tab_dso"><?= tr("DSO")?></a></li>
<li><a href="#tab_landscape"><?= tr("Landscape")?></a></li>
<li><a href="#tab_skyculture"><?= tr("Starlore")?></a></li>
<li><a href="#tab_actions"><?= tr("Actions and scripts")?></a></li>
<li><a href="#tab_location"><?= tr("Location")?></a></li>
<li><a href="#tab_projection"><?= tr("Projection")?></a></li>
</ul>
<div id="tab_main">
<div class="flex">
<!-- part of ui/time.js -->
<section id="time" class="block flex-noshrink">
<header><h2><?= tr("Time")?></h2></header>
<div id="timewidget">
<ul>
<li><a href="#time_local"><?= tr("Date and Time")?></a></li>
<li><a href="#time_jday"><?= tr("Julian Day")?></a></li>
</ul>
<div id="time_local" class="timetab">
<p class="timedisplay">
<input id="date_year" class="spinner" data-type="date" data-field="year" data-min="-100000" data-max="100000"/>
/
<input id="date_month" class="spinner" data-type="date" data-field="month" data-min="0" data-max="13"/>
/
<input id="date_day" class="spinner" data-type="date" data-field="day" data-min="0" data-max="32"/>
</p>
<p class="timedisplay">
<input id="time_hour" class="spinner" data-type="time" data-field="hour" data-min="-1" data-max="24"/>
:
<input id="time_minute" class="spinner" data-type="time" data-field="minute" data-min="-1" data-max="60"/>
:
<input id="time_second" class="spinner" data-type="time" data-field="second" data-min="-1" data-max="60"/>
</p>
</div>
<div id="time_jday" class="timetab">
<div>
<p class="timedisplay"><label for="input_jd">JD: </label><input id="input_jd" class="spinner" data-min="-100000000" data-max="100000000" data-step="0.00001"/></p>
<p class="timedisplay"><label for="input_mjd">MJD: </label><input id="input_mjd" class="spinner" data-min="-100000000" data-max="100000000" data-step="0.00001"/></p>
</div>
</div>
</div>
<p class="textcenter">ΔT = <span id="deltat"></span></p>
<div id="mainbuttons">
<ul id="timecontrols" class="ui-corner-all ui-widget-content button32list">
<li title="Decrease time speed"><button id="bt_timerewind" class="icon32 btTimeRewind"></button></li><li title="Pause"><button id="bt_timeplaypause" class="icon32 btTimeRealtime"></button></li><li title="Set time to now"><button id="bt_timenow" class="icon32 btTimeNow"></button></li><li title="Increase time speed"><button id="bt_timeforward" class="icon32 btTimeForward"></button></li>
</ul>
</div>
</section>
<section id="timejump" class="block">
<header><h2><?= tr("Time jumps")?></h2></header>
<div id="timejumplist">
<!-- buttons get created using JS code -->
<ul>
<li data-next="actionAdd_Solar_Hour" data-prev="actionSubtract_Solar_Hour"><?= tr("Solar hour")?></li>
<li data-next="actionAdd_Solar_Day" data-prev="actionSubtract_Solar_Day"><?= tr("Solar day")?></li>
<li data-next="actionAdd_Solar_Week" data-prev="actionSubtract_Solar_Week"><?= tr("Solar week")?></li>
<li data-next="actionAdd_Sidereal_Day" data-prev="actionSubtract_Sidereal_Day"><?= tr("Sidereal day")?></li>
<li data-next="actionAdd_Sidereal_Year" data-prev="actionSubtract_Sidereal_Year"><?= tr("Sidereal year")?></li>
<li data-next="actionAdd_Sidereal_Century" data-prev="actionSubtract_Sidereal_Century"><?= tr("Sidereal century")?></li>
<li data-next="actionAdd_Synodic_Month" data-prev="actionSubtract_Synodic_Month"><?= tr("Synodic month")?></li>
<li data-next="actionAdd_Draconic_Month" data-prev="actionSubtract_Draconic_Month"><?= tr("Draconic month")?></li>
<li data-next="actionAdd_Draconic_Year" data-prev="actionSubtract_Draconic_Year"><?= tr("Draconic year")?></li>
<li data-next="actionAdd_Gaussian_Year" data-prev="actionSubtract_Gaussian_Year"><?= tr("Gaussian year")?></li>
</ul>
<ul>
<li data-next="actionAdd_Anomalistic_Month" data-prev="actionSubtract_Anomalistic_Month"><?= tr("Anomalistic month")?></li>
<li data-next="actionAdd_Anomalistic_Year" data-prev="actionSubtract_Anomalistic_Year"><?= tr("Anomalistic year")?></li>
<li data-next="actionAdd_Anomalistic_Century" data-prev="actionSubtract_Anomalistic_Century"><?= tr("Anomalistic century")?></li>
<li data-next="actionAdd_Mean_Tropical_Month" data-prev="actionSubtract_Mean_Tropical_Month"><?= tr("Mean tropical month")?></li>
<li data-next="actionAdd_Mean_Tropical_Year" data-prev="actionSubtract_Mean_Tropical_Year"><?= tr("Mean tropical year")?></li>
<li data-next="actionAdd_Mean_Tropical_Century" data-prev="actionSubtract_Mean_Tropical_Century"><?= tr("Mean tropical century")?></li>
<li data-next="actionAdd_Tropical_Year" data-prev="actionSubtract_Tropical_Year"><?= tr("Tropical year")?></li>
<li data-next="actionAdd_Julian_Year" data-prev="actionSubtract_Julian_Year"><?= tr("Julian year")?></li>
<li data-next="actionAdd_Julian_Century" data-prev="actionSubtract_Julian_Century"><?= tr("Julian century")?></li>
</ul>
</div>
</section>
<!-- part of ui/viecontrol.js -->
<section id="view" class="block textcenter">
<header><h2><?= tr("View")?></h2></header>
<div id="view_controls" class="ui-corner-all ui-widget-content">
<div id="view_upleft" class="joybutton"><?= tr("Up/Left")?></div><div id="view_up" class="joybutton"><?= tr("Up")?></div><div id="view_upright" class="joybutton"><?= tr("Up/Right")?></div><div id="view_left" class="joybutton"><?= tr("Left")?></div><div id="view_center" class="joybutton" title='<?= tr("Focus on selected object")?>'><?= tr("Focus on selection")?></div><div id="view_right" class="joybutton"><?= tr("Right")?></div><div id="view_downleft" class="joybutton"><?= tr("Down/Left")?></div><div id="view_down" class="joybutton"><?= tr("Down")?></div><div id="view_downright" class="joybutton"><?= tr("Down/Right")?></div>
</div>
<div id="view_wrapper">
<div id="view_fov"></div>
<p title='<?= tr("Field of view")?>'>FOV: <span id="view_fov_text"></span></p>
<p><?= tr("Projection")?>: <span id="view_projection"></span></p>
</div>
</section>
</div>
</div>
<div id="tab_selection">
<div class="flex flex-wrap">
<!-- part of ui/search.js -->
<section id="search" class="block">
<header><h2><?= tr("Search")?></h2></header>
<div id="srch_tabs">
<ul>
<li><a href="#srch_tab_object"><?= tr("Object")?></a></li>
<li><a href="#srch_tab_list"><?= tr("Lists")?></a></li>
</ul>
<div id="srch_tab_object">
<form class="flex">
<input id="srch_input" class="flex-expand" type="text" placeholder='<?= tr("Enter search term. Use TAB to navigate results.")?>' autocomplete="off"/>
<button id="srch_button" type="submit"><?= tr("Select and focus")?></button>
</form>
<div>
<div id="srch_results"></div>
</div>
<p id="srch_simbad_text">Simbad: <span id="srch_simbad"><?= tr("idle")?></span>
</p>
<div id="srch_greek">
<div>
<button>α</button><button>β</button><button>γ</button><button>δ</button><button>ε</button><button>ζ</button><button>η</button><button>θ</button><button>ι</button><button>κ</button><button>λ</button><button>μ</button>
</div>
<div>
<button>ν</button><button>ξ</button><button>ο</button><button>π</button><button>ρ</button><button>σ</button><button>τ</button><button>υ</button><button>φ</button><button>χ</button><button>ψ</button><button>ω</button>
</div>
</div>
</div>
<div id="srch_tab_list">
<div class="flex flex-column" style="height: 100%">
<div class="flex">
<select id="srch_list_objecttype" class="flex-expand"></select>
<input id="srch_list_english" type="checkbox" /><label for="srch_list_english"><?= tr("names in English")?></label>
</div>
<select id="srch_list_objectlist" class="scrollselect flex-expand" size="10"></select>
</div>
</div>
</div>
<div id="quickselect">
<h2><?= tr("Quick select")?></h2>
<ul class="ui-corner-all ui-widget-content button32list">
<!-- to add a new quick select button, simply add a new button with the english name of the object as value -->
<!-- try not to add whitespace between li items (inline-block layout uglyness) -->
<li><button title='<?= tr("Sun")?>' value="Sun">☉</button></li><li><button title='<?= tr("Mercury")?>' value="Mercury">☿</button></li><li><button title='<?= tr("Venus")?>' value="Venus">♀</button></li><li><button title='<?= tr("Earth")?>' value="Earth">♁</button></li><li><button title='<?= tr("Moon")?>' value="Moon">☽</button></li><li><button title='<?= tr("Mars")?>' value="Mars">♂</button></li><li><button title='<?= tr("Jupiter")?>' value="Jupiter">♃</button></li><li><button title='<?= tr("Saturn")?>' value="Saturn">♄</button></li><li><button title='<?= tr("Uranus")?>' value="Uranus">♅</button></li><li><button title='<?= tr("Neptune")?>' value="Neptune">♆</button></li><li><button title='<?= tr("Pluto")?>' value="Pluto">♇</button></li>
</ul>
<!-- an empty value will deselect -->
<button class="jquerybutton" value=""><?= tr("Clear selection")?></button>
</div>
</section>
<!-- part of ui/mainui.js -->
<section id="selection" class="block flex-expand">
<header><h2><?= tr("Current selection")?></h2></header>
<span id="sel_infostring"></span>
</section>
</div>
</div>
<!-- handled by ui/viewoptions.js -->
<div id="tab_view">
<div class="flex flex-wrap">
<div id="vo_stars" class="smallblock blocklabel">
<h3><?= tr("Stars")?></h3>
<div class="table">
<!-- inputs with stelproperty class are automatically connected by mainui.js -->
<p><label for="stars_absoluteScale"><?= tr("Absolute scale:")?></label><input id="stars_absoluteScale" class="spinner stelproperty" name="StelSkyDrawer.absoluteStarScale" data-min="0" data-max="9" data-step="0.1" data-numberformat="n2"/></p>
<p><label for="stars_relativeScale"><?= tr("Relative scale:")?></label><input id="stars_relativeScale" class="spinner stelproperty" name="StelSkyDrawer.relativeStarScale" data-min="0.25" data-max="5" data-step="0.05" data-numberformat="n2"/></p>
<p><label for="stars_milkywayintensity"><?= tr("Milky Way brightness:")?></label><input id="stars_milkywayintensity" class="spinner stelproperty" name="MilkyWay.intensity" data-min="0" data-max="10" data-step="0.1" data-numberformat="n2"/></p>
<p><label for="stars_zodiacintensity"><?= tr("Zodiacal Light brightness:")?></label><input id="stars_zodiacintensity" class="spinner stelproperty" name="ZodiacalLight.intensity" data-min="0" data-max="10" data-step="0.1" data-numberformat="n2"/></p>
<p><label><input class="stelproperty" name="StelSkyDrawer.flagTwinkle" type="checkbox"/><?= tr("Twinkle:")?></label><input class="spinner stelproperty" name="StelSkyDrawer.twinkleAmount" data-min="0" data-max="1.5" data-step="0.1" data-numberformat="n2"/></p>
<p><label><input class="stelproperty" name="StelSkyDrawer.flagStarMagnitudeLimit" type="checkbox"/><?= tr("Limit magnitude:")?></label><input class="spinner stelproperty" name="StelSkyDrawer.customStarMagLimit" data-min="0" data-max="21" data-step="0.1" data-numberformat="n2"/></p>
</div>
<label><input class="stelproperty" name="StelSkyDrawer.flagLuminanceAdaptation" type="checkbox"/><?= tr("Dynamic eye adaptation")?></label>
<div class="flex flex-baseline">
<label><input type="checkbox" class="stelaction" name="actionShow_Stars_Labels"/><?= tr("Labels and Markers")?></label><div class="slider stelproperty flex-expand" data-prop="StarMgr.labelsAmount" data-min="0" data-max="10" data-step="0.1"></div>
</div>
</div>
<div class="smallblock blocklabel">
<h3><?= tr("Planets and satellites")?></h3>
<label><input type="checkbox" class="stelaction" name="actionShow_Planets" /><?= tr("Show Solar System objects")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Planets_Hints" /><?= tr("Show planet markers")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Planets_Orbits" /><?= tr("Show planet orbits")?></label>
<label><input class="stelproperty" name="SolarSystem.flagIsolatedOrbits" type="checkbox"/><?= tr("Show orbit for selected planet")?></label>
<label><input class="stelproperty" name="SolarSystem.flagIsolatedTrails" type="checkbox"/><?= tr("Show trail only for selected planet")?></label>
<label><input class="stelproperty" name="SolarSystem.flagLightTravelTime" type="checkbox"/><?= tr("Simulate light speed")?></label>
<div class="table">
<p><label><input class="stelproperty" name="SolarSystem.flagMoonScale" type="checkbox"/><?= tr("Scale Moon:")?></label><input class="spinner stelproperty" name="SolarSystem.moonScale" data-min="1" data-max="20" data-step="0.1" data-numberformat="n2"/></p>
<p><label><input class="stelproperty" name="StelSkyDrawer.flagPlanetMagnitudeLimit" type="checkbox"/><?= tr("Limit magnitude:")?></label><input class="spinner stelproperty" name="StelSkyDrawer.customPlanetMagLimit" data-min="0" data-max="22" data-step="0.1" data-numberformat="n2"/></p>
</div>
<label><input class="stelproperty" name="LandscapeMgr.flagLandscapeAutoSelection" type="checkbox"/><?= tr("Auto select landscapes")?></label>
<div class="flex flex-baseline">
<label><input type="checkbox" class="stelaction" name="actionShow_Planets_Labels"/><?= tr("Labels and Markers")?></label><div class="slider stelproperty flex-expand" data-prop="SolarSystem.labelsAmount" data-min="0" data-max="10" data-step="0.1"></div>
</div>
</div>
<div class="smallblock">
<h3><label><input type="checkbox" class="stelaction valign-middle" name="actionShow_Atmosphere"/><?= tr("Atmosphere")?></label></h3>
<label><input type="checkbox" class="stelaction" name="actionShow_LightPollution_Database" /><?= tr("Light pollution data from locations database")?></label>
<div class="table">
<p><label for="atmosphere_bortlescaleindex"><?= tr("Light pollution:")?></label><input id="atmosphere_bortlescaleindex" class="spinner stelproperty" name="StelSkyDrawer.bortleScaleIndex" data-min="1" data-max="9" data-step="1" data-numberformat="n0"/></p>
</div>
<div id="vo_refraction" class="innerblock">
<h3><?= tr("Refraction Settings")?></h3>
<div class="table">
<p><label for="atmosphere_pressure"><?= tr("Pressure (mbar):")?></label><input id="atmosphere_pressure" class="spinner stelproperty" name="StelSkyDrawer.atmospherePressure" data-min="0" data-max="1500" data-step="1" data-numberformat="n2"/></p>
<p><label for="atmosphere_temperature"><?= tr("Temperature (C):")?></label><input id="atmosphere_temperature" class="spinner stelproperty" name="StelSkyDrawer.atmosphereTemperature" data-min="-100" data-max="100" data-step="1" data-numberformat="n1"/></p>
<p><label for="atmosphere_extinction"><?= tr("Extinction Coefficient:")?></label><input id="atmosphere_extinction" class="spinner stelproperty" name="StelSkyDrawer.extinctionCoefficient" data-min="0" data-max="3" data-step="0.01" data-numberformat="n2"/></p>
</div>
</div>
<div class="innerblock flex flex-baseline">
<h3><?= tr("Shooting Stars")?></h3>
<label><?= tr("ZHR:")?></label>
<div class="slider stelproperty flex-expand" data-prop="SporadicMeteorMgr.zhr" data-min="0" data-max="240000" data-step="1"></div>
<span class="stelproperty" style="margin-left: 5px; min-width: 48px;" data-prop="SporadicMeteorMgr.zhr"></span>
</div>
</div>
<div class="smallblock flex">
<h3><?= tr("Markings")?></h3>
<div id="vo_markers_boxes" class="innerblock">
<h3><?= tr("Celestial Sphere")?></h3>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_Equatorial_J2000_Grid" /><?= tr("Equatorial grid (J2000)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Equatorial_Grid" /><?= tr("Equatorial grid (of date)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Ecliptic_J2000_Grid" /><?= tr("Ecliptic grid (J2000)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Ecliptic_Grid" /><?= tr("Ecliptic grid (of date)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Azimuthal_Grid" /><?= tr("Azimuthal grid")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Galactic_Grid" /><?= tr("Galactic grid")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Cardinal_Points" /><?= tr("Cardinal points")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Prime_Vertical_Line" /><?= tr("Prime Vertical")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Precession_Circles" /><?= tr("Precession circles")?></label>
</div>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_Equator_J2000_Line" /><?= tr("Equator (J2000)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Equator_Line" /><?= tr("Equator (of date)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Ecliptic_J2000_Line" /><?= tr("Ecliptic (J2000)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Ecliptic_Line" /><?= tr("Ecliptic (of date)")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Horizon_Line" /><?= tr("Horizon")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Galactic_Equator_Line" /><?= tr("Galactic equator")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Meridian_Line" /><?= tr("Meridian")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Colure_Lines" /><?= tr("Colures")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Longitude_Line" /><?= tr("O./C. longitude")?></label>
</div>
</div>
</div>
</div>
</div>
<div id="tab_dso">
<div class="flex flex-wrap">
<div id="vo_dsocatalog" class="smallblock">
<h3><?= tr("Display objects from catalogs")?></h3>
<!-- give the checkboxes the flag values -->
<div class="inline-block blocklabel">
<label title='<?= tr("Messier Catalogue")?>'>
<input type="checkbox" value="0x0004" /><?= tr("M")?>
</label>
<label title='<?= tr("Index Catalogue of Nebulae and Clusters of Stars")?>'>
<input type="checkbox" value="0x0002" /><?= tr("IC")?>
</label>
<label title='<?= tr("Catalogue of Reflection Nebulae (Van den Bergh, 1966)")?>'>
<input type="checkbox" value="0x0200" /><?= tr("VdB")?>
</label>
<label title="<?= tr("Lynds' Catalogue of Dark Nebulae (Lynds, 1962)")?>">
<input type="checkbox" value="0x0080" /><?= tr("LDN")?>
</label>
<label title='<?= tr("Catalog of galaxies")?>'>
<input type="checkbox" value="0x1000" /><?= tr("PGC")?>
</label>
</div>
<div class="inline-block blocklabel">
<label title='<?= tr("Caldwell Catalogue")?>'>
<input type="checkbox" value="0x0008" /><?= tr("C")?>
</label>
<label title="<?= tr("Barnard's Catalogue of 349 Dark Objects in the Sky (Barnard, 1927)")?>">
<input type="checkbox" value="0x0010" /><?= tr("B")?>
</label>
<label title='<?= tr("A catalogue of Hα-emission regions in the southern Milky Way (Rodgers+, 1960)")?>'>
<input type="checkbox" value="0x0100" /><?= tr("RCW")?>
</label>
<label title='<?= tr("Catalog of Open Galactic Clusters (Collinder, 1931)")?>'>
<input type="checkbox" value="0x0400" /><?= tr("Cr")?>
</label>
<label title='<?= tr("The Uppsala General Catalogue of Galaxies")?>'>
<input type="checkbox" value="0x2000" /><?= tr("UGC")?>
</label>
</div>
<div class="inline-block blocklabel">
<label title='<?= tr("New General Catalogue of Nebulae and Clusters of Stars")?>'>
<input type="checkbox" value="0x0001" /><?= tr("NGC")?>
</label>
<label title='<?= tr("Catalogue of HII Regions (Sharpless, 1959)")?>'>
<input type="checkbox" value="0x0020" /><?= tr("Sh 2")?>
</label>
<label title="<?= tr("Lynds' Catalogue of Bright Nebulae (Lynds, 1965)")?>">
<input type="checkbox" value="0x0040" /><?= tr("LBN")?>
</label>
<label title='<?= tr("A Catalogue of Star Clusters shown on Franklin-Adams Chart Plates (Melotte, 1915)")?>'>
<input type="checkbox" value="0x0800" /><?= tr("Mel")?>
</label>
<label title='<?= tr("Catalog of bright diffuse Galactic nebulae (Cederblad, 1946)")?>'>
<input type="checkbox" value="0x4000" /><?= tr("Ced")?>
</label>
</div>
</div>
<div id="vo_dsotype" class="smallblock">
<h3><label><input id="vo_dsotypefiltercheckbox" type="checkbox" class="stelaction valign-middle" name="actionSet_Nebula_TypeFilterUsage"/><?= tr("Filter by type")?></label></h3>
<div class="inline-block blocklabel">
<label><input type="checkbox" value="0x001"/><?= tr("Galaxies")?></label>
<label><input type="checkbox" value="0x002"/><?= tr("Active galaxies")?></label>
<label><input type="checkbox" value="0x004"/><?= tr("Interacting galaxies")?></label>
<label><input type="checkbox" value="0x008"/><?= tr("Star clusters")?></label>
<label><input type="checkbox" value="0x010"/><?= tr("Hydrogen regions")?></label>
</div>
<div class="inline-block blocklabel">
<label><input type="checkbox" value="0x020"/><?= tr("Bright Nebulae")?></label>
<label><input type="checkbox" value="0x040"/><?= tr("Dark Nebulae")?></label>
<label><input type="checkbox" value="0x080"/><?= tr("Planetary Nebulae")?></label>
<label><input type="checkbox" value="0x100"/><?= tr("Supernova remnants")?></label>
<label><input type="checkbox" value="0x200"/><?= tr("Other")?></label>
</div>
</div>
<div id="vo_dsolabels" class="smallblock blocklabel">
<h3><label><input class="stelaction" type="checkbox" name="actionShow_Nebulas" /><?= tr("Labels and markers")?></label></h3>
<div class="flex flex-baseline">
<label><?= tr("Labels")?></label><div class="slider stelproperty flex-expand" data-prop="NebulaMgr.labelsAmount" data-min="0" data-max="10" data-step="0.1"></div>
</div>
<div class="flex flex-baseline">
<label><?= tr("Hints")?></label><div class="slider stelproperty flex-expand" data-prop="NebulaMgr.hintsAmount" data-min="0" data-max="10" data-step="0.1"></div>
</div>
<label><input class="stelproperty" name="NebulaMgr.hintsProportional" type="checkbox"/><?= tr("Use proportional hints")?></label>
<label><input class="stelproperty" name="NebulaMgr.flagSurfaceBrightnessUsage" type="checkbox"/><?= tr("Use surface brightness")?></label>
<p><label><input class="stelproperty" name="StelSkyDrawer.flagNebulaMagnitudeLimit" type="checkbox"/><?= tr("Limit magnitude:")?></label><input class="spinner stelproperty" name="StelSkyDrawer.customNebulaMagLimit" data-min="3" data-max="21" data-step="0.25" data-numberformat="n2"/></p>
</div>
</div>
</div>
<!-- also handled by ui/viewoptions.js -->
<div id="tab_landscape">
<div class="smallblock">
<h3><?= tr("Options")?></h3>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_Ground" /><?= tr("Show ground")?></label>
<label><input type="checkbox" class="stelproperty" name="LandscapeMgr.flagLandscapeSetsLocation"/><?= tr("Use associated planet and position")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Fog" /><?= tr("Show fog")?></label>
<div class="flex flex-baseline">
<label><input type="checkbox" class="stelproperty" name="LandscapeMgr.flagLandscapeUseMinimalBrightness"/><?= tr("Minimal brightness:")?></label>
<input id="landscape_defaultMinimalBrightness" class="flex-expand spinner stelproperty" name="LandscapeMgr.defaultMinimalBrightness" data-min="0" data-max="1" data-step="0.01" data-numberformat="n2"/>
</div>
</div>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_LandscapeLabels" /><?= tr("Show landscape labels")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_LandscapeIllumination" /><?= tr("Show illumination")?></label>
<label><input id="landscape_flagLandscapeSetsMinimalBrightness" type="checkbox" class="stelproperty" name="LandscapeMgr.flagLandscapeSetsMinimalBrightness"/><?= tr("from landscape, if given")?></label>
</div>
</div>
<div class="smallblock flex landscapeblock">
<h3><?= tr("Current landscape")?></h3>
<select id="vo_landscapelist" class="scrollselect stelproperty" name="LandscapeMgr.currentLandscapeID" size="5">
</select>
<iframe id="vo_landscapeinfo" class="flex-expand" src="/api/view/landscapedescription/"></iframe>
</div>
</div>
<!-- also handled by ui/viewoptions.js -->
<div id="tab_skyculture">
<div class="smallblock">
<h3><?= tr("Options")?></h3>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_Constellation_Labels" /><?= tr("Show labels")?></label>
<div class="flex flex-baseline">
<label><input type="checkbox" class="stelaction" name="actionShow_Constellation_Lines" /><?= tr("Show lines with thickness")?></label>
<input class="flex-expand spinner stelproperty" name="ConstellationMgr.constellationLineThickness" data-min="1" data-max="5" data-step="1" data-numberformat="n0"/>
</div>
</div>
<div class="inline-block blocklabel">
<label><input type="checkbox" class="stelaction" name="actionShow_Constellation_Boundaries" /><?= tr("Show boundaries")?></label>
<label><input type="checkbox" class="stelaction" name="actionShow_Skyculture_Nativenames" /><?= tr("Use native names for planets")?></label>
<div class="flex flex-baseline">
<label><input type="checkbox" class="stelaction" name="actionShow_Constellation_Art" /><?= tr("Show art in brightness")?></label>
<input class="flex-expand spinner stelproperty" name="ConstellationMgr.artIntensity" data-min="0" data-max="1" data-step="0.05" data-numberformat="n2"/>
</div>
</div>
</div>
<div class="smallblock flex landscapeblock">
<h3><?= tr("Current sky culture")?></h3>
<select id="vo_skyculturelist" class="scrollselect stelproperty" name="StelSkyCultureMgr.currentSkyCultureID" size="5">
</select>
<iframe id="vo_skycultureinfo" class="flex-expand" src="/api/view/skyculturedescription/"></iframe>
</div>
</div>
<!-- handled by ui/actions.js -->
<div id="tab_actions">
<div class="flex flex-wrap">
<section id="scripts" class="block flex flex-expand">
<header><h2><?= tr("Scripts")?></h2></header>
<div class="flex flex-column">
<select id="scriptlist" class="scrollselect flex-expand" size="10"></select>
<div class="textcenter"><?= tr("Active script:")?> <span id="activescript"><?= tr("-none-")?></span></div>
<div><button id="bt_runscript" disabled="disabled"><?= tr("Run selected script")?></button><button id="bt_stopscript" disabled="disabled"><?= tr("Stop current script")?></button></div>
</div>
<iframe id="scriptinfo" class="flex-expand"></iframe>
</section>
<section id="stelaction" class="block flex flex-column">
<header><h2><?= tr("Actions")?></h2></header>
<select id="actionlist" class="scrollselect flex-expand" size="10">
</select>
<div>
<button id="bt_doaction" disabled="disabled"><?= tr("Run/toggle action")?></button>
</div>
</section>
</div>
</div>
<!-- handled by ui/location.js -->
<div id="tab_location">
<section id="location" class="inline-block smallblock">
<h3><?= tr("Location")?></h3>
<div>
<div id="loc_map">
<img id="loc_mapimg" src="images/world.png" alt='<?= tr("Planet map")?>'/>
<img id="loc_mappointer" src="images/map-pointeur.png" alt='<?= tr("Planet map pointer")?>'/>
</div>
<div id="loc_searchlist" class="flex flex-column" >
<select id="loc_list" size="10"></select>
<input id="loc_search" placeholder='<?= tr("Type to search location")?>' autocomplete="off"/>
</div>
</div>
<div id="loc_inputs">
<div>
<p><label for="loc_latitude"><?= tr("Latitude:")?></label><input id="loc_latitude"/></p>
<p><label for="loc_longitude"><?= tr("Longitude:")?></label><input id="loc_longitude"/></p>
<p><label for="loc_altitude"><?= tr("Altitude:")?></label><input id="loc_altitude"/></p>
</div>
<div>
<p><label for="loc_name"><?= tr("Name/City:")?></label><input id="loc_name" type="text"/></p>
<p><label for="loc_country"><?= tr("Country:")?></label><select id="loc_country"></select></p>
<p><label for="loc_planet"><?= tr("Planet:")?></label><select id="loc_planet"></select></p>
</div>
</div>
</section>
</div>
<!-- also handled by ui/viewoptions.js -->
<div id="tab_projection">
<div class="smallblock flex landscapeblock">
<h3><?= tr("Projection")?></h3>
<select id="vo_projectionlist" class="scrollselect stelproperty" name="StelCore.currentProjectionTypeKey" size="5">
</select>
<iframe id="vo_projectioninfo" class="flex-expand" src="/api/view/projectiondescription"></iframe>
</div>
</div>
</div>
<ul class="ui-corner-all ui-widget-content button32list margin-vertical">
<li><button class="stelaction icon32 btConstellationLines" name="actionShow_Constellation_Lines"></button></li>
<li><button class="stelaction icon32 btConstellationLabels" name="actionShow_Constellation_Labels"></button></li>
<li><button class="stelaction icon32 btConstellationArt" name="actionShow_Constellation_Art"></button></li>
<li><button class="stelaction icon32 btEquatorialGrid" name="actionShow_Equatorial_Grid"></button></li>
<li><button class="stelaction icon32 btAzimuthalGrid" name="actionShow_Azimuthal_Grid"></button></li>
<li><button class="stelaction icon32 btGround" name="actionShow_Ground"></button></li>
<li><button class="stelaction icon32 btCardinalPoints" name="actionShow_Cardinal_Points"></button></li>
<li><button class="stelaction icon32 btAtmosphere" name="actionShow_Atmosphere"></button></li>
<li><button class="stelaction icon32 btNebula" name="actionShow_Nebulas"></button></li>
<li><button class="stelaction icon32 btPlanets" name="actionShow_Planets_Labels"></button></li>
<li><button class="stelaction icon32 btEquatorialMount" name="actionSwitch_Equatorial_Mount"></button></li>
<li><button class="stelaction icon32 btGotoSelectedObject" name="actionSet_Tracking"></button></li>
<li><button class="stelaction icon32 btNightView" name="actionShow_Night_Mode"></button></li>
<li><button class="stelaction icon32 btFullScreen" name="actionSet_Full_Screen_Global"></button></li>
</ul>
</div>
<!-- handled by mainui.js -->
<div id="noresponse" title='<?= tr("No response from server")?>'>
<p><span class="ui-icon ui-icon-alert" style="float:left; margin:0 7px 20px 0;"></span><?= tr("No response from server since %1 seconds. Is Stellarium still running?","<span id='noresponsetime'>0</span>")?></p>
</div>
<div id="loadindicator"></div>
</body>
</html>
|