~ubuntu-branches/ubuntu/lucid/cmake/lucid

« back to all changes in this revision

Viewing changes to Source/cmDocumentation.cxx

  • Committer: Bazaar Package Importer
  • Author(s): Artur Rona
  • Date: 2009-12-16 11:11:54 UTC
  • mfrom: (3.1.9 sid)
  • Revision ID: james.westby@ubuntu.com-20091216111154-6accvv6yq86h2hkc
Tags: 2.8.0-5ubuntu1
* Merge from debian testing (LP: #497349). Remaining changes:
  - Keep the Replaces: on cmake-data to cover the Kubuntu version from
    Jaunty in case someone decides to do an (unsupported) Jaunty->Lucid
    upgrade.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*=========================================================================
2
 
 
3
 
  Program:   CMake - Cross-Platform Makefile Generator
4
 
  Module:    $RCSfile: cmDocumentation.cxx,v $
5
 
  Language:  C++
6
 
  Date:      $Date: 2008-10-24 15:18:46 $
7
 
  Version:   $Revision: 1.69.2.3 $
8
 
 
9
 
  Copyright (c) 2002 Kitware, Inc., Insight Consortium.  All rights reserved.
10
 
  See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
11
 
 
12
 
     This software is distributed WITHOUT ANY WARRANTY; without even 
13
 
     the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR 
14
 
     PURPOSE.  See the above copyright notices for more information.
15
 
 
16
 
=========================================================================*/
 
1
/*============================================================================
 
2
  CMake - Cross Platform Makefile Generator
 
3
  Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
 
4
 
 
5
  Distributed under the OSI-approved BSD License (the "License");
 
6
  see accompanying file Copyright.txt for details.
 
7
 
 
8
  This software is distributed WITHOUT ANY WARRANTY; without even the
 
9
  implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
 
10
  See the License for more information.
 
11
============================================================================*/
17
12
#include "cmDocumentation.h"
18
13
 
19
14
#include "cmSystemTools.h"
164
159
static const char *cmDocumentationCopyright[][3] =
165
160
{
166
161
  {0,
167
 
   "Copyright (c) 2002 Kitware, Inc., Insight Consortium.  "
 
162
   "Copyright 2000-2009 Kitware, Inc., Insight Software Consortium.  "
168
163
   "All rights reserved.", 0},
169
164
  {0,
170
165
   "Redistribution and use in source and binary forms, with or without "
179
174
   "documentation and/or other materials provided with the distribution.",
180
175
   0},
181
176
  {"",
182
 
   "The names of Kitware, Inc., the Insight Consortium, or the names of "
183
 
   "any consortium members, or of any contributors, may not be used to "
184
 
   "endorse or promote products derived from this software without "
185
 
   "specific prior written permission.", 0},
186
 
  {"",
187
 
   "Modified source versions must be plainly marked as such, and must "
188
 
   "not be misrepresented as being the original software.", 0},
 
177
   "Neither the names of Kitware, Inc., the Insight Software Consortium, "
 
178
   "nor the names of their contributors may be used to endorse or promote "
 
179
   "products derived from this software without specific prior written "
 
180
   "permission.", 0},
189
181
  {0,
190
 
   "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDER AND CONTRIBUTORS "
191
 
   "``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT "
 
182
   "THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "
 
183
   "\"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT "
192
184
   "LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR "
193
 
   "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHORS OR "
194
 
   "CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, "
195
 
   "EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, "
196
 
   "PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR "
197
 
   "PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF "
198
 
   "LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING "
199
 
   "NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS "
200
 
   "SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.", 0},
 
185
   "A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT "
 
186
   "HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, "
 
187
   "SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT "
 
188
   "LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, "
 
189
   "DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY "
 
190
   "THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT "
 
191
   "(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE "
 
192
   "OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.",
 
193
   0},
201
194
  {0, 0, 0}
202
195
};
203
196
 
267
260
  this->PropertySections.push_back("Properties on Targets");
268
261
  this->PropertySections.push_back("Properties on Tests");
269
262
  this->PropertySections.push_back("Properties on Source Files");
 
263
  this->PropertySections.push_back("Properties on Cache Entries");
270
264
 
271
265
  this->VariableSections.push_back("Variables that Provide Information");
272
266
  this->VariableSections.push_back("Variables That Change Behavior");