Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
A
Aspava
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
Aspava
Commits
7640bc0d
Kaydet (Commit)
7640bc0d
authored
May 10, 2019
tarafından
Batuhan Taşkaya
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
bump evality
üst
1e8bd49f
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
8 additions
and
8 deletions
+8
-8
Pipfile
Pipfile
+1
-1
Pipfile.lock
Pipfile.lock
+3
-3
home.html
social/templates/home.html
+1
-1
renderer.py
social/templatetags/renderer.py
+2
-2
__init__.py
social/views/__init__.py
+1
-1
No files found.
Pipfile
Dosyayı görüntüle @
7640bc0d
...
...
@@ -14,7 +14,7 @@ django-simple-captcha = "*"
gunicorn = "*"
whitenoise = "*"
docker = "*"
evality = "
*
"
evality = "
==0.1.2
"
[scripts]
start = "gunicorn aspava.wsgi:application --bind localhost:8000"
...
...
Pipfile.lock
Dosyayı görüntüle @
7640bc0d
{
"_meta": {
"hash": {
"sha256": "
9307ed3d11b645b880db4b0e5e180197dad37fd639af18f6f5c48d0ef32c7552
"
"sha256": "
f81289205e0d2d872d2676bf4620fafa2a85458a7ab4e456b3d92d0775bc2f2b
"
},
"pipfile-spec": 6,
"requires": {
...
...
@@ -83,10 +83,10 @@
},
"evality": {
"hashes": [
"sha256:
72cebb40889c2385d7ab8ee91d3718beef71fa56a167df7c804f2403a0f80302
"
"sha256:
bc01b97d1b31c78225dd9019f4ccc1b5cca591dad6a5b384eb24ef8f50777d9b
"
],
"index": "pypi",
"version": "==0.1"
"version": "==0.1
.2
"
},
"gunicorn": {
"hashes": [
...
...
social/templates/home.html
Dosyayı görüntüle @
7640bc0d
...
...
@@ -11,7 +11,7 @@
<div
class=
"container-fluid __{{ item | get_class }}"
>
<fieldset
class=
"border p-2"
>
<legend
class=
"w-auto"
><a
href=
"{% url 'profile' item.author %}"
>
{{ item.author }}
</a></legend>
{% as_html item
request.user
%}
{% as_html item %}
<small
class=
"text-muted"
>
{{ item.pub_date }}
</small>
{% if item.author == request.user %}
<small
class=
"text-muted"
><a
href=
"{% get_opt 'delete' item %}"
>
delete
</a></small>
...
...
social/templatetags/renderer.py
Dosyayı görüntüle @
7640bc0d
...
...
@@ -19,9 +19,9 @@ def get_class(item):
@register.simple_tag
def
as_html
(
item
,
user
):
def
as_html
(
item
):
result
=
render_to_string
(
f
"repr/{item.__class__.__name__.lower()}.html"
,
{
"item"
:
item
,
"user"
:
user
}
f
"repr/{item.__class__.__name__.lower()}.html"
,
{
"item"
:
item
}
)
return
result
...
...
social/views/__init__.py
Dosyayı görüntüle @
7640bc0d
...
...
@@ -26,10 +26,10 @@ class Home(ExtendedListView):
@csrf_exempt
def
run_snippet
(
request
):
snippet
=
get_object_or_404
(
Snippet
,
pk
=
request
.
POST
.
get
(
'pk'
,
None
))
global
evality
try
:
result
=
evality
.
run_cmd
(
snippet
.
text
,
snippet
.
author
.
id
)
except
docker
.
DockerException
:
global
evality
evality
.
quit
()
result
[
'id'
]
=
snippet
.
id
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment