This website requires JavaScript.
Explore
Help
Sign In
Software
/
rosa-build
mirror of
https://github.com/OpenMandrivaSoftware/rosa-build.git
Watch
1
Star
0
Fork
You've already forked rosa-build
0
Code
Issues
Projects
Releases
Wiki
Activity
9c06e35842
rosa-build
/
app
/
helpers
/
projects_helper.rb
6 lines
106 B
Ruby
Raw
Normal View
History
Unescape
Escape
Platforms list + UI enchancements
2011-03-10 11:35:46 +00:00
module
ProjectsHelper
Apply basic git repo functionality operation: add, change, destroy user ssh_key. Create, destroy, open/close project git repos. Calc project owner. Improve UI for users, groups and projects: fix links and routes, add actions refactor. Other minor fixes and refactoring. Add ssh_key uniqness check. Add uname uniqness check between User and Group. Check project owner ssh_key existance before project creation. Temporary disable uname and unixname change due to gitolite stranges. Refs #2136
2011-10-26 21:57:51 +01:00
def
git_repo_url
(
name
)
Change project redirect rules. Fux git repo clone port. Refs #2136
2011-10-27 23:43:44 +01:00
"
ssh://git@
#{
request
.
host
}
:1822/
#{
name
}
.git
"
Apply basic git repo functionality operation: add, change, destroy user ssh_key. Create, destroy, open/close project git repos. Calc project owner. Improve UI for users, groups and projects: fix links and routes, add actions refactor. Other minor fixes and refactoring. Add ssh_key uniqness check. Add uname uniqness check between User and Group. Check project owner ssh_key existance before project creation. Temporary disable uname and unixname change due to gitolite stranges. Refs #2136
2011-10-26 21:57:51 +01:00
end
Platforms list + UI enchancements
2011-03-10 11:35:46 +00:00
end