-
Notifications
You must be signed in to change notification settings - Fork 194
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
94 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# frozen_string_literal: true | ||
|
||
# Redmine plugin for Document Management System "Features" | ||
# | ||
# Karel Pičman <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
class DmsfHelpController < ApplicationController | ||
def show_wiki_syntax | ||
lang = current_language.to_s | ||
template = "dmsf_help/#{lang}/wiki_syntax" | ||
lang = 'en' unless lookup_context.exists?(template) | ||
render template: "dmsf_help/#{lang}/wiki_syntax", layout: nil | ||
end | ||
|
||
def show_dmsf_help | ||
lang = current_language.to_s | ||
template = "dmsf_help/#{lang}/dmsf_help" | ||
lang = 'en' unless lookup_context.exists?(template) | ||
render template: "dmsf_help/#{lang}/dmsf_help", layout: nil | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# frozen_string_literal: true | ||
|
||
# Redmine plugin for Document Management System "Features" | ||
# | ||
# Karel Pičman <[email protected]> | ||
# | ||
# This program is free software; you can redistribute it and/or | ||
# modify it under the terms of the GNU General Public License | ||
# as published by the Free Software Foundation; either version 2 | ||
# of the License, or (at your option) any later version. | ||
# | ||
# This program is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with this program; if not, write to the Free Software | ||
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
|
||
require File.expand_path('../../test_helper', __FILE__) | ||
|
||
class HelpControllerTest < RedmineDmsf::Test::TestCase | ||
fixtures :dmsf_folders, :dmsf_files, :dmsf_file_revisions | ||
|
||
def test_wiki_syntax | ||
post '/login', params: { username: 'jsmith', password: 'jsmith' } | ||
get '/dmsf/help/wiki_syntax' | ||
assert_response :success | ||
assert_select 'h1', text: 'DMS Syntax Reference' | ||
end | ||
|
||
def test_wiki_syntax_cs | ||
@jsmith.language = 'cs' | ||
assert @jsmith.save | ||
post '/login', params: { username: 'jsmith', password: 'jsmith' } | ||
get '/dmsf/help/wiki_syntax' | ||
assert_response :success | ||
assert_select 'h1', text: 'Referenční dokumentace syntaxe DMS' | ||
end | ||
|
||
def test_dmsf_help | ||
post '/login', params: { username: 'jsmith', password: 'jsmith' } | ||
get '/dmsf/help/dmsf_help' | ||
assert_response :success | ||
assert_select 'h1', text: "DMSF User's guide" | ||
end | ||
end |