29 |
29 |
def_delegators :wiki_helper, :wikitoolbar_for, :heads_for_wiki_formatter
|
30 |
30 |
|
31 |
31 |
# Return true if user is authorized for controller/action, otherwise false
|
32 |
|
def authorize_for(controller, action)
|
33 |
|
User.current.allowed_to?({:controller => controller, :action => action}, @project)
|
|
32 |
def authorize_for(controller, action, project = @project)
|
|
33 |
User.current.allowed_to?({:controller => controller, :action => action}, project)
|
34 |
34 |
end
|
35 |
35 |
|
36 |
36 |
# Display a link if user is authorized
|
... | ... | |
443 |
443 |
# #52 -> Link to issue #52
|
444 |
444 |
# Changesets:
|
445 |
445 |
# r52 -> Link to revision 52
|
|
446 |
# project:r52 -> Link to revision 52 of an other project, using project name or identifier
|
446 |
447 |
# commit:a85130f -> Link to scmid starting with a85130f
|
|
448 |
# project:commit:a85130f -> Link to scmid starting with a85130f of an other project, using project name or identifier
|
|
449 |
# If your project name contains spaces, use quotation marks :
|
|
450 |
# "My Project":r52
|
|
451 |
# "My Project":commit:a85130f
|
447 |
452 |
# Documents:
|
448 |
453 |
# document#17 -> Link to document with id 17
|
449 |
454 |
# document:Greetings -> Link to the document with title "Greetings"
|
... | ... | |
455 |
460 |
# Attachments:
|
456 |
461 |
# attachment:file.zip -> Link to the attachment of the current object named file.zip
|
457 |
462 |
# Source files:
|
|
463 |
# ["Link alternate display title"=][project:]source:some/path[/file][@52][#L120]
|
|
464 |
# ["Link alternate display title"=][project:]export:some/path/file[@52]
|
458 |
465 |
# source:some/file -> Link to the file located at /some/file in the project's repository
|
459 |
466 |
# source:some/file@52 -> Link to the file's revision 52
|
460 |
467 |
# source:some/file#L120 -> Link to line 120 of the file
|
|
468 |
# "click here"=source:some/file#L120 -> Link to line 120 of the file
|
|
469 |
# "click here"=wizbang:source:some/file#L120 -> Link to line 120 of the file in the repo for the wizbang project
|
461 |
470 |
# source:some/file@52#L120 -> Link to line 120 of the file's revision 52
|
462 |
471 |
# export:some/file -> Force the download of the file
|
|
472 |
# "Download This File"=export:some/file -> Force the download of the file
|
|
473 |
# "Download This File"=myproject:export:some/file -> Force the download of the file in repository for myproject project
|
463 |
474 |
# Forum messages:
|
464 |
475 |
# message#1218 -> Link to message with id 1218
|
465 |
|
text = text.gsub(%r{([\s\(,\-\>]|^)(!)?(attachment|document|version|commit|source|export|message)?((#|r)(\d+)|(:)([^"\s<>][^\s<>]*?|"[^"]+?"))(?=(?=[[:punct:]]\W)|,|\s|<|$)}) do |m|
|
466 |
|
leading, esc, prefix, sep, oid = $1, $2, $3, $5 || $7, $6 || $8
|
|
476 |
text = text.gsub(%r{([\s\(,\-\>]|^)(!)?(\"[^\"\n]+\"=)?(attachment|document|version|(\"[^:<>\r\n\b]+\":|[^:<>\s\r\n\b]+:)?(commit|source|export)|message)?((#|(\"[^:<>\r\n\b]+\":|[^:<>\s\r\n\b]+:)?(r))(\d+)|(:)([^"\s<>][^:\s\r\n\b<>]*?|"[^"]+?"))(?=(?=[[:punct:]]\W)|,|\s|<|$)}) do |m|
|
|
477 |
leading, esc, linktitle, prefix, sep, revproj, oid = $1, $2, $3, $6 || $3, $12 || $10 || $8, $5 || $9, $11 || $13
|
467 |
478 |
link = nil
|
468 |
479 |
if esc.nil?
|
469 |
480 |
if prefix.nil? && sep == 'r'
|
470 |
|
if project && (changeset = project.changesets.find_by_revision(oid))
|
471 |
|
link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
|
472 |
|
:class => 'changeset',
|
473 |
|
:title => truncate_single_line(changeset.comments, :length => 100))
|
|
481 |
if revproj.nil?
|
|
482 |
if project && (changeset = project.changesets.find_by_revision(oid))
|
|
483 |
link = link_to("r#{oid}", {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => oid},
|
|
484 |
:class => 'changeset',
|
|
485 |
:title => truncate_single_line(changeset.comments, :length => 100))
|
|
486 |
end
|
|
487 |
else
|
|
488 |
revproj.gsub!(/[\:"]/,'')
|
|
489 |
link_project = Project.find_by_name(h(revproj)) || Project.find_by_identifier(h(revproj))
|
|
490 |
if link_project && (changeset = link_project.changesets.find_by_revision(oid))
|
|
491 |
title = truncate_single_line(changeset.comments, :length => 100) if authorize_for('repositories', 'revision', link_project)
|
|
492 |
link = link_to h("#{revproj}:r#{oid}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => link_project, :rev => oid},
|
|
493 |
:class => 'changeset',
|
|
494 |
:title => title
|
|
495 |
end
|
474 |
496 |
end
|
475 |
497 |
elsif sep == '#'
|
476 |
498 |
oid = oid.to_i
|
... | ... | |
518 |
540 |
:class => 'version'
|
519 |
541 |
end
|
520 |
542 |
when 'commit'
|
521 |
|
if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
|
522 |
|
link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
|
523 |
|
:class => 'changeset',
|
524 |
|
:title => truncate_single_line(changeset.comments, :length => 100)
|
|
543 |
if revproj.nil?
|
|
544 |
if project && (changeset = project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
|
|
545 |
link = link_to h("#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => project, :rev => changeset.revision},
|
|
546 |
:class => 'changeset',
|
|
547 |
:title => truncate_single_line(changeset.comments, :length => 100)
|
|
548 |
end
|
|
549 |
else
|
|
550 |
revproj.gsub!(/[\:"]/,'')
|
|
551 |
link_project = Project.find_by_name(h(revproj)) || Project.find_by_identifier(h(revproj))
|
|
552 |
if link_project && (changeset = link_project.changesets.find(:first, :conditions => ["scmid LIKE ?", "#{name}%"]))
|
|
553 |
title = truncate_single_line(changeset.comments, :length => 100) if authorize_for('repositories', 'revision', link_project)
|
|
554 |
link = link_to h("#{revproj}:#{name}"), {:only_path => only_path, :controller => 'repositories', :action => 'revision', :id => link_project, :rev => changeset.revision},
|
|
555 |
:class => 'changeset',
|
|
556 |
:title => title
|
|
557 |
end
|
525 |
558 |
end
|
526 |
559 |
when 'source', 'export'
|
527 |
|
if project && project.repository
|
|
560 |
if revproj.nil?
|
|
561 |
link_project = project
|
|
562 |
else
|
|
563 |
revproj.gsub!(/[\:"]/,'')
|
|
564 |
link_project = Project.find_by_name(h(revproj)) || Project.find_by_identifier(h(revproj))
|
|
565 |
end
|
|
566 |
if link_project && link_project.repository
|
528 |
567 |
name =~ %r{^[/\\]*(.*?)(@([0-9a-f]+))?(#(L\d+))?$}
|
529 |
568 |
path, rev, anchor = $1, $3, $5
|
530 |
|
link = link_to h("#{prefix}:#{name}"), {:controller => 'repositories', :action => 'entry', :id => project,
|
|
569 |
link_title = linktitle ? linktitle.gsub!(/[\"=]/,'') : (link_project != project ? "#{revproj}:" : "") + "#{prefix}:#{name}"
|
|
570 |
link = link_to h(link_title), {:only_path => only_path, :controller => 'repositories', :action => 'entry', :id => link_project,
|
531 |
571 |
:path => to_path_param(path),
|
532 |
572 |
:rev => rev,
|
533 |
573 |
:anchor => anchor,
|
... | ... | |
542 |
582 |
end
|
543 |
583 |
end
|
544 |
584 |
end
|
545 |
|
leading + (link || "#{prefix}#{sep}#{oid}")
|
|
585 |
leading + (link || (revproj ? "#{revproj}:" : "") + "#{prefix}#{sep}#{oid}")
|
546 |
586 |
end
|
547 |
587 |
|
548 |
588 |
text
|