1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
Forwarded: part of PR#9000 by Jojo-Schmitz
Origin: https://github.com/musescore/MuseScore/pull/7979
Author: Joachim Schmitz <jojo@schmitz-digital.de>
Description: Help > MusicXML Links to contributor licenses rather than end-user licenses
--- a/mscore/aboutmusicxmlbox.ui
+++ b/mscore/aboutmusicxmlbox.ui
@@ -20,14 +20,13 @@ p, li { white-space: pre-wrap; }
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-family:'Sans Serif'; font-size:10pt;">supported by many applications.</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Copyright © 2004-2018 the Contributors to the MusicXML</span></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Specification, published by the W3C Music Notation Community</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Group under the W3C Community Contributor License Agreement</span></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">(CLA):</span></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">Group under the W3C Community Final Specification Agreement:</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"><br /></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> </span><a href="https://www.w3.org/community/about/agreements/cla/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">https://www.w3.org/community/about/agreements/cla/</span></a></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> </span><a href="https://www.w3.org/community/about/process/final/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">https://www.w3.org/community/about/process/final/</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"><br /></p>
<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;">A human-readable summary is available:</span></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt;"><br /></p>
-<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> </span><a href="https://www.w3.org/community/about/agreements/cla-deed/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">https://www.w3.org/community/about/agreements/cla-deed/</span></a></p>
+<p style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt;"> </span><a href="https://www.w3.org/community/about/process/fsa-deed/"><span style=" font-size:10pt; text-decoration: underline; color:#0000ff;">https://www.w3.org/community/about/process/fsa-deed/</span></a></p>
<p style="-qt-paragraph-type:empty; margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px; font-size:10pt; text-decoration: underline; color:#0000ff;"><br /></p></body></html></string>
</property>
<property name="openExternalLinks">
--- a/mscore/musescore.cpp
+++ b/mscore/musescore.cpp
@@ -3638,11 +3638,10 @@ AboutMusicXMLBoxDialog::AboutMusicXMLBox
"supported by many applications.\n"
"Copyright © 2004-2017 the Contributors to the MusicXML\n"
"Specification, published by the W3C Music Notation Community\n"
- "Group under the W3C Community Contributor License Agreement\n"
- "(CLA):\n%1\n"
+ "Group under the W3C Community Final Specification Agreement:\n%1\n"
"A human-readable summary is available:\n%2")
- .arg( "\n <a href=\"https://www.w3.org/community/about/agreements/cla/\">https://www.w3.org/community/about/agreements/cla/</a>\n",
- "\n <a href=\"https://www.w3.org/community/about/agreements/cla-deed/\">https://www.w3.org/community/about/agreements/cla-deed/</a>\n")
+ .arg( "\n <a href=\"https://www.w3.org/community/about/process/final/\">https://www.w3.org/community/about/process/final/</a>\n",
+ "\n <a href=\"https://www.w3.org/community/about/process/fsa-deed/\">https://www.w3.org/community/about/process/fsa-deed/</a>\n")
.replace("\n","<br/>")));
}
|