forked from wikimedia/wikipedia-ios
-
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.
commit web assets and remove build scripts
This removes node as a build dependency, making setup easier. Updating web assets can now be done manually using the "web" target in the Makefile which will: - Download latests mobile app styles - Install npm modules - Run grunt (linting & processing JS code) Remaining script build phases in the project are for processing the app icon and copying them into the app's "assets" folder (so the webview can grab the app icon). Bug: T94231 Change-Id: Ic535eb9644d66e3632e353544b82494c859d8a7a
- Loading branch information
Showing
22 changed files
with
2,339 additions
and
64 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Wikipedia/assets/** | ||
fastlane/** | ||
www/node_modules/** |
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
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 |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta name="viewport" id="viewport" content="width=device-width, user-scalable=no"> | ||
|
||
<style type="text/css"> | ||
|
||
body{ | ||
font-size:100%; | ||
margin:1.45em; | ||
font-family: Helvetica; | ||
color:#444444; | ||
border-style:none; | ||
-webkit-text-size-adjust: none; | ||
direction:ltr; | ||
} | ||
|
||
div body{ | ||
margin-top:0.5em; | ||
margin-bottom:0.5em; | ||
} | ||
|
||
.heading{ | ||
font-weight:bold; | ||
color:#000000; | ||
} | ||
|
||
#version{ | ||
font-size:1.5em; | ||
} | ||
|
||
#wikipedia{ | ||
font-size:2.0em; | ||
} | ||
|
||
.title{ | ||
color:#888888; | ||
margin-bottom:0.5em; | ||
} | ||
|
||
A{ | ||
color:#4F76eB; | ||
} | ||
|
||
.feedback{ | ||
text-align:center; | ||
} | ||
|
||
.title, .feedback{ | ||
margin-top:1.5em; | ||
} | ||
|
||
.footer-table{ | ||
margin-top:1.0em; | ||
width:100%; | ||
} | ||
|
||
.footer{ | ||
width:100%; | ||
} | ||
|
||
.wmf-logo{ | ||
padding-right:0.5em; | ||
} | ||
|
||
</style> | ||
</head> | ||
<body> | ||
|
||
<div id="wikipedia" class="heading">wikipedia</div> | ||
|
||
<div id="version" class="heading">version</div> | ||
|
||
<div id="contributors_title" class="title">contributors_title</div> | ||
|
||
<div id="contributors_body">contributors_body</div> | ||
|
||
<div id="translators_title" class="title">translators_title</div> | ||
|
||
<div id="translators_body">translators_body</div> | ||
|
||
<div id="testers_title" class="title">testers_title</div> | ||
|
||
<div id="testers_body">testers_body</div> | ||
|
||
<div id="libraries_title" class="title">libraries_title</div> | ||
|
||
<div id="libraries_body">libraries_body</div> | ||
|
||
<div id="repositories_title" class="title">repositories_title</div> | ||
|
||
<div id="repositories_body">repositories_body</div> | ||
|
||
<div id="feedback_body" class="feedback">feedback_body</div> | ||
|
||
<table class="footer-table"> | ||
<tr> | ||
<td> | ||
<img class="wmf-logo" src="./images/wmflogo_60.png" srcset="./images/wmflogo_60.png 1x, ./images/wmflogo_120.png 2x, ./images/wmflogo_180.png 3x"> | ||
</td> | ||
<td id="footer" class="footer"> | ||
footer | ||
</td> | ||
</tr> | ||
</table> | ||
|
||
</body> | ||
</html> |
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<!DOCTYPE html> | ||
<html class="content-ltr ui-ltr" dir="ltr"> | ||
<head> | ||
|
||
<script src="bundle.js"></script> | ||
<meta name="viewport" id="viewport" content="width=device-width, user-scalable=no"> | ||
<link href="abusefilter.css" rel="stylesheet" type="text/css"></link> | ||
|
||
<base href="https://wikipedia.org"> | ||
|
||
</head> | ||
<body class="stable"> | ||
<div class="content" id="content"> | ||
</div> | ||
</body> | ||
</html> |
Oops, something went wrong.