Skip to content

Commit 5ea6e97

Browse files
New testproject
1 parent e75e549 commit 5ea6e97

File tree

172 files changed

+13764
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+13764
-0
lines changed

Test.mpk

3.45 MB
Binary file not shown.

test/Test.mpr

240 KB
Binary file not shown.

test/package.xml

Lines changed: 222 additions & 0 deletions
Large diffs are not rendered by default.

test/theme/components.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{"files":{"css":["lib/bootstrap/css/bootstrap.min.css","mxclientsystem/mxui/ui/mxui.css","styles/css/lib/lib.css","styles/css/custom/custom.css"],"js":["mxclientsystem/mxui/mxui.js"]},"cachebust":"635689412670032000"}

test/theme/config.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
preferred_syntax = :scss
2+
http_path = '/'
3+
css_dir = 'styles/css'
4+
sass_dir = 'styles/sass'
5+
relative_assets = true
6+
line_comments = false
7+
sourcemap = false
8+
output_style = :expanded

test/theme/index.html

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>Mendix</title>
7+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
8+
<meta name="apple-mobile-web-app-capable" content="yes">
9+
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css?{{cachebust}}">
10+
<link rel="stylesheet" href="mxclientsystem/mxui/ui/mxui.css?{{cachebust}}">
11+
12+
<link rel="stylesheet" href="styles/css/lib/lib.css?{{cachebust}}">
13+
<link rel="stylesheet" href="styles/css/custom/custom.css?{{cachebust}}">
14+
15+
<!-- CONFIGURATION Web Apps based on http://taylor.fausak.me/2015/01/27/ios-8-web-apps/ -->
16+
17+
<!-- ICONS EXAMPLE -->
18+
19+
<!-- iPhone retina icon (iOS < 7) -->
20+
<!-- <link href="resources/ios/icons/apple-touch-icon-precomposed-114x114.png" sizes="114x114" rel="apple-touch-icon-precomposed"> -->
21+
22+
<!-- STARTUP IMAGES -->
23+
<!-- <link href="resources/ios/startup/apple-touch-startup-image-1496x2048.png" media="(device-width: 768px) and (device-height: 1024px) and (-webkit-device-pixel-ratio: 2) and (orientation: landscape)" rel="apple-touch-startup-image"> -->
24+
25+
</head>
26+
<body dir="ltr">
27+
<div id="content"></div>
28+
<script>
29+
dojoConfig = {
30+
baseUrl: "mxclientsystem/dojo/",
31+
cacheBust: "{{cachebust}}",
32+
rtlRedirect: "index-rtl.html"
33+
};
34+
</script>
35+
<script>
36+
if (!document.cookie || !document.cookie.match(/(^|;)originURI=/gi))
37+
document.cookie = "originURI=/login.html";
38+
</script>
39+
<script src="mxclientsystem/mxui/mxui.js?{{cachebust}}"></script>
40+
</body>
41+
</html>

test/theme/login.html

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<title>Mendix 5 - Login</title>
7+
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1, maximum-scale=1">
8+
<meta name="apple-mobile-web-app-capable" content="yes">
9+
<link rel="stylesheet" href="lib/bootstrap/css/bootstrap.min.css?{{cachebust}}">
10+
<link rel="stylesheet" href="styles/login.css?{{cachebust}}">
11+
</head>
12+
<body>
13+
<div class="login-container">
14+
<form id="loginForm" class="login-form">
15+
<div class="login-logo"></div>
16+
<a id="ssoButton" href="/openid/login" class="login-sso-button btn btn-primary">Sign in with your Mendix account</a>
17+
18+
<label class="login-or-label">&ndash; or &ndash; </label>
19+
20+
<div class="login-form-inputs well">
21+
<label class="login-local-label">Sign in with a local account</label>
22+
<div id="loginMessage" class="alert alert-danger login-message"></div>
23+
24+
<div class="form-group">
25+
<label id="usernameLabel" for="usernameInput">User name</label>
26+
<input id="usernameInput" class="form-control" type="text" placeholder="User name" autocorrect="off" autocapitalize="none">
27+
</div>
28+
<div class="form-group">
29+
<label id="passwordLabel" for="passwordInput">Password</label>
30+
<input id="passwordInput" class="form-control" type="password" placeholder="Password" autocorrect="off" autocapitalize="none">
31+
</div>
32+
<button id="loginButton" type="submit" class="btn btn-primary">Sign in</button>
33+
</div>
34+
</form>
35+
</div>
36+
37+
<script src="js/login_i18n.js?{{cachebust}}"></script>
38+
<script src="js/login.js?{{cachebust}}"></script>
39+
</body>
40+
</html>

test/theme/resources/.DS_Store

12 KB
Binary file not shown.
8 KB
Binary file not shown.
7.21 KB

0 commit comments

Comments
 (0)