diff options
Diffstat (limited to 'public')
-rw-r--r-- | public/javascripts/application.js | 16 | ||||
-rw-r--r-- | public/javascripts/attachments.js | 16 | ||||
-rw-r--r-- | public/javascripts/context_menu.js | 16 | ||||
-rw-r--r-- | public/javascripts/gantt.js | 16 | ||||
-rw-r--r-- | public/javascripts/jstoolbar/jstoolbar.js | 1 | ||||
-rw-r--r-- | public/javascripts/project_identifier.js | 16 | ||||
-rw-r--r-- | public/javascripts/repository_navigation.js | 16 | ||||
-rw-r--r-- | public/javascripts/responsive.js | 17 | ||||
-rw-r--r-- | public/javascripts/revision_graph.js | 16 | ||||
-rw-r--r-- | public/stylesheets/application.css | 17 | ||||
-rw-r--r-- | public/stylesheets/context_menu.css | 17 | ||||
-rw-r--r-- | public/stylesheets/context_menu_rtl.css | 17 | ||||
-rw-r--r-- | public/stylesheets/jstoolbar.css | 22 | ||||
-rw-r--r-- | public/stylesheets/responsive.css | 17 | ||||
-rw-r--r-- | public/stylesheets/rtl.css | 17 | ||||
-rw-r--r-- | public/stylesheets/scm.css | 17 | ||||
-rw-r--r-- | public/themes/alternate/stylesheets/application.css | 17 | ||||
-rw-r--r-- | public/themes/classic/stylesheets/application.css | 17 |
18 files changed, 281 insertions, 7 deletions
diff --git a/public/javascripts/application.js b/public/javascripts/application.js index d39475d46..e866b505a 100644 --- a/public/javascripts/application.js +++ b/public/javascripts/application.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ function sanitizeHTML(string) { var temp = document.createElement('span'); diff --git a/public/javascripts/attachments.js b/public/javascripts/attachments.js index 157513e00..34a8cf336 100644 --- a/public/javascripts/attachments.js +++ b/public/javascripts/attachments.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ function addFile(inputEl, file, eagerUpload) { var attachmentsFields = $(inputEl).closest('.attachments_form').find('.attachments_fields'); diff --git a/public/javascripts/context_menu.js b/public/javascripts/context_menu.js index d5b9c6b52..7421997df 100644 --- a/public/javascripts/context_menu.js +++ b/public/javascripts/context_menu.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ var contextMenuObserving; diff --git a/public/javascripts/gantt.js b/public/javascripts/gantt.js index 232110b22..e00523a63 100644 --- a/public/javascripts/gantt.js +++ b/public/javascripts/gantt.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ var draw_gantt = null; var draw_top; diff --git a/public/javascripts/jstoolbar/jstoolbar.js b/public/javascripts/jstoolbar/jstoolbar.js index 532f9f8c9..b1868246c 100644 --- a/public/javascripts/jstoolbar/jstoolbar.js +++ b/public/javascripts/jstoolbar/jstoolbar.js @@ -21,6 +21,7 @@ */ /* Modified by JP LANG for textile formatting */ + let lastJstPreviewed = null; const isMac = Boolean(navigator.platform.toLowerCase().match(/mac/)); diff --git a/public/javascripts/project_identifier.js b/public/javascripts/project_identifier.js index c89cb08c2..e551250d1 100644 --- a/public/javascripts/project_identifier.js +++ b/public/javascripts/project_identifier.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ // Automatic project identifier generation diff --git a/public/javascripts/repository_navigation.js b/public/javascripts/repository_navigation.js index 43c1559e6..35ddd5397 100644 --- a/public/javascripts/repository_navigation.js +++ b/public/javascripts/repository_navigation.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ $(document).ready(function() { /* diff --git a/public/javascripts/responsive.js b/public/javascripts/responsive.js index a07737795..9dc4db4e7 100644 --- a/public/javascripts/responsive.js +++ b/public/javascripts/responsive.js @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + // generic layout specific responsive stuff goes here function openFlyout() { diff --git a/public/javascripts/revision_graph.js b/public/javascripts/revision_graph.js index 9a8f25f8c..84f01c889 100644 --- a/public/javascripts/revision_graph.js +++ b/public/javascripts/revision_graph.js @@ -1,5 +1,19 @@ /* Redmine - project management software - Copyright (C) 2006-2023 Jean-Philippe Lang */ + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ var revisionGraph = null; diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index f8e11b050..b92a34d68 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + html, body { min-height: 100vh; } html {overflow-y:scroll;} body { font-family: Verdana, sans-serif; font-size: 12px; color:#333; margin: 0; padding: 0; min-width: 900px; } diff --git a/public/stylesheets/context_menu.css b/public/stylesheets/context_menu.css index efa25006a..2d3d38d9a 100644 --- a/public/stylesheets/context_menu.css +++ b/public/stylesheets/context_menu.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + #context-menu { position: absolute; z-index: 40; font-size: 0.9em;} #context-menu ul, #context-menu li, #context-menu a { diff --git a/public/stylesheets/context_menu_rtl.css b/public/stylesheets/context_menu_rtl.css index 7397c192b..58f470288 100644 --- a/public/stylesheets/context_menu_rtl.css +++ b/public/stylesheets/context_menu_rtl.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + #context-menu li.folder ul { left:auto; right:168px; } #context-menu li.folder>ul { left:auto; right:148px; } #context-menu li a.submenu { background:url("../images/arrow_left.png") left no-repeat; } diff --git a/public/stylesheets/jstoolbar.css b/public/stylesheets/jstoolbar.css index 911ae6678..e0cac9019 100644 --- a/public/stylesheets/jstoolbar.css +++ b/public/stylesheets/jstoolbar.css @@ -1,3 +1,25 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * This file is part of DotClear. + * Copyright (c) 2005 Nicolas Martin & Olivier Meunier and contributors. All + * rights reserved. + * + * DotClear is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * DotClear is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with DotClear; if not, write to the Free Software + * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA + * + * ***** END LICENSE BLOCK ***** +*/ + .jstBlock .hidden { display: none; } diff --git a/public/stylesheets/responsive.css b/public/stylesheets/responsive.css index 482f73cf2..bf692bbe2 100644 --- a/public/stylesheets/responsive.css +++ b/public/stylesheets/responsive.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + /*----------------------------------------*\ RESPONSIVE CSS \*----------------------------------------*/ diff --git a/public/stylesheets/rtl.css b/public/stylesheets/rtl.css index 9cae7d2eb..3375ff523 100644 --- a/public/stylesheets/rtl.css +++ b/public/stylesheets/rtl.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + html {direction:rtl;} h1, h2, h3, h4 {padding:2px 00px 1px 10px;} /***** Layout *****/ diff --git a/public/stylesheets/scm.css b/public/stylesheets/scm.css index 4711a2e5a..4c8830df2 100644 --- a/public/stylesheets/scm.css +++ b/public/stylesheets/scm.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + table.entries a { padding-top: 2px; padding-bottom: 2px; diff --git a/public/themes/alternate/stylesheets/application.css b/public/themes/alternate/stylesheets/application.css index ccc889410..573010254 100644 --- a/public/themes/alternate/stylesheets/application.css +++ b/public/themes/alternate/stylesheets/application.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + @import url(../../../stylesheets/application.css); body, #wrapper { background-color:#EEEEEE; } diff --git a/public/themes/classic/stylesheets/application.css b/public/themes/classic/stylesheets/application.css index 5104626b0..dca3733b4 100644 --- a/public/themes/classic/stylesheets/application.css +++ b/public/themes/classic/stylesheets/application.css @@ -1,3 +1,20 @@ +/* Redmine - project management software + * Copyright (C) 2006-2023 Jean-Philippe Lang + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ + @import url(../../../stylesheets/application.css); body{ color:#303030; background:#e8eaec; } |