Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test_js.html - gitlab.com/Remmina/wiki.remmina.org.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 53d21c56c4086c3da2d1b7525abdbe1abed1338b (plain)
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
<!--
title: test_js [not working]
description: 
published: true
date: 2021-07-18T10:31:27.908Z
tags: 
editor: code
dateCreated: 2021-07-17T02:06:41.512Z
-->

<!-- TODO: Style this and add titles to the rolling boxes. -->
<div id='form'>
	<!-- Note: Remmina versions are arbitrary in the MWE. -->
	<select name='remminaVersion' onchange='main(this)'>
		<option value='1.0'>1.0</option>
		<option value='1.1'>1.1</option>
		<option value='1.2'>1.2</option>
		<option value='1.3'>1.3</option>
	</select>
	<select name='packageManager' onchange='main(this)'>
		<option value='dnf'>DNF</option>
		<option value='pacman'>Pacman</option>
		<option value='apt'>APT</option>
		<option value='yum'>YUM</option>
		<option value='emerge'>Emerge</option>
		<option value='pkg'>PKG</option>
	</select>
	<!-- Note: We might want to add additional distribution derrivatives (like Manjaro, Raspbian, etc). -->
	<select name='distro' onchange='main(this)'>
		<option value='arch'>Arch Linux</option>
		<option value='debian'>Debian</option>
		<option value='freebsd'>FreeBSD</option>
		<option value='ubuntu'>Ubuntu</option>
		<option value='fedora'>Fedora</option>
		<option value='centos'>CentOS</option>
		<option value='gentoo'>Gentoo</option>
	</select>
	<!-- Note: Distribution versions are arbitrary in the MWE. In production, we need to make the values dependent on the `distro` value. -->
	<select name='distroVersion' onchange='main(this)'>
		<option value='1'>1</option>
		<option value='2'>2</option>
		<option value='3'>3</option>
		<option value='4'>4</option>
	</select>
	<select name='guideType' onchange='main(this)'>
		<option value='html'>1</option>
		<option value='bash'>2</option>
	</select>
</div>
<div id='content'>
	<div id='build'>
		<p>This is the default <b>build</b> content.</p>
	</div>
	<div id='installation'>
		<p>This is the default <b>installation</b> content.</p>
	</div>
</div>