BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
093159a8
Commit
093159a8
authored
Jun 12, 2012
by
randx
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Styled snippets. Raw button for snippet
parent
b96af79b
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
39 additions
and
7 deletions
+39
-7
snippets_controller.rb
app/controllers/snippets_controller.rb
+11
-1
_snippet.html.haml
app/views/snippets/_snippet.html.haml
+9
-3
index.html.haml
app/views/snippets/index.html.haml
+11
-2
show.html.haml
app/views/snippets/show.html.haml
+2
-0
routes.rb
config/routes.rb
+6
-1
No files found.
app/controllers/snippets_controller.rb
View file @
093159a8
class
SnippetsController
<
ApplicationController
before_filter
:authenticate_user!
before_filter
:project
before_filter
:snippet
,
:only
=>
[
:show
,
:edit
,
:destroy
,
:update
]
before_filter
:snippet
,
:only
=>
[
:show
,
:edit
,
:destroy
,
:update
,
:raw
]
layout
"project"
# Authorize
...
...
@@ -67,7 +67,17 @@ class SnippetsController < ApplicationController
redirect_to
project_snippets_path
(
@project
)
end
def
raw
send_data
(
@snippet
.
content
,
:type
=>
"text/plain"
,
:disposition
=>
'inline'
,
:filename
=>
@snippet
.
file_name
)
end
protected
def
snippet
@snippet
||=
@project
.
snippets
.
find
(
params
[
:id
])
end
...
...
app/views/snippets/_snippet.html.haml
View file @
093159a8
%tr
%td
%a
{
:href
=>
project_snippet_path
(
snippet
.
project
,
snippet
)}
=
truncate
(
snippet
.
title
,
:length
=>
60
)
%span
.right.cgray
=
snippet
.
file_name
%strong
=
truncate
(
snippet
.
title
,
:length
=>
60
)
%td
=
snippet
.
file_name
%td
%span
.cgray
-
if
snippet
.
expires_at
=
snippet
.
expires_at
.
to_date
.
to_s
(
:short
)
-
else
Never
app/views/snippets/index.html.haml
View file @
093159a8
...
...
@@ -8,5 +8,14 @@
%br
To add new snippet - click on button.
-
unless
@snippets
.
fresh
.
empty?
%table
.zebra-striped.borders
=
render
@snippets
.
fresh
%table
.admin-table
%thead
%tr
%th
Title
%th
File Name
%th
Expires At
=
render
@snippets
.
fresh
-
if
@snippets
.
fresh
.
empty?
%tr
%td
{
:colspan
=>
3
}
%h3
.nothing_here_message
Nothing here.
app/views/snippets/show.html.haml
View file @
093159a8
...
...
@@ -13,6 +13,8 @@
.view_file_header
%i
.icon-file
%strong
=
@snippet
.
file_name
%span
.options
=
link_to
"raw"
,
raw_project_snippet_path
(
@project
,
@snippet
),
:class
=>
"btn very_small"
,
:target
=>
"_blank"
.view_file_content
%div
{
:class
=>
current_user
.
dark_scheme
?
"black"
:
""
}
=
raw
@snippet
.
colorize
(
options:
{
linenos:
'True'
})
...
...
config/routes.rb
View file @
093159a8
...
...
@@ -119,7 +119,12 @@ Gitlab::Application.routes.draw do
end
end
resources
:snippets
resources
:snippets
do
member
do
get
"raw"
end
end
resources
:hooks
,
:only
=>
[
:index
,
:create
,
:destroy
]
do
member
do
get
:test
...
...
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