Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
sakia
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor 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
Santiago
sakia
Commits
97ad08d7
Commit
97ad08d7
authored
10 years ago
by
inso
Browse files
Options
Downloads
Patches
Plain Diff
Fixing bug in communities management process
parent
9642d6c5
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/cutecoin/core/community.py
+1
-0
1 addition, 0 deletions
src/cutecoin/core/community.py
src/cutecoin/gui/process_cfg_account.py
+1
-10
1 addition, 10 deletions
src/cutecoin/gui/process_cfg_account.py
src/cutecoin/gui/process_cfg_community.py
+2
-1
2 additions, 1 deletion
src/cutecoin/gui/process_cfg_community.py
with
4 additions
and
11 deletions
src/cutecoin/core/community.py
+
1
−
0
View file @
97ad08d7
...
@@ -30,6 +30,7 @@ class Community(object):
...
@@ -30,6 +30,7 @@ class Community(object):
# After initializing the community from latest peers,
# After initializing the community from latest peers,
# we refresh its peers tree
# we refresh its peers tree
logging
.
debug
(
"
Creating community
"
)
found_peers
=
self
.
peering
()
found_peers
=
self
.
peering
()
for
p
in
found_peers
:
for
p
in
found_peers
:
if
p
.
pubkey
not
in
[
peer
.
pubkey
for
peer
in
peers
]:
if
p
.
pubkey
not
in
[
peer
.
pubkey
for
peer
in
peers
]:
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/gui/process_cfg_account.py
+
1
−
10
View file @
97ad08d7
...
@@ -106,16 +106,7 @@ class StepPageCommunities(Step):
...
@@ -106,16 +106,7 @@ class StepPageCommunities(Step):
return
True
return
True
def
process_next
(
self
):
def
process_next
(
self
):
'''
pass
We create the community
'''
logging
.
debug
(
"
Communities NEXT
"
)
server
=
self
.
config_dialog
.
lineedit_server
.
text
()
port
=
self
.
config_dialog
.
spinbox_port
.
value
()
account
=
self
.
config_dialog
.
account
self
.
config_dialog
.
community
=
account
.
add_community
(
server
,
port
)
self
.
config_dialog
.
refresh
()
def
display_page
(
self
):
def
display_page
(
self
):
logging
.
debug
(
"
Communities DISPLAY
"
)
logging
.
debug
(
"
Communities DISPLAY
"
)
...
...
This diff is collapsed.
Click to expand it.
src/cutecoin/gui/process_cfg_community.py
+
2
−
1
View file @
97ad08d7
...
@@ -190,6 +190,7 @@ class ProcessConfigureCommunity(QDialog, Ui_CommunityConfigurationDialog):
...
@@ -190,6 +190,7 @@ class ProcessConfigureCommunity(QDialog, Ui_CommunityConfigurationDialog):
else
:
else
:
return
return
self
.
account
.
add_community
(
self
.
community
)
if
self
.
community
not
in
self
.
account
.
communities
:
self
.
account
.
add_community
(
self
.
community
)
self
.
accepted
.
emit
()
self
.
accepted
.
emit
()
self
.
close
()
self
.
close
()
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