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
96397803
Commit
96397803
authored
Aug 08, 2012
by
Nihad Abbasov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
render notes preview on server-side
parent
1ec3bd3f
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
8 deletions
+17
-8
application.js
app/assets/javascripts/application.js
+7
-6
notes_controller.rb
app/controllers/notes_controller.rb
+4
-0
_form.html.haml
app/views/notes/_form.html.haml
+1
-1
routes.rb
config/routes.rb
+5
-1
Markdown.Converter.js
vendor/assets/javascripts/Markdown.Converter.js
+0
-0
No files found.
app/assets/javascripts/application.js
View file @
96397803
...
...
@@ -18,7 +18,6 @@
//= require chosen-jquery
//= require raphael
//= require branch-graph
//= require Markdown.Converter
//= require_tree .
$
(
document
).
ready
(
function
(){
...
...
@@ -76,15 +75,17 @@ $(document).ready(function(){
*
*/
$
(
'#preview-link'
).
on
(
'click'
,
function
(
e
)
{
var
note
=
$
(
'#note_note'
).
val
();
if
(
note
.
trim
().
length
===
0
)
{
note
=
'Nothing to preview'
;
}
var
converter
=
new
Markdown
.
Converter
();
var
md_preview
=
converter
.
makeHtml
(
note
);
$
(
'#preview-note'
).
html
(
md_preview
);
$
(
'#preview-note'
).
text
(
'Loading...'
);
var
previewLinkText
=
(
$
(
this
).
text
()
==
'Preview'
?
'Edit'
:
'Preview'
);
$
(
this
).
text
(
previewLinkText
);
var
note
=
$
(
'#note_note'
).
val
();
if
(
note
.
trim
().
length
===
0
)
{
note
=
'Nothing to preview'
;
}
$
.
post
(
$
(
this
).
attr
(
'href'
),
{
note
:
note
},
function
(
data
)
{
$
(
'#preview-note'
).
html
(
data
);
});
$
(
'#preview-note, #note_note'
).
toggle
();
e
.
preventDefault
();
});
...
...
app/controllers/notes_controller.rb
View file @
96397803
...
...
@@ -33,6 +33,10 @@ class NotesController < ApplicationController
end
end
def
preview
render
:text
=>
view_context
.
markdown
(
params
[
:note
])
end
protected
def
notes
...
...
app/views/notes/_form.html.haml
View file @
96397803
...
...
@@ -12,7 +12,7 @@
%p
.hint
=
link_to
"Gitlab Markdown"
,
help_markdown_path
,
:target
=>
'_blank'
is enabled.
=
link_to
'Preview'
,
'#'
,
:id
=>
'preview-link'
=
link_to
'Preview'
,
preview_project_notes_path
(
@project
)
,
:id
=>
'preview-link'
.row.note_advanced_opts.hide
.span4
...
...
config/routes.rb
View file @
96397803
...
...
@@ -199,7 +199,11 @@ Gitlab::Application.routes.draw do
get
:search
end
end
resources
:notes
,
:only
=>
[
:index
,
:create
,
:destroy
]
resources
:notes
,
:only
=>
[
:index
,
:create
,
:destroy
]
do
collection
do
post
:preview
end
end
end
root
:to
=>
"dashboard#index"
end
vendor/assets/javascripts/Markdown.Converter.js
deleted
100644 → 0
View file @
1ec3bd3f
This diff is collapsed.
Click to expand it.
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