irie 0.0.19__py3-none-any.whl → 0.0.21__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/evaluation/daemon.py +0 -12
- irie/apps/evaluation/migrations/0002_evaluation_status.py +18 -0
- irie/apps/evaluation/models.py +18 -1
- irie/apps/inventory/views.py +11 -7
- irie/apps/templates/includes/asset-event-table.html +28 -16
- irie/apps/templates/inventory/asset-event-summary.html +1 -2
- irie/apps/templates/inventory/asset-profile.html +21 -20
- irie/apps/templates/inventory/asset-table.html +1 -2
- irie/apps/templates/site/robots.txt +8 -0
- irie/core/urls.py +6 -0
- irie/init/__main__.py +2 -2
- {irie-0.0.19.dist-info → irie-0.0.21.dist-info}/METADATA +2 -2
- {irie-0.0.19.dist-info → irie-0.0.21.dist-info}/RECORD +16 -14
- {irie-0.0.19.dist-info → irie-0.0.21.dist-info}/WHEEL +0 -0
- {irie-0.0.19.dist-info → irie-0.0.21.dist-info}/entry_points.txt +0 -0
- {irie-0.0.19.dist-info → irie-0.0.21.dist-info}/top_level.txt +0 -0
irie/apps/evaluation/daemon.py
CHANGED
|
@@ -60,18 +60,6 @@ class LiveEvaluation:
|
|
|
60
60
|
return mname
|
|
61
61
|
|
|
62
62
|
def setMetricData(self, mname: str, pid: str, data: dict):
|
|
63
|
-
# self.metrics[mname][pid].data = data
|
|
64
|
-
# try:
|
|
65
|
-
# self.evaluation_data[mname]["details"][pid] = data["details"]
|
|
66
|
-
# except KeyError:
|
|
67
|
-
# self.evaluation_data[mname]["details"][pid] = data
|
|
68
|
-
# self.metrics[mname][pid].buildDetails()
|
|
69
|
-
# try:
|
|
70
|
-
# None
|
|
71
|
-
# except KeyError:
|
|
72
|
-
# self.evaluation_data[mname]["summary"][pid] = \
|
|
73
|
-
# self.metrics[mname][pid].getSummary()
|
|
74
|
-
|
|
75
63
|
self.evaluation_data[mname]["details"][pid] = data.get("details", data)
|
|
76
64
|
self.evaluation_data[mname]["summary"][pid] = data.get("summary", data)
|
|
77
65
|
if len(self.evaluation_data[mname]["summary"]) == 1:
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Generated by Django 5.1.2 on 2024-12-14 07:51
|
|
2
|
+
|
|
3
|
+
from django.db import migrations, models
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
class Migration(migrations.Migration):
|
|
7
|
+
|
|
8
|
+
dependencies = [
|
|
9
|
+
('irie_apps_evaluation', '0001_initial'),
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
operations = [
|
|
13
|
+
migrations.AddField(
|
|
14
|
+
model_name='evaluation',
|
|
15
|
+
name='status',
|
|
16
|
+
field=models.CharField(choices=[('Finished', 'Finished'), ('Running', 'Running'), ('Invalid', 'Invalid')], default='Finished', max_length=25),
|
|
17
|
+
),
|
|
18
|
+
]
|
irie/apps/evaluation/models.py
CHANGED
|
@@ -19,16 +19,25 @@ from irie.apps.inventory.models import Asset
|
|
|
19
19
|
from .daemon import LiveEvaluation
|
|
20
20
|
|
|
21
21
|
class Evaluation(models.Model):
|
|
22
|
+
class Status(models.TextChoices):
|
|
23
|
+
Finished = "Finished"
|
|
24
|
+
Running = "Running"
|
|
25
|
+
Invalid = "Invalid"
|
|
26
|
+
|
|
22
27
|
id = models.BigAutoField(primary_key=True)
|
|
23
28
|
event = models.ForeignKey(EventRecord, on_delete=models.CASCADE)
|
|
24
29
|
asset = models.ForeignKey(Asset, on_delete=models.CASCADE, null=True)
|
|
25
30
|
evaluation_data = models.JSONField(default=dict)
|
|
31
|
+
status = models.CharField(max_length=25,
|
|
32
|
+
choices=Status.choices,
|
|
33
|
+
default=Status.Finished)
|
|
26
34
|
|
|
27
35
|
@classmethod
|
|
28
36
|
def create(cls, event: EventRecord, asset: Asset, data: dict = None):
|
|
29
37
|
evaluation = cls()
|
|
30
38
|
evaluation.event = event
|
|
31
39
|
evaluation.asset = asset
|
|
40
|
+
evaluation.status = Evaluation.Status.Running
|
|
32
41
|
evaluation.save()
|
|
33
42
|
|
|
34
43
|
if data is not None:
|
|
@@ -43,6 +52,7 @@ class Evaluation(models.Model):
|
|
|
43
52
|
|
|
44
53
|
def evaluate(event, evaluation)->"Evaluation":
|
|
45
54
|
|
|
55
|
+
count_okay = 0
|
|
46
56
|
daemon = LiveEvaluation(event, event.asset.predictors, evaluation)
|
|
47
57
|
|
|
48
58
|
# assignPredictorMetrics?
|
|
@@ -63,11 +73,18 @@ def evaluate(event, evaluation)->"Evaluation":
|
|
|
63
73
|
for mname in predictions[predictor_name][1]:
|
|
64
74
|
print(f">>> Retrieving {predictor_name}/{mname}.", file=sys.stderr)
|
|
65
75
|
data = daemon.predictors[predictor_name].getMetricData(run_id, mname)
|
|
66
|
-
|
|
76
|
+
if data is not None:
|
|
77
|
+
count_okay += 1
|
|
78
|
+
daemon.setMetricData(mname, predictor_name, data)
|
|
67
79
|
|
|
68
80
|
print(f">>> Completed {predictor_name}.", file=sys.stderr)
|
|
69
81
|
|
|
82
|
+
if count_okay:
|
|
83
|
+
evaluation.status = Evaluation.Status.Finished
|
|
84
|
+
else:
|
|
85
|
+
evaluation.status = Evaluation.Status.Invalid
|
|
70
86
|
|
|
87
|
+
evaluation.save()
|
|
71
88
|
daemon.save()
|
|
72
89
|
return evaluation
|
|
73
90
|
|
irie/apps/inventory/views.py
CHANGED
|
@@ -25,6 +25,8 @@ from .filters import AssetFilter
|
|
|
25
25
|
# Predictors
|
|
26
26
|
from irie.apps.prediction.runners.hazus import hazus_fragility
|
|
27
27
|
from irie.apps.prediction.runners.ssid import make_mountains, ssid_stats, ssid_event_plot
|
|
28
|
+
# Evaluations
|
|
29
|
+
from irie.apps.evaluation.models import Evaluation
|
|
28
30
|
|
|
29
31
|
|
|
30
32
|
@login_required(login_url="/login/")
|
|
@@ -47,7 +49,6 @@ def _fetch_rendering(request):
|
|
|
47
49
|
|
|
48
50
|
@login_required(login_url="/login/")
|
|
49
51
|
def asset_event_summary(request, cesmd, event):
|
|
50
|
-
from irie.apps.evaluation.models import Evaluation
|
|
51
52
|
|
|
52
53
|
context = {}
|
|
53
54
|
context["segment"] = "events"
|
|
@@ -113,7 +114,7 @@ def dashboard(request):
|
|
|
113
114
|
context["demo_version"] = True
|
|
114
115
|
|
|
115
116
|
context["recent_evaluations"] = [
|
|
116
|
-
(Evaluation.objects.get(event_id=event.id), event)
|
|
117
|
+
(Evaluation.objects.exclude(status=Evaluation.Status.Invalid).get(event_id=event.id), event)
|
|
117
118
|
for event in sorted(EventRecord.objects.all(),
|
|
118
119
|
key=lambda x: x.motion_data["event_date"], reverse=True)[:6]
|
|
119
120
|
]
|
|
@@ -124,7 +125,7 @@ def dashboard(request):
|
|
|
124
125
|
asset.id: max(event[1].pga for event in context["recent_evaluations"] if event[1].cesmd == asset.cesmd)
|
|
125
126
|
for asset in assets
|
|
126
127
|
}
|
|
127
|
-
|
|
128
|
+
|
|
128
129
|
context["asset_map"] = AssetMap(assets, colors=colors, color_name="Peak Station Accel.").get_html()
|
|
129
130
|
context["calid"] = {b.cesmd: b.calid for b in assets}
|
|
130
131
|
|
|
@@ -191,7 +192,7 @@ def asset_profile(request, calid):
|
|
|
191
192
|
|
|
192
193
|
# Compute Hazus fragility probabilities and curve
|
|
193
194
|
try:
|
|
194
|
-
hazus_results = hazus_fragility(asset.nbi_data
|
|
195
|
+
hazus_results = hazus_fragility(asset.nbi_data)
|
|
195
196
|
|
|
196
197
|
# Add fragility probabilities and plot to the context
|
|
197
198
|
context["hazus"] = {
|
|
@@ -205,7 +206,8 @@ def asset_profile(request, calid):
|
|
|
205
206
|
"curves": json.dumps(hazus_results["curves"])
|
|
206
207
|
# "plot_base64": hazus_results.get("plot_base64"),
|
|
207
208
|
}
|
|
208
|
-
except:
|
|
209
|
+
except Exception as e:
|
|
210
|
+
print(e)
|
|
209
211
|
pass
|
|
210
212
|
|
|
211
213
|
|
|
@@ -214,8 +216,10 @@ def asset_profile(request, calid):
|
|
|
214
216
|
if asset.cesmd:
|
|
215
217
|
cesmd = asset.cesmd
|
|
216
218
|
|
|
217
|
-
events = list(
|
|
218
|
-
|
|
219
|
+
events = list(sorted(
|
|
220
|
+
(e.event for e in Evaluation.objects.exclude(status=Evaluation.Status.Invalid).filter(asset=asset)),
|
|
221
|
+
key=lambda x: x.motion_data["event_date"], reverse=True))
|
|
222
|
+
|
|
219
223
|
|
|
220
224
|
evals = [
|
|
221
225
|
{"event": event,
|
|
@@ -59,20 +59,32 @@
|
|
|
59
59
|
</tbody>
|
|
60
60
|
</table>
|
|
61
61
|
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
62
|
+
<div class="card-footer px-3 border-0 d-flex flex-column flex-lg-row align-items-center justify-content-between">
|
|
63
|
+
<nav aria-label="Page navigation example">
|
|
64
|
+
<ul class="pagination mb-0">
|
|
65
|
+
<li class="page-item {% if not evaluations.has_previous %}disabled{% endif %}">
|
|
66
|
+
{% if evaluations.has_previous %}
|
|
67
|
+
<a class="page-link" href="?page={{ evaluations.previous_page_number }}&{{ page_query }}">Previous</a>
|
|
68
|
+
{% else %}
|
|
69
|
+
<a class="page-link disabled" href="#">Previous</a>
|
|
70
|
+
{% endif %}
|
|
71
|
+
</li>
|
|
72
|
+
{% for page in evaluations.paginator.page_range %}
|
|
73
|
+
{% if page <= evaluations.number|add:3 and page >= evaluations.number|add:-3 %}
|
|
74
|
+
<li class="page-item {% if page == evaluations.number %}active{% endif %}">
|
|
75
|
+
<a class="page-link" href="?page={{ page }}&{{ page_query }}">{{ page }}</a>
|
|
76
|
+
</li>
|
|
77
|
+
{% endif %}
|
|
78
|
+
{% endfor %}
|
|
79
|
+
<li class="page-item {% if not evaluations.has_next %}disabled{% endif %}">
|
|
80
|
+
{% if evaluations.has_next %}
|
|
81
|
+
<a class="page-link" href="?page={{ evaluations.next_page_number }}&{{ page_query }}">Next</a>
|
|
82
|
+
{% else %}
|
|
83
|
+
<a class="page-link disabled" href="#">Next</a>
|
|
84
|
+
{% endif %}
|
|
85
|
+
</li>
|
|
86
|
+
</ul>
|
|
87
|
+
</nav>
|
|
88
|
+
<div class="fw-normal small mt-4 mt-lg-0">Showing <b>{{ evaluations|length }}</b> out of <b>{{ evaluations.paginator.count }}</b> entries</div>
|
|
89
|
+
</div>
|
|
78
90
|
</div>
|
|
@@ -20,11 +20,10 @@
|
|
|
20
20
|
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
|
|
21
21
|
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
|
|
22
22
|
<li class="breadcrumb-item">
|
|
23
|
-
<a href="
|
|
23
|
+
<a href="{% url 'dashboard' %}">
|
|
24
24
|
<svg class="icon icon-xxs" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path></svg>
|
|
25
25
|
</a>
|
|
26
26
|
</li>
|
|
27
|
-
<li class="breadcrumb-item"><a href="{% url 'dashboard' %}">BRACE<sup>2</sup></a></li>
|
|
28
27
|
<li class="breadcrumb-item" aria-current="page">Evaluations</li>
|
|
29
28
|
<li class="breadcrumb-item" aria-current="page">{{ event.id }}</li>
|
|
30
29
|
<li class="breadcrumb-item active"><code>{{ asset.calid }}</code></li>
|
|
@@ -126,11 +126,10 @@
|
|
|
126
126
|
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
|
|
127
127
|
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
|
|
128
128
|
<li class="breadcrumb-item">
|
|
129
|
-
<a href="
|
|
129
|
+
<a href="{% url 'dashboard' %}">
|
|
130
130
|
<svg class="icon icon-xxs" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path></svg>
|
|
131
131
|
</a>
|
|
132
132
|
</li>
|
|
133
|
-
<li class="breadcrumb-item"><a href="{% url 'dashboard' %}">BRACE<sup>2</sup></a></li>
|
|
134
133
|
<li class="breadcrumb-item" aria-current="page"><a href="{% url 'asset_table' %}">Inventory</a></li>
|
|
135
134
|
<li class="breadcrumb-item active"><code>{{ asset.calid }}</code></li>
|
|
136
135
|
</ol>
|
|
@@ -243,24 +242,26 @@
|
|
|
243
242
|
<div class="col-8 mb-4">
|
|
244
243
|
{% for table in tables %}
|
|
245
244
|
<div class="card bg-white-100 border-0 shadow table-wrapper table-responsive">
|
|
246
|
-
<div class="card
|
|
247
|
-
<
|
|
248
|
-
<
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
<
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
245
|
+
<div class="card">
|
|
246
|
+
<div class="card-body shadow table-wrapper table-responsive">
|
|
247
|
+
<table class="table table-hover" style="display: block;">
|
|
248
|
+
<caption>{{asset.calid}} Table {{forloop.counter}}</caption>
|
|
249
|
+
{# <thead><tr><th>Key</th> <th>Value</th></tr></thead> #}
|
|
250
|
+
<tbody>
|
|
251
|
+
{# <tr><td><b>CESMD</b></td><td>{{ asset_data.cesmd }}</td></tr> #}
|
|
252
|
+
{% for key,val in table.items %}
|
|
253
|
+
{% if val %}
|
|
254
|
+
<tr>
|
|
255
|
+
<th scope="row" style="text-align:left; width:40%;">{{ key }}</th>
|
|
256
|
+
<!-- The inline style here ensures that
|
|
257
|
+
there are line breaks in rows with long text -->
|
|
258
|
+
<td style="width: 60%; white-space: normal !important;word-wrap: break-word;">{{ val }}</td>
|
|
259
|
+
</tr>
|
|
260
|
+
{% endif %}
|
|
261
|
+
{% endfor %}
|
|
262
|
+
</tbody>
|
|
263
|
+
</table>
|
|
264
|
+
</div>
|
|
264
265
|
</div>
|
|
265
266
|
</div>
|
|
266
267
|
<br>
|
|
@@ -28,11 +28,10 @@ table a[href^="https://"]::after
|
|
|
28
28
|
<nav aria-label="breadcrumb" class="d-none d-md-inline-block">
|
|
29
29
|
<ol class="breadcrumb breadcrumb-dark breadcrumb-transparent">
|
|
30
30
|
<li class="breadcrumb-item">
|
|
31
|
-
<a href="
|
|
31
|
+
<a href="{% url 'dashboard' %}">
|
|
32
32
|
<svg class="icon icon-xxs" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M3 12l2-2m0 0l7-7 7 7M5 10v10a1 1 0 001 1h3m10-11l2 2m-2-2v10a1 1 0 01-1 1h-3m-6 0a1 1 0 001-1v-4a1 1 0 011-1h2a1 1 0 011 1v4a1 1 0 001 1m-6 0h6"></path></svg>
|
|
33
33
|
</a>
|
|
34
34
|
</li>
|
|
35
|
-
<li class="breadcrumb-item"><a href="{% url 'dashboard' %}">BRACE<sup>2</sup></a></li>
|
|
36
35
|
<li class="breadcrumb-item active" aria-current="page">Inventory</li>
|
|
37
36
|
</ol>
|
|
38
37
|
</nav>
|
irie/core/urls.py
CHANGED
|
@@ -11,6 +11,7 @@ from django.conf import settings
|
|
|
11
11
|
from django.conf.urls.static import static
|
|
12
12
|
from django.contrib import admin
|
|
13
13
|
from django.urls import path, include
|
|
14
|
+
from django.views.generic.base import TemplateView
|
|
14
15
|
|
|
15
16
|
admin.site.site_header = "IRiE"
|
|
16
17
|
admin.site.index_title = "IRiE"
|
|
@@ -18,6 +19,11 @@ admin.site.site_title = "IRiE"
|
|
|
18
19
|
|
|
19
20
|
urlpatterns = [
|
|
20
21
|
path('admin/', admin.site.urls),
|
|
22
|
+
path(
|
|
23
|
+
"robots.txt",
|
|
24
|
+
TemplateView.as_view(template_name="site/robots.txt", content_type="text/plain"),
|
|
25
|
+
),
|
|
26
|
+
|
|
21
27
|
|
|
22
28
|
# Authentication routes
|
|
23
29
|
path("", include("irie.apps.authentication.urls")),
|
irie/init/__main__.py
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: irie
|
|
3
|
-
Version: 0.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 0.0.21
|
|
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
|
|
7
7
|
Project-URL: Documentation, https://stairlab.berkeley.edu/software/irie/
|
|
@@ -23,12 +23,13 @@ irie/apps/documents/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5
|
|
|
23
23
|
irie/apps/evaluation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
24
24
|
irie/apps/evaluation/admin.py,sha256=kn7L9M8Vrcc8UfmnwOV_JS8TV464-21xEKV6VyX2Ni8,1379
|
|
25
25
|
irie/apps/evaluation/apps.py,sha256=siqeOaH_tmCU0edSPIWcw_6cmvw5gHWpbeWWbuTUYGM,557
|
|
26
|
-
irie/apps/evaluation/daemon.py,sha256=
|
|
26
|
+
irie/apps/evaluation/daemon.py,sha256=9iTefaGUOELIqJgeSdZUPcx7rKdRvxkVuwDpQ1DM7ME,3405
|
|
27
27
|
irie/apps/evaluation/identification.py,sha256=Y1c6AlUlawas2fVOxDxowK_W1aJEDhe9b3NUYIXf40M,6183
|
|
28
|
-
irie/apps/evaluation/models.py,sha256=
|
|
28
|
+
irie/apps/evaluation/models.py,sha256=Wks_phbD1fOG7aGj1W7XQuJB1EaUf1lWBHRdgEMqo34,2970
|
|
29
29
|
irie/apps/evaluation/urls.py,sha256=DnLB-MADpbZZxmdmgPbx2CAvdPv2X0pVgvoJmrYwzr0,483
|
|
30
30
|
irie/apps/evaluation/views.py,sha256=vhQpT7Q-rotzmU_VB6Dx-1RxpX454cqK2nz4aIPp4YI,2341
|
|
31
31
|
irie/apps/evaluation/migrations/0001_initial.py,sha256=Bu9By3pDY-Dls_dSUGBQOGlrs0dGQPRCZrOC7gxtb1I,846
|
|
32
|
+
irie/apps/evaluation/migrations/0002_evaluation_status.py,sha256=XkvEtJDmE7h48wrj_dguhAUmFSk2nMUYD09c8nhvp9c,494
|
|
32
33
|
irie/apps/evaluation/migrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
34
|
irie/apps/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
34
35
|
irie/apps/events/admin.py,sha256=YbPPlS1d4NZ-Ah3LVtIKER1wtVK-y7kRA9H_-ql9kRs,342
|
|
@@ -56,7 +57,7 @@ irie/apps/inventory/sitemaps.py,sha256=yc3UMVuGWA8vC9zHseY1jfkeRw5_jTYjy-UUcGtGw
|
|
|
56
57
|
irie/apps/inventory/tables.py,sha256=vZdPOcbN1ibuWXqLwbBUoQw9iavwa1GJ5fd83k8bu7Y,27874
|
|
57
58
|
irie/apps/inventory/traffic.py,sha256=B3PHqn2Pm4AEdUZ_tuA16fuFruo2rm5waMBwLQyF-9g,4490337
|
|
58
59
|
irie/apps/inventory/urls.py,sha256=mpmHjvDSHhC5xrEosbTH_h2bGWNJfslGcrt2mnUO40E,1019
|
|
59
|
-
irie/apps/inventory/views.py,sha256=
|
|
60
|
+
irie/apps/inventory/views.py,sha256=xOFxT4Te6zYEFCJNKCsJF4YDk5do-HcfWpBPMvuBBsI,14549
|
|
60
61
|
irie/apps/inventory/archive/arcGIS.py,sha256=vcfsy1be4edOXD1Z3rkUnq9QmCTol7dypdF816Q3B_w,34893
|
|
61
62
|
irie/apps/inventory/migrations/0001_initial.py,sha256=PwTHv4Q3gqWFha--8Zp9kUOh-cYalB14jXj7RVJUVnw,1786
|
|
62
63
|
irie/apps/inventory/migrations/0002_alter_asset_bridge_sensors_and_more.py,sha256=rPzWHkjg-ZCorVA_gv6MVb5F6LTLHcwlPwhBR1PxVr0,842
|
|
@@ -362,7 +363,7 @@ irie/apps/templates/events/events.html,sha256=0PIELQsPVj1iv4moWKEOMfp4zbcSfkj5BC
|
|
|
362
363
|
irie/apps/templates/events/login.html,sha256=00rGrQsHXwQXbh2qF7WzEgIA4LjcbvcefALmD9EQCRg,550
|
|
363
364
|
irie/apps/templates/events/react_and_bootstrap.html,sha256=mwxjUMD5OMEI1JMNcWYxz7Ju5rq5R2spf6y_G7mYAUs,802
|
|
364
365
|
irie/apps/templates/home/asset.html,sha256=nqzMy59L2yDalJbbK4j-MCFcBtXTUSMTkqkGwmlSriU,22323
|
|
365
|
-
irie/apps/templates/includes/asset-event-table.html,sha256=
|
|
366
|
+
irie/apps/templates/includes/asset-event-table.html,sha256=ovAsKYVHKXRkS7znaDd9QzuaFG6M_2CY7yanYnC8k2w,4243
|
|
366
367
|
irie/apps/templates/includes/footer.html,sha256=uCZVHypr9ZXgU3SsQvOn3U_SuzCGubm6E1cIISvKlX0,617
|
|
367
368
|
irie/apps/templates/includes/modal-report.html,sha256=iqD6g9R4R7G426wLVL46H5fufWYAA3K8Acav9b0DQoU,3592
|
|
368
369
|
irie/apps/templates/includes/navigation.html,sha256=6iGTqLbmbUqJb37VOWoSQvw_2LeiMIINI2v4Fm_GGZM,13658
|
|
@@ -370,9 +371,9 @@ irie/apps/templates/includes/paginate.js,sha256=dAaL4uFQzEIbm61c_USEHlQLFkKc2ndJ
|
|
|
370
371
|
irie/apps/templates/includes/scripts.html,sha256=1Up6xJJSTpdLTJp0tDAa3JubevvSlicOE4_j1vEOkek,1190
|
|
371
372
|
irie/apps/templates/includes/settings-box.html,sha256=wexsLS4SMRyKci-r4L_LQ6QM27h4U291091NcGiTT3o,2486
|
|
372
373
|
irie/apps/templates/includes/sidebar.html,sha256=uJnzXtcV7UvXscvEHe5z0wpLsFZk8B9mj1_Ye08NRbY,10972
|
|
373
|
-
irie/apps/templates/inventory/asset-event-summary.html,sha256=
|
|
374
|
-
irie/apps/templates/inventory/asset-profile.html,sha256=
|
|
375
|
-
irie/apps/templates/inventory/asset-table.html,sha256=
|
|
374
|
+
irie/apps/templates/inventory/asset-event-summary.html,sha256=BmLAFtfNDi98aZIu5WbkPMda-QZgoWhssN6l3e2QLgE,50672
|
|
375
|
+
irie/apps/templates/inventory/asset-profile.html,sha256=lVH983PV9EIgugsfqb8Y94JrPMmD84OFX9twUNdjXno,11287
|
|
376
|
+
irie/apps/templates/inventory/asset-table.html,sha256=hiPrumCigE_m1H6vSr8l-AoRosV8WnFuRg89cuzavvY,12129
|
|
376
377
|
irie/apps/templates/inventory/bridge-dashboard.html,sha256=67zrDlih3LOi9xFVwPVZZkgRT3DO-lE_qRL7q8Uz9GY,45472
|
|
377
378
|
irie/apps/templates/inventory/bridge.html,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1
|
|
378
379
|
irie/apps/templates/inventory/dashboard.html,sha256=yKEqsdSQpLIxv-E2sytN3yPNN9Li0q4488N3VVT9Jg8,7604
|
|
@@ -407,6 +408,7 @@ irie/apps/templates/site/page-lock.html,sha256=ZVn1xyhku1jROxozMyPwMCqS7EsRwG7Z6
|
|
|
407
408
|
irie/apps/templates/site/page-reset-password.html,sha256=zr2hSaWshUfWanI07vgwfxLR28APCTwhkWHd5-cr-v8,4239
|
|
408
409
|
irie/apps/templates/site/page-sign-in.html,sha256=Ss0xdxhcE0fDzBbxG4NEYFm3XVkfV9knmZWWInU6gq8,9059
|
|
409
410
|
irie/apps/templates/site/page-sign-up.html,sha256=Tft2RQqxzPLyeAWAYoTQnYePs4ym_0bjPuW2p3DbGQ0,9600
|
|
411
|
+
irie/apps/templates/site/robots.txt,sha256=FAwdlPB3oATEIu1W2sp-j6PmcB2YU3-ouCRvN4tRmn8,119
|
|
410
412
|
irie/apps/templates/site/settings.html,sha256=R86LHk7zv3PcZlZoH4iVmvpPc7iGLR8kwAPvsUNF2lU,13423
|
|
411
413
|
irie/apps/templates/site/tables-bootstrap-tables.html,sha256=NDeyVoNLkgFpvqOWMRBQ9uLORirhz-O-LSXFfT2mv88,26683
|
|
412
414
|
irie/apps/templates/site/transactions.html,sha256=-heynHR8PTt_C4P3IWmYG_VE1aGH68ICLLnbfbOuwRs,24116
|
|
@@ -414,10 +416,10 @@ irie/apps/templates/site/unused-dashboard-cards.html,sha256=DDNWrnIf4o0wj06WYH8Y
|
|
|
414
416
|
irie/core/__init__.py,sha256=wkkNngGxgYcCM745-rlvP6ynrI0b0QN3aWmLWDsR8zU,230
|
|
415
417
|
irie/core/asgi.py,sha256=3lVQKFRA4bznM2mWu5Cv24a5H9pfb6YU07q-I_TN0DM,395
|
|
416
418
|
irie/core/settings.py,sha256=9jqn02olEya6O2p3pABLFhmHRwl_U05sOAtluo6y1Rg,6342
|
|
417
|
-
irie/core/urls.py,sha256=
|
|
419
|
+
irie/core/urls.py,sha256=gxPSV6OhMGYm2O2uRJjFSTOjcIKSXuMeEyAmQcUctLU,1460
|
|
418
420
|
irie/core/wsgi.py,sha256=8dxK789vOoRWm0IatEhNqMgZhov9TlspjM6hOUbjg24,395
|
|
419
421
|
irie/init/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
420
|
-
irie/init/__main__.py,sha256=
|
|
422
|
+
irie/init/__main__.py,sha256=EMfVc-Q-IPi1uBU3vOkoP4_-JMWpK1dFnqu3prfXsDM,589
|
|
421
423
|
irie/init/bridges.py,sha256=vWDhpQ42Ws9SHUMPw5N8sEQ_7PXbdXRK1SUlSMQQCeI,74681
|
|
422
424
|
irie/init/calid.py,sha256=Q6ie1irxm9EiGdxuR2OD05Hffg0UsTWIxQJha-kWkVs,1331
|
|
423
425
|
irie/init/getCGSData.py,sha256=iZG3Ab1Y_rhiliKCPNy0MZrKBsfEe6ShgSFz2ttvTUU,2916
|
|
@@ -436,8 +438,8 @@ irie/init/management/commands/init_corridors.py,sha256=EzLk0HUiFxlco-2u0rypewOc9
|
|
|
436
438
|
irie/init/management/commands/init_predictors.py,sha256=jdD7rd8l2qxuUuR5GOYuHXp-ZQkAK477TefksBMdlOw,2362
|
|
437
439
|
irie/rest/__main__.py,sha256=6Nf_-Rr9zGmMyp_wqCFDO7ls9QPnPd9UyUgN17rIGYw,3680
|
|
438
440
|
irie/usgs/__main__.py,sha256=HiSvPn5IW5IqRiCk1qRRq5dCy3-7iISw7v1P_w2rLrk,5049
|
|
439
|
-
irie-0.0.
|
|
440
|
-
irie-0.0.
|
|
441
|
-
irie-0.0.
|
|
442
|
-
irie-0.0.
|
|
443
|
-
irie-0.0.
|
|
441
|
+
irie-0.0.21.dist-info/METADATA,sha256=zcQb6vRAYraG6jkwTZtPjklZbNUbTXwFsLwXQNH3eBI,3247
|
|
442
|
+
irie-0.0.21.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
443
|
+
irie-0.0.21.dist-info/entry_points.txt,sha256=A_3h9wPBGfxGQ78_MGa-nO6Z0foxOYeAnIE47jxEztg,44
|
|
444
|
+
irie-0.0.21.dist-info/top_level.txt,sha256=zVCxi5E2nkISZPzKq8VEhWe_dGuPcefLYV1tYqQdwlY,5
|
|
445
|
+
irie-0.0.21.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|