diff options
author | Michael Meeks <michael.meeks@suse.com> | 2012-06-21 11:53:00 +0100 |
---|---|---|
committer | Michael Meeks <michael.meeks@suse.com> | 2012-06-21 13:11:06 +0100 |
commit | b6db3e3acc6ba349d845ec58e3242d025352ef2f (patch) | |
tree | b371840f1594fc0a8c00550590153d89cfc4e1c6 /toolkit/src2xml/source | |
parent | da6c3d4bdd069f8125277a54c93fa5cfdf87b70c (diff) |
re-base on ALv2 code.
Change-Id: Ice06e639213aeb6f7f23cbf4634947dd25613db1
Diffstat (limited to 'toolkit/src2xml/source')
-rw-r--r-- | toolkit/src2xml/source/boxer.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/expression.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/expression_test.py | 18 | ||||
-rw-r--r-- | toolkit/src2xml/source/globals.py | 18 | ||||
-rw-r--r-- | toolkit/src2xml/source/macroexpander_test.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/macroparser.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/macroparser_test.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/src2xml.py | 17 | ||||
-rw-r--r-- | toolkit/src2xml/source/srclexer.py | 18 | ||||
-rw-r--r-- | toolkit/src2xml/source/srcparser.py | 18 |
10 files changed, 174 insertions, 0 deletions
diff --git a/toolkit/src2xml/source/boxer.py b/toolkit/src2xml/source/boxer.py index 1b716d757299..e0bc9d4cb5f0 100644 --- a/toolkit/src2xml/source/boxer.py +++ b/toolkit/src2xml/source/boxer.py @@ -1,3 +1,20 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# from globals import * diff --git a/toolkit/src2xml/source/expression.py b/toolkit/src2xml/source/expression.py index b5f58c42d112..aaf48daddaa2 100644 --- a/toolkit/src2xml/source/expression.py +++ b/toolkit/src2xml/source/expression.py @@ -1,3 +1,20 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# import sys import globals diff --git a/toolkit/src2xml/source/expression_test.py b/toolkit/src2xml/source/expression_test.py index 7e7393fb2fba..235cd1d124be 100644 --- a/toolkit/src2xml/source/expression_test.py +++ b/toolkit/src2xml/source/expression_test.py @@ -1,5 +1,23 @@ #!/usr/bin/env python +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# + import sys import expression diff --git a/toolkit/src2xml/source/globals.py b/toolkit/src2xml/source/globals.py index 5e170b8c2a6e..34d8269402db 100644 --- a/toolkit/src2xml/source/globals.py +++ b/toolkit/src2xml/source/globals.py @@ -1,3 +1,21 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# + import sys class ParseError (Exception): diff --git a/toolkit/src2xml/source/macroexpander_test.py b/toolkit/src2xml/source/macroexpander_test.py index 823bcdb36bc2..e97848a0df6b 100644 --- a/toolkit/src2xml/source/macroexpander_test.py +++ b/toolkit/src2xml/source/macroexpander_test.py @@ -1,4 +1,21 @@ #!/usr/bin/env python +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# import srclexer, srcparser, globals diff --git a/toolkit/src2xml/source/macroparser.py b/toolkit/src2xml/source/macroparser.py index 1a221b404d42..1cad3d7a04e3 100644 --- a/toolkit/src2xml/source/macroparser.py +++ b/toolkit/src2xml/source/macroparser.py @@ -1,3 +1,20 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# import sys from globals import * diff --git a/toolkit/src2xml/source/macroparser_test.py b/toolkit/src2xml/source/macroparser_test.py index a7064832d1f8..d1e6f6cba7dd 100644 --- a/toolkit/src2xml/source/macroparser_test.py +++ b/toolkit/src2xml/source/macroparser_test.py @@ -1,4 +1,21 @@ #!/usr/bin/env python +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# import macroparser diff --git a/toolkit/src2xml/source/src2xml.py b/toolkit/src2xml/source/src2xml.py index b03c5e61ede1..16d143fdd5eb 100644 --- a/toolkit/src2xml/source/src2xml.py +++ b/toolkit/src2xml/source/src2xml.py @@ -1,4 +1,21 @@ #!/usr/bin/env python +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# import getopt import os diff --git a/toolkit/src2xml/source/srclexer.py b/toolkit/src2xml/source/srclexer.py index 5a5a3319b0d1..c79923293c69 100644 --- a/toolkit/src2xml/source/srclexer.py +++ b/toolkit/src2xml/source/srclexer.py @@ -1,3 +1,21 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# + import sys, os.path from globals import * import macroparser diff --git a/toolkit/src2xml/source/srcparser.py b/toolkit/src2xml/source/srcparser.py index b25d39ecb66e..3dcd9c63ed0c 100644 --- a/toolkit/src2xml/source/srcparser.py +++ b/toolkit/src2xml/source/srcparser.py @@ -1,3 +1,21 @@ +# +# This file is part of the LibreOffice project. +# +# This Source Code Form is subject to the terms of the Mozilla Public +# License, v. 2.0. If a copy of the MPL was not distributed with this +# file, You can obtain one at http://mozilla.org/MPL/2.0/. +# +# This file incorporates work covered by the following license notice: +# +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed +# with this work for additional information regarding copyright +# ownership. The ASF licenses this file to you under the Apache +# License, Version 2.0 (the "License"); you may not use this file +# except in compliance with the License. You may obtain a copy of +# the License at http://www.apache.org/licenses/LICENSE-2.0 . +# + import sys from globals import * import srclexer |