forked from SAP/luigi
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Automate backwards compatibility check (SAP#354)
* added npm script and readme for test:compatibility * added jq dependency to the readme
- Loading branch information
Showing
12 changed files
with
1,023 additions
and
1,260 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,85 @@ | ||
<!DOCTYPE html> | ||
<html lang="en_EN"> | ||
<head> | ||
<title>Page not found</title> | ||
<link rel='stylesheet' href='/fiori-fundamentals/fiori-fundamentals.min.css'> | ||
<style type="text/css"> | ||
body { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
@keyframes goAndHitSomeCorners { | ||
0% { | ||
transform: scaleX(1); | ||
} | ||
33% { | ||
transform: scaleX(0); | ||
} | ||
<head> | ||
<title>Page not found</title> | ||
<link | ||
rel="stylesheet" | ||
href="/fiori-fundamentals/fiori-fundamentals.min.css" | ||
/> | ||
<style type="text/css"> | ||
body { | ||
font-family: Arial, Helvetica, sans-serif; | ||
} | ||
@keyframes goAndHitSomeCorners { | ||
0% { | ||
transform: scaleX(1); | ||
} | ||
33% { | ||
transform: scaleX(0); | ||
} | ||
|
||
66% { | ||
transform: scaleX(-1); | ||
} | ||
100% { | ||
transform: scaleX(1); | ||
} | ||
} | ||
.section-spacer { | ||
height: 800px; | ||
} | ||
.fd-panel { | ||
padding: 15px; | ||
} | ||
a { | ||
color: #0a6ed1; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
color: #085caf; | ||
} | ||
.fd-page__header { | ||
padding: 1em; | ||
text-align: center; | ||
} | ||
66% { | ||
transform: scaleX(-1); | ||
} | ||
100% { | ||
transform: scaleX(1); | ||
} | ||
} | ||
.section-spacer { | ||
height: 800px; | ||
} | ||
.fd-panel { | ||
padding: 15px; | ||
} | ||
a { | ||
color: #0a6ed1; | ||
text-decoration: none; | ||
} | ||
a:hover { | ||
color: #085caf; | ||
} | ||
.fd-page__header { | ||
padding: 1em; | ||
text-align: center; | ||
} | ||
|
||
.fd-action-bar__title { | ||
font-size: 6em; | ||
} | ||
.fd-action-bar__description { | ||
font-size: 4em; | ||
} | ||
.fd-action-bar__title { | ||
font-size: 6em; | ||
} | ||
.fd-action-bar__description { | ||
font-size: 4em; | ||
} | ||
|
||
.error-number--spacer { | ||
visibility: hidden; | ||
color: yellow; | ||
} | ||
.error-number--real { | ||
color: #34495f; | ||
transition: 1s; | ||
animation-name: goAndHitSomeCorners; | ||
animation-delay: 5s; | ||
position: absolute; | ||
animation-duration: 3s; | ||
animation-iteration-count: infinite; | ||
animation-timing-function: ease; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header class="fd-page__header"> | ||
.error-number--spacer { | ||
visibility: hidden; | ||
color: yellow; | ||
} | ||
.error-number--real { | ||
color: #34495f; | ||
transition: 1s; | ||
animation-name: goAndHitSomeCorners; | ||
animation-delay: 5s; | ||
position: absolute; | ||
animation-duration: 3s; | ||
animation-iteration-count: infinite; | ||
animation-timing-function: ease; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<header class="fd-page__header"> | ||
<h1 class="fd-action-bar__title"> | ||
Ooooooooops :( | ||
Ooooooooops :( | ||
</h1> | ||
<h2 class="fd-action-bar__description">Yes, you guessed right, it's a | ||
<h2 class="fd-action-bar__description"> | ||
Yes, you guessed right, it's a | ||
<strong class="error-number--real">404</strong> | ||
<strong class='error-number--spacer'>404</strong> | ||
<strong class="error-number--spacer">404</strong> | ||
error | ||
</h2> | ||
</header> | ||
</h2> | ||
</header> | ||
|
||
|
||
|
||
<script type="text/javascript" src="/luigi-client/luigi-client.js"></script> | ||
<script type="text/javascript"> | ||
|
||
|
||
</script> | ||
|
||
</body> | ||
<script type="text/javascript" src="/luigi-client/luigi-client.js"></script> | ||
<script type="text/javascript"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.