Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
cc4405db
Commit
cc4405db
authored
Aug 03, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'add-license'
parents
c1c89500
f71d67dd
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
69 additions
and
8 deletions
+69
-8
CHANGELOG
CHANGELOG
+1
-0
app/assets/stylesheets/pages/projects.scss
app/assets/stylesheets/pages/projects.scss
+9
-0
app/helpers/projects_helper.rb
app/helpers/projects_helper.rb
+40
-4
app/views/projects/show.html.haml
app/views/projects/show.html.haml
+18
-3
app/views/shared/issuable/_form.html.haml
app/views/shared/issuable/_form.html.haml
+1
-1
No files found.
CHANGELOG
View file @
cc4405db
...
@@ -25,6 +25,7 @@ v 7.14.0 (unreleased)
...
@@ -25,6 +25,7 @@ v 7.14.0 (unreleased)
- Fix bug causing Bitbucket importer to crash when OAuth application had been removed.
- Fix bug causing Bitbucket importer to crash when OAuth application had been removed.
- Add fetch command to the MR page.
- Add fetch command to the MR page.
- Add ability to manage user email addresses via the API.
- Add ability to manage user email addresses via the API.
- Show buttons to add license, changelog and contribution guide if they're missing.
- Disabled autocapitalize and autocorrect on login field (Daryl Chan)
- Disabled autocapitalize and autocorrect on login field (Daryl Chan)
- Mention group and project name in creation, update and deletion notices (Achilleas Pipinellis)
- Mention group and project name in creation, update and deletion notices (Achilleas Pipinellis)
- Remove redis-store TTL monkey patch
- Remove redis-store TTL monkey patch
...
...
app/assets/stylesheets/pages/projects.scss
View file @
cc4405db
...
@@ -297,6 +297,15 @@ table.table.protected-branches-list tr.no-border {
...
@@ -297,6 +297,15 @@ table.table.protected-branches-list tr.no-border {
ul
.nav-pills
{
display
:inline-block
;
}
ul
.nav-pills
{
display
:inline-block
;
}
li
{
display
:inline
;
}
li
{
display
:inline
;
}
a
{
float
:left
;
}
a
{
float
:left
;
}
li
.missing
a
{
color
:
#bbb
;
border
:
1px
dashed
#ccc
;
&
:hover
{
background-color
:
#FAFAFA
;
}
}
}
}
pre
.light-well
{
pre
.light-well
{
...
...
app/helpers/projects_helper.rb
View file @
cc4405db
...
@@ -184,7 +184,43 @@ module ProjectsHelper
...
@@ -184,7 +184,43 @@ module ProjectsHelper
end
end
end
end
def
contribution_guide_url
(
project
)
def
add_contribution_guide_path
(
project
)
if
project
&&
!
project
.
repository
.
contribution_guide
namespace_project_new_blob_path
(
project
.
namespace
,
project
,
project
.
default_branch
,
file_name:
"CONTRIBUTING.md"
,
commit_message:
"Add contribution guide"
)
end
end
def
add_changelog_path
(
project
)
if
project
&&
!
project
.
repository
.
changelog
namespace_project_new_blob_path
(
project
.
namespace
,
project
,
project
.
default_branch
,
file_name:
"CHANGELOG"
,
commit_message:
"Add changelog"
)
end
end
def
add_license_path
(
project
)
if
project
&&
!
project
.
repository
.
license
namespace_project_new_blob_path
(
project
.
namespace
,
project
,
project
.
default_branch
,
file_name:
"LICENSE"
,
commit_message:
"Add license"
)
end
end
def
contribution_guide_path
(
project
)
if
project
&&
contribution_guide
=
project
.
repository
.
contribution_guide
if
project
&&
contribution_guide
=
project
.
repository
.
contribution_guide
namespace_project_blob_path
(
namespace_project_blob_path
(
project
.
namespace
,
project
.
namespace
,
...
@@ -195,7 +231,7 @@ module ProjectsHelper
...
@@ -195,7 +231,7 @@ module ProjectsHelper
end
end
end
end
def
changelog_
url
(
project
)
def
changelog_
path
(
project
)
if
project
&&
changelog
=
project
.
repository
.
changelog
if
project
&&
changelog
=
project
.
repository
.
changelog
namespace_project_blob_path
(
namespace_project_blob_path
(
project
.
namespace
,
project
.
namespace
,
...
@@ -206,7 +242,7 @@ module ProjectsHelper
...
@@ -206,7 +242,7 @@ module ProjectsHelper
end
end
end
end
def
license_
url
(
project
)
def
license_
path
(
project
)
if
project
&&
license
=
project
.
repository
.
license
if
project
&&
license
=
project
.
repository
.
license
namespace_project_blob_path
(
namespace_project_blob_path
(
project
.
namespace
,
project
.
namespace
,
...
@@ -217,7 +253,7 @@ module ProjectsHelper
...
@@ -217,7 +253,7 @@ module ProjectsHelper
end
end
end
end
def
version_
url
(
project
)
def
version_
path
(
project
)
if
project
&&
version
=
project
.
repository
.
version
if
project
&&
version
=
project
.
repository
.
version
namespace_project_blob_path
(
namespace_project_blob_path
(
project
.
namespace
,
project
.
namespace
,
...
...
app/views/projects/show.html.haml
View file @
cc4405db
...
@@ -22,19 +22,34 @@
...
@@ -22,19 +22,34 @@
%li
%li
=
link_to
namespace_project_tags_path
(
@project
.
namespace
,
@project
)
do
=
link_to
namespace_project_tags_path
(
@project
.
namespace
,
@project
)
do
=
pluralize
(
number_with_delimiter
(
@repository
.
tag_names
.
count
),
'tag'
)
=
pluralize
(
number_with_delimiter
(
@repository
.
tag_names
.
count
),
'tag'
)
-
if
@repository
.
changelog
-
if
@repository
.
changelog
%li
%li
=
link_to
changelog_
url
(
@project
)
do
=
link_to
changelog_
path
(
@project
)
do
Changelog
Changelog
-
if
@repository
.
license
-
if
@repository
.
license
%li
%li
=
link_to
license_
url
(
@project
)
do
=
link_to
license_
path
(
@project
)
do
License
License
-
if
@repository
.
contribution_guide
-
if
@repository
.
contribution_guide
%li
%li
=
link_to
contribution_guide_
url
(
@project
)
do
=
link_to
contribution_guide_
path
(
@project
)
do
Contribution guide
Contribution guide
-
if
current_user
&&
can_push_branch?
(
@project
,
@project
.
default_branch
)
-
unless
@repository
.
changelog
%li
.missing
=
link_to
add_changelog_path
(
@project
)
do
Add Changelog
-
unless
@repository
.
license
%li
.missing
=
link_to
add_license_path
(
@project
)
do
Add License
-
unless
@repository
.
contribution_guide
%li
.missing
=
link_to
add_contribution_guide_path
(
@project
)
do
Add Contribution guide
-
if
@project
.
archived?
-
if
@project
.
archived?
.text-warning.center.prepend-top-20
.text-warning.center.prepend-top-20
%p
%p
...
...
app/views/shared/issuable/_form.html.haml
View file @
cc4405db
...
@@ -100,7 +100,7 @@
...
@@ -100,7 +100,7 @@
=
link_to
'Change branches'
,
mr_change_branches_path
(
@merge_request
)
=
link_to
'Change branches'
,
mr_change_branches_path
(
@merge_request
)
.form-actions
.form-actions
-
if
!
issuable
.
project
.
empty_repo?
&&
(
guide_url
=
contribution_guide_
url
(
issuable
.
project
))
&&
!
issuable
.
persisted?
-
if
!
issuable
.
project
.
empty_repo?
&&
(
guide_url
=
contribution_guide_
path
(
issuable
.
project
))
&&
!
issuable
.
persisted?
%p
%p
Please review the
Please review the
%strong
#{
link_to
'guidelines for contribution'
,
guide_url
}
%strong
#{
link_to
'guidelines for contribution'
,
guide_url
}
...
...
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