mirror of
https://github.com/troydhanson/tpl.git
synced 2024-12-26 23:57:25 +08:00
update links
This commit is contained in:
parent
3d71e23d07
commit
960a861b05
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2005-2010, Troy Hanson http://tpl.sourceforge.net
|
Copyright (c) 2005-2013, Troy Hanson http://troydhanson.github.com/tpl/
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
6
README
6
README
@ -3,7 +3,7 @@ tpl: fast, easy serialization in C
|
|||||||
|
|
||||||
Documentation for tpl is available in the doc/ directory or at:
|
Documentation for tpl is available in the doc/ directory or at:
|
||||||
|
|
||||||
http://tpl.sourceforge.net
|
http://troydhanson.github.com/tpl
|
||||||
|
|
||||||
You can build tpl as a library, like so:
|
You can build tpl as a library, like so:
|
||||||
|
|
||||||
@ -51,6 +51,6 @@ ChangeLog.
|
|||||||
|
|
||||||
Feel free to send me questions, comments or bug reports.
|
Feel free to send me questions, comments or bug reports.
|
||||||
|
|
||||||
Troy D. Hanson, February 5, 2010
|
Troy D. Hanson, March 17 2013
|
||||||
thanson@users.sourceforge.net
|
tdh@tkhanson.net
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
AC_PREREQ(2.59)
|
AC_PREREQ(2.59)
|
||||||
|
|
||||||
AC_INIT([libtpl], [1.4], [thanson@users.sourceforge.net])
|
AC_INIT([libtpl], [1.4], [tdh@tkhanson.net])
|
||||||
AC_CONFIG_SRCDIR(src/tpl.c)
|
AC_CONFIG_SRCDIR(src/tpl.c)
|
||||||
AC_CONFIG_AUX_DIR(config)
|
AC_CONFIG_AUX_DIR(config)
|
||||||
AC_CONFIG_HEADERS(config/config.h)
|
AC_CONFIG_HEADERS(config/config.h)
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
package Tpl;
|
package Tpl;
|
||||||
|
|
||||||
# Copyright (c) 2005-2007, Troy Hanson http://tpl.sourceforge.net
|
# Copyright (c) 2005-2013, Troy Hanson http://troydhanson.github.com/tpl/
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -8,13 +8,6 @@ package Tpl;
|
|||||||
#
|
#
|
||||||
# * Redistributions of source code must retain the above copyright
|
# * Redistributions of source code must retain the above copyright
|
||||||
# notice, this list of conditions and the following disclaimer.
|
# notice, this list of conditions and the following disclaimer.
|
||||||
# * Redistributions in binary form must reproduce the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer in
|
|
||||||
# the documentation and/or other materials provided with the
|
|
||||||
# distribution.
|
|
||||||
# * Neither the name of the copyright holder nor the names of its
|
|
||||||
# contributors may be used to endorse or promote products derived
|
|
||||||
# from this software without specific prior written permission.
|
|
||||||
#
|
#
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
# by Troy Hanson 27 Feb 2006
|
# by Troy Hanson 27 Feb 2006
|
||||||
# convert between tpl and XML
|
# convert between tpl and XML
|
||||||
|
|
||||||
# Copyright (c) 2005-2006, Troy Hanson http://tpl.sourceforge.net
|
# Copyright (c) 2005-2013, Troy Hanson http://troydhanson.github.com/tpl/
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
#
|
#
|
||||||
# Redistribution and use in source and binary forms, with or without
|
# Redistribution and use in source and binary forms, with or without
|
||||||
@ -12,13 +12,6 @@
|
|||||||
#
|
#
|
||||||
# * Redistributions of source code must retain the above copyright
|
# * Redistributions of source code must retain the above copyright
|
||||||
# notice, this list of conditions and the following disclaimer.
|
# notice, this list of conditions and the following disclaimer.
|
||||||
# * Redistributions in binary form must reproduce the above copyright
|
|
||||||
# notice, this list of conditions and the following disclaimer in
|
|
||||||
# the documentation and/or other materials provided with the
|
|
||||||
# distribution.
|
|
||||||
# * Neither the name of the copyright holder nor the names of its
|
|
||||||
# contributors may be used to endorse or promote products derived
|
|
||||||
# from this software without specific prior written permission.
|
|
||||||
#
|
#
|
||||||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
|
||||||
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
# IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2005-2010, Troy D. Hanson http://tpl.sourceforge.net
|
Copyright (c) 2005-2013, Troy D. Hanson http://troydhanson.github.com/tpl/
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
Copyright (c) 2005-2010, Troy D. Hanson http://tpl.sourceforge.net
|
Copyright (c) 2005-2013, Troy D. Hanson http://troydhanson.github.com/tpl/
|
||||||
All rights reserved.
|
All rights reserved.
|
||||||
|
|
||||||
Redistribution and use in source and binary forms, with or without
|
Redistribution and use in source and binary forms, with or without
|
||||||
|
Loading…
x
Reference in New Issue
Block a user