Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
cloud
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
94
Merge Requests
10
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
2fd4f42c
authored
Mar 11, 2013
by
Őry Máté
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cloud: add changelog
parent
7c17ba5d
Show whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
61 additions
and
4 deletions
+61
-4
Makefile
+5
-1
cloud/context_processors.py
+5
-1
cloud/settings.py
+2
-0
cloud/templates/sites/changelog.html
+45
-0
one/templates/base.html
+3
-1
one/views.py
+1
-1
No files found.
Makefile
View file @
2fd4f42c
...
...
@@ -5,7 +5,7 @@ jsfiles += one/static/script/util.min.js
jsfiles
+=
one/static/script/store.min.js
cssfiles
+=
one/static/style/style.css
default
:
migrate generatestatic collectstatic mo restart
default
:
migrate generatestatic collectstatic mo
setbranch
restart
pulldef
:
pull default
pull
:
...
...
@@ -23,6 +23,10 @@ generatestatic: $(jsfiles) $(cssfiles)
collectstatic
:
./manage.py collectstatic
--noinput
setbranch
:
sed
-i
cloud/local_settings.py
-e
'/RELEASE=/d'
||
true
echo
"RELEASE='
`
git rev-parse
--abbrev-ref
HEAD
`
'"
>>
cloud/local_settings.py
mo
:
for
i
in
*
/locale/
*
/
*
/
*
.po
;
do
echo
-ne
"
$$
i:
\t
"
;
msgfmt
--statistics
$$
i
;
done
for
i
in
*
/
;
do
cd
$$
i
;
ls
locale &>/dev/null
&&
../manage.py compilemessages
||
true
;
cd
..
;
done
...
...
cloud/context_processors.py
View file @
2fd4f42c
from
cloud.settings
import
DEBUG
,
STAT_DEBUG
from
cloud.settings
import
DEBUG
,
STAT_DEBUG
,
RELEASE
from
django.core.cache
import
cache
import
subprocess
import
json
...
...
@@ -14,3 +14,7 @@ def process_stat(req):
'cloud_stat'
:
stat
,
}
def
process_release
(
req
):
return
{
'release'
:
RELEASE
,
}
cloud/settings.py
View file @
2fd4f42c
...
...
@@ -121,6 +121,7 @@ TEMPLATE_CONTEXT_PROCESSORS = (
'django.contrib.messages.context_processors.messages'
,
'cloud.context_processors.process_debug'
,
'cloud.context_processors.process_stat'
,
'cloud.context_processors.process_release'
,
)
TEMPLATE_DIRS
=
(
...
...
@@ -227,6 +228,7 @@ firewall_settings = {
EMAIL_HOST
=
'152.66.243.92'
# giccero ipv4
CLOUD_URL
=
'https://cloud.ik.bme.hu/'
RELEASE
=
'master'
try
:
from
cloud.local_settings
import
*
...
...
cloud/templates/sites/changelog.html
0 → 100644
View file @
2fd4f42c
{% extends "base.html" %}
{% load i18n %}
{% get_current_language as LANGUAGE_CODE %}
{% block content %}
<div
class=
"irasmu"
>
<p>
Az IK Cloud fejlesztése kéthetes ciklusokban történik, az rendes kiadások élesítése
páros heteken csütörtök este zajlik. Alább foglaljuk össze az egyes
kiadások főbb, a felhasználók által is látható változtatásait.
</p>
<h3
id=
"release-13.03.1"
><a
href=
"#13.03.1"
>
13.03.1 (2013. március 7.)
</a></h3>
<ul>
<li>
Határidős felfüggesztés élesítve.
</li>
<li>
Csatlakozási adatoknál IP cím helyett DNS név jelenik meg.
</li>
<li>
Ha a portált IPV6-on érik el, a csatlakozási adatoknál egyedi DNS név és publikus port jelenik meg.
</li>
<li>
Legújabb fájloktól vissza lehet lépni az összeshez.
</li>
<li>
Bemutató képernyő elérhető bejelentkezve is.
</li>
<li>
Megosztás adatai szerkeszthetőek.
</li>
<li>
Sablon adatai szerkeszthetőek.
</li>
<li>
Lábléc; impresszum, szabályzat, támogatás oldalak.
</li>
<li>
Megosztásnál is látszik a géptípus.
</li>
<li>
Dobozok rejthetőek.
</li>
<li>
Sablon mentésének menete gördülékenyebb.
</li>
<li>
Jelszómegjelenítés javítva.
</li>
<li>
Fájlok rendezése működik.
</li>
<li>
Segítség-dobozok bővítve.
</li>
<li>
Szebb HTTP hibaüzenetek.
</li>
<li>
Kulcs hozzáadásának visszaigazolása.
</li>
<li>
Sablonok állapotának helyes kijelzése.
</li>
<li>
Minimalizált js és css kód.
</li>
</ul>
<h3
id=
"release-13.02.2"
><a
href=
"#13.02.2"
>
13.02.2 (2013. február 21.)
</a></h3>
<ul>
<li>
Felhasználói kvóták megvalósítása.
</li>
<li>
Publikus kulcsok kezelése.
</li>
<li>
További részletek gombok.
</li>
<li>
Saját csoportok rejthetőek.
</li>
<li>
Segítség-dobozok a legtöbb helyre.
</li>
<li>
Csoporttulajdonosok kezelése, több adat megjelenítése.
</li>
<li>
VM átnevezhető.
</li>
</ul>
</div>
{% endblock %}
one/templates/base.html
View file @
2fd4f42c
...
...
@@ -78,7 +78,9 @@
<a
href=
"/sites/legal/"
>
{% trans "Legal notice" %}
</a>
|
<a
href=
"/sites/policy/"
>
{% trans "Policy" %}
</a>
|
<a
href=
"/sites/help/"
>
{% trans "Help" %}
</a>
|
<a
href=
"/sites/support/"
>
{% trans "Support" %}
</a>
<a
href=
"/sites/support/"
>
{% trans "Support" %}
</a>
|
<a
href=
"/sites/changelog/#{{release}}"
title=
"{% trans "
Change
log
"
%}"
>
{{release}}
</a>
<div
style=
"float: right"
id=
"chart_mem_div"
></div>
</div>
{% if cloud_stat %}
...
...
one/views.py
View file @
2fd4f42c
...
...
@@ -609,7 +609,7 @@ def stat(request):
)))
def
sites
(
request
,
site
):
if
site
in
[
"legal"
,
"policy"
,
"help"
,
"support"
]:
if
site
in
[
"legal"
,
"policy"
,
"help"
,
"support"
,
"changelog"
,
]:
return
render_to_response
(
"sites/
%
s.html"
%
site
,
RequestContext
(
request
,
{}))
else
:
return
redirect
(
home
)
...
...
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