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
0
Merge Requests
0
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
Jérome Perrin
gitlab-ce
Commits
231b91d0
Commit
231b91d0
authored
Dec 29, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'master' of github.com:gitlabhq/gitlabhq
parents
0f72f00c
a4000f5d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
46 additions
and
2 deletions
+46
-2
app/controllers/application_controller.rb
app/controllers/application_controller.rb
+1
-0
doc/api/repositories.md
doc/api/repositories.md
+16
-2
lib/api/repositories.rb
lib/api/repositories.rb
+22
-0
spec/requests/api/repositories_spec.rb
spec/requests/api/repositories_spec.rb
+7
-0
No files found.
app/controllers/application_controller.rb
View file @
231b91d0
...
...
@@ -160,6 +160,7 @@ class ApplicationController < ActionController::Base
def
default_headers
headers
[
'X-Frame-Options'
]
=
'DENY'
headers
[
'X-XSS-Protection'
]
=
'1; mode=block'
headers
[
'X-UA-Compatible'
]
=
'IE=edge'
end
def
add_gon_variables
...
...
doc/api/repositories.md
View file @
231b91d0
...
...
@@ -343,9 +343,9 @@ Parameters:
```
## Raw
blob
content
## Raw
file
content
Get the raw file contents for a file.
Get the raw file contents for a file
by commit sha and path
.
```
GET /projects/:id/repository/blobs/:sha
...
...
@@ -358,6 +358,20 @@ Parameters:
+
`filepath`
(required) - The path the file
## Raw blob content
Get the raw file contents for a blob by blob sha.
```
GET /projects/:id/repository/raw_blobs/:sha
```
Parameters:
+
`id`
(required) - The ID of a project
+
`sha`
(required) - The blob sha
## Get file archive
Get a an archive of the repository
...
...
lib/api/repositories.rb
View file @
231b91d0
...
...
@@ -177,6 +177,28 @@ module API
present
blob
.
data
end
# Get a raw blob contents by blob sha
#
# Parameters:
# id (required) - The ID of a project
# sha (required) - The blob's sha
# Example Request:
# GET /projects/:id/repository/raw_blobs/:sha
get
":id/repository/raw_blobs/:sha"
do
ref
=
params
[
:sha
]
repo
=
user_project
.
repository
blob
=
Gitlab
::
Git
::
Blob
.
raw
(
repo
,
ref
)
not_found!
"Blob"
unless
blob
env
[
'api.format'
]
=
:txt
content_type
blob
.
mime_type
present
blob
.
data
end
# Get a an archive of the repository
#
# Parameters:
...
...
spec/requests/api/repositories_spec.rb
View file @
231b91d0
...
...
@@ -225,6 +225,13 @@ describe API::API do
end
end
describe
"GET /projects/:id/repository/raw_blobs/:sha"
do
it
"should get the raw file contents"
do
get
api
(
"/projects/
#{
project
.
id
}
/repository/raw_blobs/d1aff2896d99d7acc4d9780fbb716b113c45ecf7"
,
user
)
response
.
status
.
should
==
200
end
end
describe
"GET /projects/:id/repository/archive/:sha"
do
it
"should get the archive"
do
get
api
(
"/projects/
#{
project
.
id
}
/repository/archive"
,
user
)
...
...
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