aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-markdown
diff options
context:
space:
mode:
authorSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-05 21:51:30 +0100
committerSimon Brandhof <simon.brandhof@sonarsource.com>2016-01-05 23:17:36 +0100
commit6be98b208a59535af4cbbcfff3af0d49d111a6bd (patch)
tree8b031c95ce50a0da189a37dc6cb1b2fd9dc94da5 /sonar-markdown
parentde4bd7cf6c5ac9dba12040b19635ab4305ce2bde (diff)
downloadsonarqube-6be98b208a59535af4cbbcfff3af0d49d111a6bd.tar.gz
sonarqube-6be98b208a59535af4cbbcfff3af0d49d111a6bd.zip
Upgrade to parent 26 and new copyright headers
Diffstat (limited to 'sonar-markdown')
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/BlackholeChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlBlockquoteChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlCodeChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlEndOfLineChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlHeadingChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlLinkChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlListChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlMultilineCodeChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/HtmlUrlChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/IdentifierAndNumberChannel.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/Markdown.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/MarkdownOutput.java8
-rw-r--r--sonar-markdown/src/main/java/org/sonar/markdown/package-info.java8
-rw-r--r--sonar-markdown/src/test/java/org/sonar/markdown/MarkdownTest.java8
15 files changed, 60 insertions, 60 deletions
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/BlackholeChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/BlackholeChannel.java
index ca453acdce0..ffd6f6b29f9 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/BlackholeChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/BlackholeChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlBlockquoteChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlBlockquoteChannel.java
index 67acf60e22d..e6261eec48e 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlBlockquoteChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlBlockquoteChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlCodeChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlCodeChannel.java
index 7e63b737cdb..2e0fa89c7c9 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlCodeChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlCodeChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java
index 7ab0672a64b..33135280511 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEmphasisChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEndOfLineChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEndOfLineChannel.java
index 260b70bc063..349c39a23cb 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEndOfLineChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlEndOfLineChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlHeadingChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlHeadingChannel.java
index e2dc0047b0c..fd1cf97f466 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlHeadingChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlHeadingChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlLinkChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlLinkChannel.java
index 41874951533..97b4df433b6 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlLinkChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlLinkChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlListChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlListChannel.java
index c8842f0a1c8..e41e590da99 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlListChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlListChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlMultilineCodeChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlMultilineCodeChannel.java
index f32e0448f02..7a563cc324e 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlMultilineCodeChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlMultilineCodeChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlUrlChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlUrlChannel.java
index 80a4e22d3bf..8a56eb0f456 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/HtmlUrlChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/HtmlUrlChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/IdentifierAndNumberChannel.java b/sonar-markdown/src/main/java/org/sonar/markdown/IdentifierAndNumberChannel.java
index 8f64e457f6a..01ac0df0e6e 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/IdentifierAndNumberChannel.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/IdentifierAndNumberChannel.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/Markdown.java b/sonar-markdown/src/main/java/org/sonar/markdown/Markdown.java
index 3d932c62bc5..9db6b9963af 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/Markdown.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/Markdown.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/MarkdownOutput.java b/sonar-markdown/src/main/java/org/sonar/markdown/MarkdownOutput.java
index 158c6d6ac5a..cd1007b3886 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/MarkdownOutput.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/MarkdownOutput.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/main/java/org/sonar/markdown/package-info.java b/sonar-markdown/src/main/java/org/sonar/markdown/package-info.java
index d3260e01a38..c31899157a3 100644
--- a/sonar-markdown/src/main/java/org/sonar/markdown/package-info.java
+++ b/sonar-markdown/src/main/java/org/sonar/markdown/package-info.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.
diff --git a/sonar-markdown/src/test/java/org/sonar/markdown/MarkdownTest.java b/sonar-markdown/src/test/java/org/sonar/markdown/MarkdownTest.java
index 81a8ecc76e7..e85d2cbde44 100644
--- a/sonar-markdown/src/test/java/org/sonar/markdown/MarkdownTest.java
+++ b/sonar-markdown/src/test/java/org/sonar/markdown/MarkdownTest.java
@@ -1,14 +1,14 @@
/*
- * SonarQube, open source software quality management tool.
- * Copyright (C) 2008-2014 SonarSource
+ * SonarQube :: Markdown
+ * Copyright (C) 2009-2016 SonarSource SA
* mailto:contact AT sonarsource DOT com
*
- * SonarQube is free software; you can redistribute it and/or
+ * This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 3 of the License, or (at your option) any later version.
*
- * SonarQube is distributed in the hope that it will be useful,
+ * 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
* Lesser General Public License for more details.