mirror of
https://github.com/meineerde/redmine.git
synced 2026-03-28 11:41:08 +00:00
Replace tabs with spaces and remove trailing tabs in several files (#20140).
Patch by Mischa The Evil. git-svn-id: http://svn.redmine.org/redmine/trunk@14365 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
15c7066dde
commit
3036eaba52
@ -18,7 +18,7 @@
|
|||||||
class MailHandlerController < ActionController::Base
|
class MailHandlerController < ActionController::Base
|
||||||
before_filter :check_credential
|
before_filter :check_credential
|
||||||
|
|
||||||
# Displays the email submission form
|
# Displays the email submission form
|
||||||
def new
|
def new
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|||||||
@ -249,7 +249,7 @@ module IssuesHelper
|
|||||||
issues = [issues] unless issues.is_a?(Array)
|
issues = [issues] unless issues.is_a?(Array)
|
||||||
message = l(:text_issues_destroy_confirmation)
|
message = l(:text_issues_destroy_confirmation)
|
||||||
|
|
||||||
descendant_count = issues_descendant_count(issues)
|
descendant_count = issues_descendant_count(issues)
|
||||||
if descendant_count > 0
|
if descendant_count > 0
|
||||||
message << "\n" + l(:text_issues_destroy_descendants_confirmation, :count => descendant_count)
|
message << "\n" + l(:text_issues_destroy_descendants_confirmation, :count => descendant_count)
|
||||||
end
|
end
|
||||||
|
|||||||
@ -158,7 +158,7 @@ module SettingsHelper
|
|||||||
options.map {|label, value| [l(label), value.to_s]}
|
options.map {|label, value| [l(label), value.to_s]}
|
||||||
end
|
end
|
||||||
|
|
||||||
# Returns the options for the date_format setting
|
# Returns the options for the date_format setting
|
||||||
def date_format_setting_options(locale)
|
def date_format_setting_options(locale)
|
||||||
Setting::DATE_FORMATS.map do |f|
|
Setting::DATE_FORMATS.map do |f|
|
||||||
today = ::I18n.l(Date.today, :locale => locale, :format => f)
|
today = ::I18n.l(Date.today, :locale => locale, :format => f)
|
||||||
|
|||||||
@ -425,7 +425,7 @@ class Issue < ActiveRecord::Base
|
|||||||
names -= disabled_core_fields
|
names -= disabled_core_fields
|
||||||
names -= read_only_attribute_names(user)
|
names -= read_only_attribute_names(user)
|
||||||
if new_record?
|
if new_record?
|
||||||
# Make sure that project_id can always be set for new issues
|
# Make sure that project_id can always be set for new issues
|
||||||
names |= %w(project_id)
|
names |= %w(project_id)
|
||||||
end
|
end
|
||||||
if dates_derived?
|
if dates_derived?
|
||||||
|
|||||||
14
doc/COPYING
14
doc/COPYING
@ -1,12 +1,12 @@
|
|||||||
GNU GENERAL PUBLIC LICENSE
|
GNU GENERAL PUBLIC LICENSE
|
||||||
Version 2, June 1991
|
Version 2, June 1991
|
||||||
|
|
||||||
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
Copyright (C) 1989, 1991 Free Software Foundation, Inc.,
|
||||||
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
Everyone is permitted to copy and distribute verbatim copies
|
Everyone is permitted to copy and distribute verbatim copies
|
||||||
of this license document, but changing it is not allowed.
|
of this license document, but changing it is not allowed.
|
||||||
|
|
||||||
Preamble
|
Preamble
|
||||||
|
|
||||||
The licenses for most software are designed to take away your
|
The licenses for most software are designed to take away your
|
||||||
freedom to share and change it. By contrast, the GNU General Public
|
freedom to share and change it. By contrast, the GNU General Public
|
||||||
@ -56,7 +56,7 @@ patent must be licensed for everyone's free use or not licensed at all.
|
|||||||
The precise terms and conditions for copying, distribution and
|
The precise terms and conditions for copying, distribution and
|
||||||
modification follow.
|
modification follow.
|
||||||
|
|
||||||
GNU GENERAL PUBLIC LICENSE
|
GNU GENERAL PUBLIC LICENSE
|
||||||
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
|
||||||
|
|
||||||
0. This License applies to any program or other work which contains
|
0. This License applies to any program or other work which contains
|
||||||
@ -255,7 +255,7 @@ make exceptions for this. Our decision will be guided by the two goals
|
|||||||
of preserving the free status of all derivatives of our free software and
|
of preserving the free status of all derivatives of our free software and
|
||||||
of promoting the sharing and reuse of software generally.
|
of promoting the sharing and reuse of software generally.
|
||||||
|
|
||||||
NO WARRANTY
|
NO WARRANTY
|
||||||
|
|
||||||
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY
|
||||||
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN
|
||||||
@ -277,9 +277,9 @@ YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER
|
|||||||
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE
|
||||||
POSSIBILITY OF SUCH DAMAGES.
|
POSSIBILITY OF SUCH DAMAGES.
|
||||||
|
|
||||||
END OF TERMS AND CONDITIONS
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
How to Apply These Terms to Your New Programs
|
How to Apply These Terms to Your New Programs
|
||||||
|
|
||||||
If you develop a new program, and you want it to be of the greatest
|
If you develop a new program, and you want it to be of the greatest
|
||||||
possible use to the public, the best way to achieve this is to make it
|
possible use to the public, the best way to achieve this is to make it
|
||||||
|
|||||||
@ -379,7 +379,7 @@ module ActiveRecord #:nodoc:
|
|||||||
new_model.send("#{key}=", orig_model.send(key)) if orig_model.respond_to?(key)
|
new_model.send("#{key}=", orig_model.send(key)) if orig_model.respond_to?(key)
|
||||||
end
|
end
|
||||||
|
|
||||||
if self.class.columns_hash.include?(self.class.inheritance_column)
|
if self.class.columns_hash.include?(self.class.inheritance_column)
|
||||||
if orig_model.is_a?(self.class.versioned_class)
|
if orig_model.is_a?(self.class.versioned_class)
|
||||||
new_model[new_model.class.inheritance_column] = orig_model[self.class.versioned_inheritance_column]
|
new_model[new_model.class.inheritance_column] = orig_model[self.class.versioned_inheritance_column]
|
||||||
elsif new_model.is_a?(self.class.versioned_class)
|
elsif new_model.is_a?(self.class.versioned_class)
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Příspěvky diskuzního fóra:
|
<li>Příspěvky diskuzního fóra:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (odkaz na příspěvek s ID 1218)</li>
|
<li><strong>message#1218</strong> (odkaz na příspěvek s ID 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Messages du forum:
|
<li>Messages du forum:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (Lien vers le message dont l'id est 1218)</li>
|
<li><strong>message#1218</strong> (Lien vers le message dont l'id est 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>フォーラムのメッセージ:
|
<li>フォーラムのメッセージ:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (id 1218のメッセージへのリンク)</li>
|
<li><strong>message#1218</strong> (id 1218のメッセージへのリンク)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -176,7 +176,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>論壇訊息:
|
<li>論壇訊息:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (連結至編號 1218 的訊息)</li>
|
<li><strong>message#1218</strong> (連結至編號 1218 的訊息)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -126,7 +126,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forums:
|
<li>Forums:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
<li><strong>forum#1</strong> (link to forum with id 1</li>
|
||||||
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
<li><strong>forum:Support</strong> (link to forum named Support)</li>
|
||||||
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
<li><strong>forum:"Technical Support"</strong> (use double quotes if forum name contains spaces)</li>
|
||||||
@ -135,7 +135,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>Forum messages:
|
<li>Forum messages:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
<li><strong>message#1218</strong> (link to message with id 1218)</li>
|
||||||
</ul></li>
|
</ul></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -151,7 +151,7 @@
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>News:
|
<li>News:
|
||||||
<ul>
|
<ul>
|
||||||
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
<li><strong>news#2</strong> (link to news item with id 2)</li>
|
||||||
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
<li><strong>news:Greetings</strong> (link to news item named "Greetings")</li>
|
||||||
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
<li><strong>news:"First Release"</strong> (use double quotes if news item name contains spaces)</li>
|
||||||
|
|||||||
@ -1,9 +1,9 @@
|
|||||||
# General Apache options
|
# General Apache options
|
||||||
<IfModule mod_fastcgi.c>
|
<IfModule mod_fastcgi.c>
|
||||||
AddHandler fastcgi-script .fcgi
|
AddHandler fastcgi-script .fcgi
|
||||||
</IfModule>
|
</IfModule>
|
||||||
<IfModule mod_fcgid.c>
|
<IfModule mod_fcgid.c>
|
||||||
AddHandler fcgid-script .fcgi
|
AddHandler fcgid-script .fcgi
|
||||||
</IfModule>
|
</IfModule>
|
||||||
Options +FollowSymLinks +ExecCGI
|
Options +FollowSymLinks +ExecCGI
|
||||||
|
|
||||||
@ -34,10 +34,10 @@ RewriteRule ^$ index.html [QSA]
|
|||||||
RewriteRule ^([^.]+)$ $1.html [QSA]
|
RewriteRule ^([^.]+)$ $1.html [QSA]
|
||||||
RewriteCond %{REQUEST_FILENAME} !-f
|
RewriteCond %{REQUEST_FILENAME} !-f
|
||||||
<IfModule mod_fastcgi.c>
|
<IfModule mod_fastcgi.c>
|
||||||
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
||||||
</IfModule>
|
</IfModule>
|
||||||
<IfModule mod_fcgid.c>
|
<IfModule mod_fcgid.c>
|
||||||
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
RewriteRule ^(.*)$ dispatch.fcgi [QSA,L]
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
# In case Rails experiences terminal errors
|
# In case Rails experiences terminal errors
|
||||||
|
|||||||
@ -80,7 +80,7 @@ class MemberTest < ActiveSupport::TestCase
|
|||||||
assert !member.save
|
assert !member.save
|
||||||
assert_include I18n.translate('activerecord.errors.messages.empty'), member.errors[:role]
|
assert_include I18n.translate('activerecord.errors.messages.empty'), member.errors[:role]
|
||||||
assert_equal "R\xc3\xb4le doit \xc3\xaatre renseign\xc3\xa9(e)".force_encoding('UTF-8'),
|
assert_equal "R\xc3\xb4le doit \xc3\xaatre renseign\xc3\xa9(e)".force_encoding('UTF-8'),
|
||||||
[member.errors.full_messages].flatten.join
|
[member.errors.full_messages].flatten.join
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_validate_member_role
|
def test_validate_member_role
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user