Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Helios Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Helios Server
Commits
647193c8
Commit
647193c8
authored
14 years ago
by
Ben Adida
Browse files
Options
Downloads
Patches
Plain Diff
fixed buggy fields_to_save list management, new fab deployment items
parent
c5f70d02
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
auth/views.py
+1
-1
1 addition, 1 deletion
auth/views.py
fabfile.py
+1
-0
1 addition, 0 deletions
fabfile.py
with
2 additions
and
1 deletion
auth/views.py
+
1
−
1
View file @
647193c8
...
@@ -84,7 +84,7 @@ def do_local_logout(request):
...
@@ -84,7 +84,7 @@ def do_local_logout(request):
# let's clean up the self-referential issue:
# let's clean up the self-referential issue:
field_names_to_save
=
set
(
field_names_to_save
)
field_names_to_save
=
set
(
field_names_to_save
)
field_names_to_save
.
remove
(
FIELDS_TO_SAVE
)
field_names_to_save
=
field_names_to_save
-
set
([
FIELDS_TO_SAVE
]
)
field_names_to_save
=
list
(
field_names_to_save
)
field_names_to_save
=
list
(
field_names_to_save
)
fields_to_save
=
dict
([(
name
,
request
.
session
.
get
(
name
,
None
))
for
name
in
field_names_to_save
])
fields_to_save
=
dict
([(
name
,
request
.
session
.
get
(
name
,
None
))
for
name
in
field_names_to_save
])
...
...
This diff is collapsed.
Click to expand it.
fabfile.py
+
1
−
0
View file @
647193c8
...
@@ -35,6 +35,7 @@ def check_tag(tag, path):
...
@@ -35,6 +35,7 @@ def check_tag(tag, path):
abort
(
"
no local tag %s
"
%
tag
)
abort
(
"
no local tag %s
"
%
tag
)
with
cd
(
path
):
with
cd
(
path
):
run
(
'
git pull origin master
'
)
result
=
run
(
'
git tag
'
)
result
=
run
(
'
git tag
'
)
if
tag
not
in
result
.
split
(
"
\n
"
):
if
tag
not
in
result
.
split
(
"
\n
"
):
abort
(
"
no remote tag %s
"
%
tag
)
abort
(
"
no remote tag %s
"
%
tag
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment