ICU-13358 Fixed cpyscan problems. Enhanced cpyscan.pl to use online version of cpyskip.txt by default. Added the new Unicode copyright comment in many tools files.

X-SVN-Rev: 40527
This commit is contained in:
Yoshito Umaoka 2017-10-03 02:32:50 +00:00
parent 15d177ad35
commit 1870215131
194 changed files with 691 additions and 18 deletions

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
com.ibm.icu.dev.tool.ime.indic.BengaliInputMethodDescriptor
com.ibm.icu.dev.tool.ime.indic.DevanagariInputMethodDescriptor
com.ibm.icu.dev.tool.ime.indic.GujaratiInputMethodDescriptor

View File

@ -1,4 +1,8 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
#
#
# fully-qualified name of the java.awt.im.spi.InputMethodDescriptor
# implementation class

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
## Makefile.in for ICU - extra/colprobe
## Copyright (c) 2001, International Business Machines Corporation and
## others. All Rights Reserved.

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#ifndef COLPROBE_H
#define COLPROBE_H

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,5 +1,10 @@
#! /usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;

View File

@ -1,5 +1,10 @@
#! /usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
use IO::File;

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
use Unicode::UCD 'charinfo';
use Unicode::Normalize;

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
#my $localeMinusA = `locale -a`;

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
my $localeMinusA = `locale -a`;

View File

@ -1,3 +1,5 @@
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
af
af_ZA
am

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include "unicode/unistr.h"
#include "unicode/locid.h"
#include "unicode/ucnv.h"

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
There are several tools in this directory that should make it easier to generate collation data:
extractCollationData.pl - perl script that reads ICU resource bundle files and outputs a locale_collation.html file if collation elements are present in the locale. Arguments are the list of locale source files (*.txt) that need to be processed.
createComparisonTables.pl - takes a locale name. Looks in directories that should contain the html data produced by colprobe or extractCollationData.

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include "sortedlines.h"
static int codePointCmp(const void *a, const void *b) {

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#ifndef COLPROBE_SORTEDLINES_H
#define COLPROBE_SORTEDLINES_H

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
my $localeMinusA = `cat /home/weiv/src/icu/source/extra/colprobe/locale.txt`;

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#include "targetsetgenerator.h"
TargetSetGenerator::TargetSetGenerator(UnicodeSet &startingSet, CompareFn comparer) :

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
#ifndef TARGETSETGENERATOR_H
#define TARGETSETGENERATOR_H

View File

@ -1,5 +1,8 @@
<html>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>$locale</title>

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
my $file;

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
*******************************************************************************
*

View File

@ -1,5 +1,10 @@
#!/usr/bin/perl -w
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
use strict;
#my $localeMinusA = `locale -a`;

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
clean:
-rm -rf ./tmp

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2009-2013 IBM Corp. and Others. All Rights Reserved
# multicu/c makefile

View File

@ -1,4 +1,8 @@
# -*- makefile -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
include $(MULTICU_ROOT)/common/Makefile-multi.inc

View File

@ -1,2 +1,6 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2009 IBM Corp. and Others. All Rights Reserved
# a list of ICU4Cs too old to build with the current patchset.

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
Only in 3_0/icu/source: bin
Only in 3_0.orig/icu/source: confdefs.h

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
--- 3_2.orig/icu/source/config/mh-darwin 2008-10-20 14:57:52.000000000 -0700
+++ 3_2/icu/source/config/mh-darwin 2008-10-20 15:57:28.000000000 -0700

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
Only in 3_0/icu/source: bin
Only in 3_0.orig/icu/source: confdefs.h

View File

@ -1,4 +1,8 @@
#!/bin/cat
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2009 IBM Corp. and Others. All Rights Reserved
#

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2009 IBM Corp. and Others. All Rights Reserved
#
# Sample "super configure"

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
C_ROOT=$(MULTICU_ROOT)/c

View File

@ -1,4 +1,8 @@
# -*- makefile -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
include $(MULTICU_ROOT)/common/Makefile-multi.inc
ICUS=$(MULTICU_ROOT)/packages

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
if [ ! -x $1 ];
then

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
set -x
rm *.jvm.sh

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
VER=/System/Library/Frameworks/JavaVM.framework/Versions
if [ ! -d "${VER}" ];

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
if [ ! -x ${1} ];
then

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
Put '.sh' files in this dir , locally, to be used for Java version bringup

View File

@ -1,4 +1,8 @@
#!/bin/sh
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2013 IBM Corp. and Others. All Rights Reserved
if [ ! -x ${1} ];
then

View File

@ -1,2 +1,6 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2009 IBM Corp. and Others. All Rights Reserved
# a list of ICU4Cs too old to build with the current patchset.

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (c) 2008-2009 IBM Corp. and Others. All Rights Reserved
# Makefile for multicu/sample/chello
# C/C++ hello

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (C) 1998-2009, International Business Machines

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (C) 1998-2009, International Business Machines Corporation

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (C) 1998-2009, International Business Machines Corporation

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved.
MULTICU_ROOT=../../
include $(MULTICU_ROOT)/common/Makefile-multi.inc

View File

@ -1,4 +1,8 @@
# -*- makefile -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved.

View File

@ -1,4 +1,8 @@
# -*- makefile -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (C) 2008-2013 IBM Corporation and Others. All Rights Reserved.
CPPFLAGS+=-DU_DISABLE_RENAMING=1 -I. -I/xsrl/IIE/include -I/xsrl/E/icu/source/tools/toolutil
# TODO - where to get uoptions.h?

View File

@ -1,4 +1,8 @@
# -*- makefile -*-
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (C) 2012 IBM Corporation and Others. All Rights Reserved.
## Name of the app

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved. -->
element capabilities

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2012 IBM Corporation and Others, All Rights Reserved. -->
<!-- This file was generated from: cooked/allversions.xml ./xml/2_2.xml ./xml/3_0.xml ./xml/3_2.xml ./xml/3_4_1.xml ./xml/3_4.xml ./xml/3_6.xml ./xml/3_8_1.xml ./xml/3_8.xml ./xml/4_0_1.xml ./xml/4_0.xml ./xml/4_1_1.xml ./xml/4_2_0_1.xml ./xml/4_2.xml ./xml/r50_1.xml ./jxml/2_2.xml ./jxml/2_4.xml ./jxml/2_6_1.xml ./jxml/2_6.xml ./jxml/2_8.xml ./jxml/3_0.xml ./jxml/3_2.xml ./jxml/3_4_1.xml ./jxml/3_4_2.xml ./jxml/3_4_3.xml ./jxml/3_4_4.xml ./jxml/3_4_5.xml ./jxml/3_4.xml ./jxml/3_6.xml ./jxml/3_8_1.xml ./jxml/3_8.xml ./jxml/4_0_1.xml ./jxml/4_0.xml ./jxml/4_1_1.xml ./jxml/4_2.xml ./jvmxml/1_4_2.xml ./jvmxml/1_5_0.xml ./jvmxml/1_6_0_26.xml ./jvmxml/1_6_0.xml ./jvmxml/1_7_0.xml cooked/features.xml -->

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008-2012 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<icuInfo>

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved. -->
<icuInfo>
<icuProducts>

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved. -->
<icuInfo>
<icuProducts>

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (C) 2012 IBM Corporation and Others. All Rights Reserved. -->
<icuInfo>
<icuProducts>

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2009 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2012 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,3 +1,7 @@
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2012 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2009 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2009 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2008 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2009 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,4 +1,8 @@
<?xml version="1.0" encoding="UTF-8" ?>
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<!-- Copyright (c) 2012 IBM Corporation and Others, All Rights Reserved. -->
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">

View File

@ -1,3 +1,7 @@
#
# Copyright (C) 2017 and later: Unicode, Inc. and others.
# License & terms of use: http://www.unicode.org/copyright.html
#
# Copyright (C) 2012 IBM Corporation and Others. All Rights Reserved.
Note: this is a bit of a mess right now.

View File

@ -1,3 +1,5 @@
// © 2017 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
// Copyright (C) 2008-2012 IBM Corporation and Others. All Rights Reserved.
#include <ostream>
#include "xmlout.h"

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

View File

@ -1,4 +1,8 @@
<!DOCTYPE icuInfo SYSTEM "http://icu-project.org/dtd/icumeta.dtd">
<!--
* © 2017 and later: Unicode, Inc. and others.
* License & terms of use: http://www.unicode.org/copyright.html#License
-->
<icuInfo>
<icuProducts>
<icuProduct type="icu4c">

Some files were not shown because too many files have changed in this diff Show More