Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit90cf2ab

Browse files
committed
Update copyrights and URLs after repo transfer
1 parent119fdab commit90cf2ab

19 files changed

+30
-30
lines changed

‎LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
1+
Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of
44
this software and associated documentation files (the "Software"), to deal in

‎Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# vim: set noet sw=4 ts=4 fileencoding=utf-8:
22
#
33
# A library for reading Microsoft's OLE Compound Document format
4-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
4+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
55
#
66
# Permission is hereby granted, free of charge, to any person obtaining a copy
77
# of this software and associated documentation files (the "Software"), to deal

‎README.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ Links
2828
* The `build status`_ can be observed on Travis CI
2929

3030
.. _documentation:http://compound-files.readthedocs.org/
31-
.. _source code:https://github.com/waveform80/compoundfiles
32-
.. _bug tracker:https://github.com/waveform80/compoundfiles/issues
31+
.. _source code:https://github.com/waveform-computing/compoundfiles
32+
.. _bug tracker:https://github.com/waveform-computing/compoundfiles/issues
3333
.. _Compound File Binary:http://msdn.microsoft.com/en-gb/library/dd942138.aspx
3434
.. _OLE Compound Documents:http://www.openoffice.org/sc/compdocfileformat.pdf
3535
.. _Advanced Authoring Format:http://www.amwa.tv/downloads/specifications/aafcontainerspec-v1.0.1.pdf
3636
.. _MIT license:http://opensource.org/licenses/MIT
37-
.. _build status:https://travis-ci.org/waveform80/compoundfiles
37+
.. _build status:https://travis-ci.org/waveform-computing/compoundfiles
3838

3939
.. |pypi|image::https://img.shields.io/pypi/v/compoundfiles.svg
4040
:target:https://pypi.python.org/pypi/compoundfiles
@@ -44,7 +44,7 @@ Links
4444
:target:https://compound-files.readthedocs.org/
4545
:alt:Documentation status
4646

47-
.. |travis|image::https://travis-ci.org/waveform80/compoundfiles.svg?branch=master
48-
:target:https://travis-ci.org/waveform80/compoundfiles
47+
.. |travis|image::https://travis-ci.org/waveform-computing/compoundfiles.svg?branch=master
48+
:target:https://travis-ci.org/waveform-computing/compoundfiles
4949
:alt:Build status
5050

‎compoundfiles/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/const.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/entities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/mmap.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/reader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

‎compoundfiles/streams.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# vim: set et sw=4 sts=4 fileencoding=utf-8:
33
#
44
# A library for reading Microsoft's OLE Compound Document format
5-
# Copyright (c) 2014 DaveHughes <dave@waveform.org.uk>
5+
# Copyright (c) 2014 DaveJones <dave@waveform.org.uk>
66
#
77
# Permission is hereby granted, free of charge, to any person obtaining a copy
88
# of this software and associated documentation files (the "Software"), to deal

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp