-
Notifications
You must be signed in to change notification settings - Fork 52
Feature/geolocation #193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/geolocation #193
Changes from all commits
469900d
f7942ac
42f8540
924331a
ec804c8
1da45a6
142d32d
3459d19
a7c1244
8a51777
340f316
b7991bd
3ce26aa
fff5c85
ae10219
5164230
7564610
5f4a98b
6d05224
d22336e
5fff47c
6a47c98
cabc13d
07c5620
f83e939
da783b2
de0bb59
850b773
b1874cc
4809563
e104964
b46e737
79e5bad
69a22d6
d263102
8d847f9
2474c14
c082ee2
2b59fb0
489fbbc
8f69b28
3d9ebec
555d577
392a07e
8041d90
f33dcee
9d4e1c3
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -162,3 +162,7 @@ app/routers/stam | |
.idea | ||
|
||
junit/ | ||
|
||
# .DS_Store | ||
.DS_Store | ||
DS_Store |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -50,10 +50,6 @@ div.event_info_row, | |
margin-block-end: 0.2em; | ||
} | ||
|
||
.title { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No one uses that? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It was used in view_event_details_tab.html and nowhere else. |
||
border-bottom: 4px solid blue; | ||
} | ||
|
||
.title h1 { | ||
white-space: nowrap; | ||
margin-block-start: 0.2em; | ||
|
@@ -72,4 +68,8 @@ div.event_info_row, | |
|
||
button { | ||
height: 100%; | ||
} | ||
} | ||
|
||
.google_maps_object { | ||
width: 100%; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
aiofiles==0.6.0 | ||
aiohttp==3.7.3 | ||
aioredis==1.3.1 | ||
aiosmtpd==1.2.2 | ||
aiosmtplib==1.1.4 | ||
|
@@ -24,7 +25,7 @@ cachetools==4.2.0 | |
certifi==2020.12.5 | ||
cffi==1.14.4 | ||
cfgv==3.2.0 | ||
chardet==4.0.0 | ||
chardet==3.0.4 | ||
click==7.1.2 | ||
colorama==0.4.4 | ||
coverage==5.3.1 | ||
|
@@ -44,6 +45,8 @@ fastapi-mail==0.3.3.1 | |
filelock==3.0.12 | ||
flake8==3.8.4 | ||
frozendict==1.2 | ||
geographiclib==1.50 | ||
geopy==2.1.0 | ||
google-api-core==1.25.0 | ||
google-api-python-client==1.12.8 | ||
google-auth==1.24.0 | ||
|
@@ -77,13 +80,15 @@ mocker==1.1.1 | |
multidict==5.1.0 | ||
mypy==0.790 | ||
mypy-extensions==0.4.3 | ||
nest-asyncio==1.5.1 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You sure you need this? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think so. My tests encounter event loop errors if I don't use it. |
||
nltk==3.5 | ||
nodeenv==1.5.0 | ||
oauth2client==4.1.3 | ||
oauthlib==3.1.0 | ||
outcome==1.1.0 | ||
packaging==20.8 | ||
passlib==1.7.4 | ||
pathspec==0.8.1 | ||
Pillow==8.1.0 | ||
pluggy==0.13.1 | ||
pre-commit==2.10.0 | ||
|
@@ -148,4 +153,5 @@ win32-setctime==1.0.3 | |
word-forms==2.1.0 | ||
wsproto==1.0.0 | ||
yapf==0.30.0 | ||
zipp==3.4.0 | ||
yarl==1.6.3 | ||
zipp==3.4.0 |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ def fake_user_events(session): | |
create_event( | ||
db=session, | ||
title='Cool today event', | ||
color='red', | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not sure I got that, are the colors related to your feature? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No. While coding, 30 tests were failed because "color" column added to User schema and was pushed but wasn't supported by all tests written so far. Fixed it and added colors to some tests to make sure everything works. |
||
start=today_date, | ||
end=today_date + timedelta(days=2), | ||
all_day=False, | ||
|
@@ -44,6 +45,7 @@ def fake_user_events(session): | |
create_event( | ||
db=session, | ||
title='Cool (somewhen in two days) event', | ||
color='blue', | ||
start=today_date + timedelta(days=1), | ||
end=today_date + timedelta(days=3), | ||
all_day=False, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Remove the
.DS_Store
file and add it to the.gitignore
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems I can't delete the file already uploaded for some reason.
Can you help?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git rm .DS_Store