Defect #37730 » copyright.diff
| lib/plugins/acts_as_activity_provider/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/acts_as_activity_provider' |
| 4 | 21 |
ActiveRecord::Base.send(:include, Redmine::Acts::ActivityProvider) |
| lib/plugins/acts_as_attachable/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/acts_as_attachable' |
| 4 | 21 |
ActiveRecord::Base.send(:include, Redmine::Acts::Attachable) |
| lib/plugins/acts_as_customizable/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/acts_as_customizable' |
| 4 | 21 |
ActiveRecord::Base.send(:include, Redmine::Acts::Customizable) |
| lib/plugins/acts_as_event/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/acts_as_event' |
| 4 | 21 |
ActiveRecord::Base.send(:include, Redmine::Acts::Event) |
| lib/plugins/acts_as_searchable/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/acts_as_searchable' |
| 4 | 21 |
ActiveRecord::Base.send(:include, Redmine::Acts::Searchable) |
| lib/plugins/acts_as_tree/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'lib/active_record/acts/tree' |
| 4 | 21 |
ActiveRecord::Base.send :include, ActiveRecord::Acts::Tree |
| lib/plugins/acts_as_tree/lib/active_record/acts/tree.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
module ActiveRecord |
| 4 | 21 |
module Acts |
| 5 | 22 |
module Tree |
| lib/plugins/acts_as_tree/test/acts_as_tree_test.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require 'test/unit' |
| 4 | 21 | |
| 5 | 22 |
require 'rubygems' |
| lib/plugins/acts_as_watchable/init.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
# Include hook code here |
| 4 | 21 |
require_relative 'lib/acts_as_watchable' |
| 5 | 22 |
ActiveRecord::Base.send(:include, Redmine::Acts::Watchable) |
| lib/plugins/acts_as_watchable/lib/acts_as_watchable.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
# ActsAsWatchable |
| 4 | 21 |
module Redmine |
| 5 | 22 |
module Acts |
| lib/redmine/codeset_util.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
module Redmine |
| 4 | 21 |
module CodesetUtil |
| 5 | 22 | |
| lib/redmine/core_ext/string.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require_relative 'string/conversions' |
| 4 | 21 |
require_relative 'string/inflections' |
| 5 | 22 | |
| lib/redmine/core_ext.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
Dir[File.dirname(__FILE__) + "/core_ext/*.rb"].each {|file| require(file)}
|
| lib/redmine/info.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
module Redmine |
| 4 | 21 |
module Info |
| 5 | 22 |
class << self |
| lib/redmine/notifiable.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
module Redmine |
| 4 | 21 |
class Notifiable < Struct.new(:name, :parent) |
| 5 | 22 | |
| lib/redmine/scm/base.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
module Redmine |
| 4 | 21 |
module Scm |
| 5 | 22 |
class Base |
| lib/redmine/sudo_mode.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require 'active_support/core_ext/object/to_query' |
| 4 | 21 |
require 'rack/utils' |
| 5 | 22 | |
| lib/redmine/version.rb (working copy) | ||
|---|---|---|
| 1 | 1 |
# frozen_string_literal: true |
| 2 | 2 | |
| 3 |
# Redmine - project management software |
|
| 4 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 5 |
# |
|
| 6 |
# This program is free software; you can redistribute it and/or |
|
| 7 |
# modify it under the terms of the GNU General Public License |
|
| 8 |
# as published by the Free Software Foundation; either version 2 |
|
| 9 |
# of the License, or (at your option) any later version. |
|
| 10 |
# |
|
| 11 |
# This program is distributed in the hope that it will be useful, |
|
| 12 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
# GNU General Public License for more details. |
|
| 15 |
# |
|
| 16 |
# You should have received a copy of the GNU General Public License |
|
| 17 |
# along with this program; if not, write to the Free Software |
|
| 18 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 19 | ||
| 3 | 20 |
require 'redmine/scm/adapters/subversion_adapter' |
| 4 | 21 | |
| 5 | 22 |
module Redmine |
| lib/tasks/ci.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
desc "Run the Continuous Integration tests for Redmine" |
| 2 | 19 |
task :ci do |
| 3 | 20 |
# RAILS_ENV and ENV[] can diverge so force them both to test |
| lib/tasks/deprecated.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
def deprecated_task(name, new_name) |
| 2 | 19 |
task name=>new_name do |
| 3 | 20 |
$stderr.puts "\nNote: The rake task #{name} has been deprecated, please use the replacement version #{new_name}"
|
| lib/tasks/extract_fixtures.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
desc 'Create YAML test fixtures from data in an existing database. |
| 2 | 19 |
Defaults to development database. Set RAILS_ENV to override.' |
| 3 | 20 | |
| lib/tasks/initializers.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
desc 'Generates a secret token for the application.' |
| 2 | 19 | |
| 3 | 20 |
file 'config/initializers/secret_token.rb' do |
| lib/tasks/load_default_data.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
desc 'Load Redmine default configuration data. Language is chosen interactively or by setting REDMINE_LANG environment variable.' |
| 2 | 19 | |
| 3 | 20 |
namespace :redmine do |
| lib/tasks/locales.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
desc 'Updates and checks locales against en.yml' |
| 2 | 19 |
task :locales do |
| 3 | 20 |
%w(locales:update locales:check_interpolation).collect do |task| |
| lib/tasks/metrics.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
begin |
| 2 | 19 |
require 'metric_fu' |
| 3 | 20 |
rescue LoadError |
| lib/tasks/permissions.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
namespace :redmine do |
| 2 | 19 |
desc "List all permissions and the actions registered with them" |
| 3 | 20 |
task :permissions => :environment do |
| lib/tasks/testing.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
namespace :test do |
| 2 | 19 |
desc 'Measures test coverage' |
| 3 | 20 |
task :coverage do |
| lib/tasks/yardoc.rake (working copy) | ||
|---|---|---|
| 1 |
# Redmine - project management software |
|
| 2 |
# Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
# |
|
| 4 |
# This program is free software; you can redistribute it and/or |
|
| 5 |
# modify it under the terms of the GNU General Public License |
|
| 6 |
# as published by the Free Software Foundation; either version 2 |
|
| 7 |
# of the License, or (at your option) any later version. |
|
| 8 |
# |
|
| 9 |
# This program is distributed in the hope that it will be useful, |
|
| 10 |
# but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
# GNU General Public License for more details. |
|
| 13 |
# |
|
| 14 |
# You should have received a copy of the GNU General Public License |
|
| 15 |
# along with this program; if not, write to the Free Software |
|
| 16 |
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
|
| 17 | ||
| 1 | 18 |
begin |
| 2 | 19 |
require 'yard' |
| 3 | 20 | |
| public/javascripts/application.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
function sanitizeHTML(string) {
|
| 5 | 19 |
var temp = document.createElement('span');
|
| public/javascripts/attachments.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
function addFile(inputEl, file, eagerUpload) {
|
| 5 | 19 |
var attachmentsFields = $(inputEl).closest('.attachments_form').find('.attachments_fields');
|
| public/javascripts/context_menu.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
var contextMenuObserving; |
| 5 | 19 | |
| public/javascripts/gantt.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
var draw_gantt = null; |
| 5 | 19 |
var draw_top; |
| public/javascripts/project_identifier.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
// Automatic project identifier generation |
| 5 | 19 | |
| public/javascripts/repository_navigation.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
$(document).ready(function() {
|
| 5 | 19 |
/* |
| public/javascripts/responsive.js (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
// generic layout specific responsive stuff goes here |
| 2 | 19 | |
| 3 | 20 |
function openFlyout() {
|
| public/javascripts/revision_graph.js (working copy) | ||
|---|---|---|
| 1 | 1 |
/* Redmine - project management software |
| 2 |
Copyright (C) 2006-2023 Jean-Philippe Lang */ |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 3 | 17 | |
| 4 | 18 |
var revisionGraph = null; |
| 5 | 19 | |
| public/stylesheets/application.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
html, body { min-height: 100vh; }
|
| 2 | 19 |
html {overflow-y:scroll;}
|
| 3 | 20 |
body { font-family: Verdana, sans-serif; font-size: 12px; color:#333; margin: 0; padding: 0; min-width: 900px; }
|
| public/stylesheets/context_menu.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
#context-menu { position: absolute; z-index: 40; font-size: 0.9em;}
|
| 2 | 19 | |
| 3 | 20 |
#context-menu ul, #context-menu li, #context-menu a {
|
| public/stylesheets/context_menu_rtl.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
#context-menu li.folder ul { left:auto; right:168px; }
|
| 2 | 19 |
#context-menu li.folder>ul { left:auto; right:148px; }
|
| 3 | 20 |
#context-menu li a.submenu { background:url("../images/arrow_left.png") left no-repeat; }
|
| public/stylesheets/jstoolbar.css (working copy) | ||
|---|---|---|
| 1 |
/* ***** BEGIN LICENSE BLOCK ***** |
|
| 2 |
* This file is part of DotClear. |
|
| 3 |
* Copyright (c) 2005 Nicolas Martin & Olivier Meunier and contributors. All |
|
| 4 |
* rights reserved. |
|
| 5 |
* |
|
| 6 |
* DotClear is free software; you can redistribute it and/or modify |
|
| 7 |
* it under the terms of the GNU General Public License as published by |
|
| 8 |
* the Free Software Foundation; either version 2 of the License, or |
|
| 9 |
* (at your option) any later version. |
|
| 10 |
* |
|
| 11 |
* DotClear is distributed in the hope that it will be useful, |
|
| 12 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 13 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 14 |
* GNU General Public License for more details. |
|
| 15 |
* |
|
| 16 |
* You should have received a copy of the GNU General Public License |
|
| 17 |
* along with DotClear; if not, write to the Free Software |
|
| 18 |
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
| 19 |
* |
|
| 20 |
* ***** END LICENSE BLOCK ***** |
|
| 21 |
*/ |
|
| 22 | ||
| 1 | 23 |
.jstBlock .hidden {
|
| 2 | 24 |
display: none; |
| 3 | 25 |
} |
| public/stylesheets/responsive.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
/*----------------------------------------*\ |
| 2 | 19 |
RESPONSIVE CSS |
| 3 | 20 |
\*----------------------------------------*/ |
| public/stylesheets/rtl.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
html {direction:rtl;}
|
| 2 | 19 |
h1, h2, h3, h4 {padding:2px 00px 1px 10px;}
|
| 3 | 20 |
/***** Layout *****/ |
| public/stylesheets/scm.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
table.entries a {
|
| 2 | 19 |
padding-top: 2px; |
| 3 | 20 |
padding-bottom: 2px; |
| public/themes/alternate/stylesheets/application.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
@import url(../../../stylesheets/application.css); |
| 2 | 19 | |
| 3 | 20 |
body, #wrapper { background-color:#EEEEEE; }
|
| public/themes/classic/stylesheets/application.css (working copy) | ||
|---|---|---|
| 1 |
/* Redmine - project management software |
|
| 2 |
* Copyright (C) 2006-2023 Jean-Philippe Lang |
|
| 3 |
* |
|
| 4 |
* This program is free software; you can redistribute it and/or |
|
| 5 |
* modify it under the terms of the GNU General Public License |
|
| 6 |
* as published by the Free Software Foundation; either version 2 |
|
| 7 |
* of the License, or (at your option) any later version. |
|
| 8 |
* |
|
| 9 |
* This program is distributed in the hope that it will be useful, |
|
| 10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
| 11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
| 12 |
* GNU General Public License for more details. |
|
| 13 |
* |
|
| 14 |
* You should have received a copy of the GNU General Public License |
|
| 15 |
* along with this program; if not, write to the Free Software |
|
| 16 |
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ |
|
| 17 | ||
| 1 | 18 |
@import url(../../../stylesheets/application.css); |
| 2 | 19 | |
| 3 | 20 |
body{ color:#303030; background:#e8eaec; }
|