irie 0.0.30__py3-none-any.whl → 0.0.31__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of irie might be problematic. Click here for more details.
- irie/apps/static/assets/img/painter.png +0 -0
- irie/apps/templates/site/qr-0001.html +29 -0
- irie/apps/templates/site/qr-0002.html +32 -0
- irie/apps/templates/site/qr-0003.html +32 -0
- irie/core/urls.py +12 -0
- {irie-0.0.30.dist-info → irie-0.0.31.dist-info}/METADATA +2 -2
- {irie-0.0.30.dist-info → irie-0.0.31.dist-info}/RECORD +10 -6
- {irie-0.0.30.dist-info → irie-0.0.31.dist-info}/WHEEL +0 -0
- {irie-0.0.30.dist-info → irie-0.0.31.dist-info}/entry_points.txt +0 -0
- {irie-0.0.30.dist-info → irie-0.0.31.dist-info}/top_level.txt +0 -0
|
Binary file
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="robots" content="noindex">
|
|
5
|
+
<style>
|
|
6
|
+
body {
|
|
7
|
+
margin-left: 200px;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
.center_div {
|
|
11
|
+
border: 1px solid gray;
|
|
12
|
+
margin-left: auto;
|
|
13
|
+
margin-right: auto;
|
|
14
|
+
width: 90%;
|
|
15
|
+
background-color: #d0f0f6;
|
|
16
|
+
text-align: left;
|
|
17
|
+
padding: 8px;
|
|
18
|
+
}
|
|
19
|
+
</style>
|
|
20
|
+
</head>
|
|
21
|
+
<body>
|
|
22
|
+
|
|
23
|
+
<div class="center_div">
|
|
24
|
+
<h1><code>qr-0001</code></h1>
|
|
25
|
+
</div>
|
|
26
|
+
|
|
27
|
+
</body>
|
|
28
|
+
</html>
|
|
29
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="robots" content="noindex">
|
|
5
|
+
<!--
|
|
6
|
+
<meta http-equiv="refresh" content="0; url=https://fedeas.net" />
|
|
7
|
+
-->
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
margin-left: 200px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.center_div {
|
|
14
|
+
border: 1px solid gray;
|
|
15
|
+
margin-left: auto;
|
|
16
|
+
margin-right: auto;
|
|
17
|
+
width: 90%;
|
|
18
|
+
background-color: #d0f0f6;
|
|
19
|
+
text-align: left;
|
|
20
|
+
padding: 8px;
|
|
21
|
+
}
|
|
22
|
+
</style>
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
|
|
26
|
+
<div class="center_div">
|
|
27
|
+
<h1><code>qr-0002</code></h1>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
</body>
|
|
31
|
+
</html>
|
|
32
|
+
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
<!DOCTYPE html>
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta name="robots" content="noindex">
|
|
5
|
+
<!--
|
|
6
|
+
<meta http-equiv="refresh" content="0; url=https://fedeas.net" />
|
|
7
|
+
-->
|
|
8
|
+
<style>
|
|
9
|
+
body {
|
|
10
|
+
margin-left: 200px;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.center_div {
|
|
14
|
+
border: 1px solid gray;
|
|
15
|
+
margin-left: auto;
|
|
16
|
+
margin-right: auto;
|
|
17
|
+
width: 90%;
|
|
18
|
+
background-color: #d0f0f6;
|
|
19
|
+
text-align: left;
|
|
20
|
+
padding: 8px;
|
|
21
|
+
}
|
|
22
|
+
</style>
|
|
23
|
+
</head>
|
|
24
|
+
<body>
|
|
25
|
+
|
|
26
|
+
<div class="center_div">
|
|
27
|
+
<h1><code>qr-0003</code></h1>
|
|
28
|
+
</div>
|
|
29
|
+
|
|
30
|
+
</body>
|
|
31
|
+
</html>
|
|
32
|
+
|
irie/core/urls.py
CHANGED
|
@@ -23,6 +23,18 @@ urlpatterns = [
|
|
|
23
23
|
"robots.txt",
|
|
24
24
|
TemplateView.as_view(template_name="site/robots.txt", content_type="text/plain"),
|
|
25
25
|
),
|
|
26
|
+
path(
|
|
27
|
+
"qr-0001",
|
|
28
|
+
TemplateView.as_view(template_name="site/qr-0001.html", content_type="text/html"),
|
|
29
|
+
),
|
|
30
|
+
path(
|
|
31
|
+
"qr-0002",
|
|
32
|
+
TemplateView.as_view(template_name="site/qr-0002.html", content_type="text/html"),
|
|
33
|
+
),
|
|
34
|
+
path(
|
|
35
|
+
"qr-0003",
|
|
36
|
+
TemplateView.as_view(template_name="site/qr-0003.html", content_type="text/html"),
|
|
37
|
+
),
|
|
26
38
|
|
|
27
39
|
|
|
28
40
|
# Authentication routes
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.2
|
|
2
2
|
Name: irie
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.31
|
|
4
4
|
Summary: An infrastructure resilience engine
|
|
5
5
|
Author-email: "Claudio M. Perez" <50180406+claudioperez@users.noreply.github.com>
|
|
6
6
|
Project-URL: Repository, https://github.com/STAIRLab
|
|
@@ -69,7 +69,7 @@ Requires-Dist: dj-database-url==2.1.0
|
|
|
69
69
|
- [`opensees`](https://pypi.org/project/opensees)
|
|
70
70
|
- [`quakeio`](https://pypi.org/project/quakeio)
|
|
71
71
|
- [`mdof`](https://pypi.org/project/mdof)
|
|
72
|
-
- [`veux`](https://veux.
|
|
72
|
+
- [`veux`](https://veux.io/)
|
|
73
73
|
|
|
74
74
|
|
|
75
75
|
<table align="center">
|
|
@@ -151,6 +151,7 @@ irie/apps/static/assets/img/drift.svg,sha256=3t27U1HaeEsC4vWSEXooXcOJ75vV2-756J1
|
|
|
151
151
|
irie/apps/static/assets/img/earthquake-hazard.png,sha256=0sa9IqXW27TIQbteqH_jum3K_pUbKxfHHX4LHnkTSIw,34529
|
|
152
152
|
irie/apps/static/assets/img/marker.svg,sha256=52XfK1iu83ACTMrR1Wn255DGv5608ElURg379D0m3uQ,366
|
|
153
153
|
irie/apps/static/assets/img/metric.png,sha256=Q1aeppsyCO4b4ylsFz6c064Z5V42E3E4DaaqlLoxeV8,46072
|
|
154
|
+
irie/apps/static/assets/img/painter.png,sha256=yrDsW4Mu80n2xEENV287Tb28J0xvhynLyjFp4HGTgyI,28463
|
|
154
155
|
irie/apps/static/assets/img/paypal-logo.svg,sha256=gCWc2qaVwXa68k4eFHh2uya8Lz3bJituyc44GyIo3Xc,4053
|
|
155
156
|
irie/apps/static/assets/img/peer-black.svg,sha256=Uz940nTfoW1aXIsGcdllcv_dSBAmEjpgOf5OHzWLDdo,8550
|
|
156
157
|
irie/apps/static/assets/img/peer-light.svg,sha256=su_jryHQUJ9H_ncWdPy2rZJme49nRVWLer_3DL7YzD4,8856
|
|
@@ -426,6 +427,9 @@ irie/apps/templates/site/page-lock.html,sha256=ZVn1xyhku1jROxozMyPwMCqS7EsRwG7Z6
|
|
|
426
427
|
irie/apps/templates/site/page-reset-password.html,sha256=zr2hSaWshUfWanI07vgwfxLR28APCTwhkWHd5-cr-v8,4239
|
|
427
428
|
irie/apps/templates/site/page-sign-in.html,sha256=Ss0xdxhcE0fDzBbxG4NEYFm3XVkfV9knmZWWInU6gq8,9059
|
|
428
429
|
irie/apps/templates/site/page-sign-up.html,sha256=Tft2RQqxzPLyeAWAYoTQnYePs4ym_0bjPuW2p3DbGQ0,9600
|
|
430
|
+
irie/apps/templates/site/qr-0001.html,sha256=N7FgB4JHGtwuLj6t9Da9poZlGv4FWXefFVpO7sY_rBA,380
|
|
431
|
+
irie/apps/templates/site/qr-0002.html,sha256=iYzgGts0JluRpSHE2d3fqWO7Rtomemm6jGczEPPdhqs,455
|
|
432
|
+
irie/apps/templates/site/qr-0003.html,sha256=_lfdCGaz1QSf7AtFW_XAgiW_IUiT2iVX4T7b6CFEwg0,455
|
|
429
433
|
irie/apps/templates/site/robots.txt,sha256=WHES5StN7rZ_b6MLiPMP4cSWg-A9qMAEE711VLQ35UU,1131
|
|
430
434
|
irie/apps/templates/site/settings.html,sha256=R86LHk7zv3PcZlZoH4iVmvpPc7iGLR8kwAPvsUNF2lU,13423
|
|
431
435
|
irie/apps/templates/site/tables-bootstrap-tables.html,sha256=NDeyVoNLkgFpvqOWMRBQ9uLORirhz-O-LSXFfT2mv88,26683
|
|
@@ -434,7 +438,7 @@ irie/apps/templates/site/unused-dashboard-cards.html,sha256=DDNWrnIf4o0wj06WYH8Y
|
|
|
434
438
|
irie/core/__init__.py,sha256=wkkNngGxgYcCM745-rlvP6ynrI0b0QN3aWmLWDsR8zU,230
|
|
435
439
|
irie/core/asgi.py,sha256=3lVQKFRA4bznM2mWu5Cv24a5H9pfb6YU07q-I_TN0DM,395
|
|
436
440
|
irie/core/settings.py,sha256=Lifr6YHB2SIvW162jjyNFP5rAW0B-oG7xjUubeLW4DM,6516
|
|
437
|
-
irie/core/urls.py,sha256=
|
|
441
|
+
irie/core/urls.py,sha256=vaVJMAWrDQ7wBiMnXmQlTkNgYmH1HeJC35m1LWdl5iE,1841
|
|
438
442
|
irie/core/wsgi.py,sha256=8dxK789vOoRWm0IatEhNqMgZhov9TlspjM6hOUbjg24,395
|
|
439
443
|
irie/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
440
444
|
irie/init/__main__.py,sha256=9PhToipU4y-7H_ndU5aoCdaWayhR5ld669LPnKUDBu4,828
|
|
@@ -456,8 +460,8 @@ irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9
|
|
|
456
460
|
irie/init/management/commands/init_predictors.py,sha256=jdD7rd8l2qxuUuR5GOYuHXp-ZQkAK477TefksBMdlOw,2362
|
|
457
461
|
irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
|
|
458
462
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
459
|
-
irie-0.0.
|
|
460
|
-
irie-0.0.
|
|
461
|
-
irie-0.0.
|
|
462
|
-
irie-0.0.
|
|
463
|
-
irie-0.0.
|
|
463
|
+
irie-0.0.31.dist-info/METADATA,sha256=EEFkjKihz2NDypVRF93ufhXLDKGJbLL8LKZdOdx3_7c,3207
|
|
464
|
+
irie-0.0.31.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
|
|
465
|
+
irie-0.0.31.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
466
|
+
irie-0.0.31.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
467
|
+
irie-0.0.31.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|