Changeset 2124
- Timestamp:
- Jun 17, 2007, 6:43:48 AM (15 years ago)
- Location:
- branches/file_selection
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/file_selection/LICENSE
r1217 r2124 1 The Transmission binaries and source code are distributed under the MIT 2 license. 1 The Transmission binaries and most of its source code is 2 distributed under the MIT license. 3 4 The exception to this are the files copyrighted by Charles Kerr, 5 which are distributed under the Creative Commons 6 Attribution-Noncommercial-Share Alike 3.0 License. 7 Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 8 Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 9 10 The remainder of this text pertains only to the MIT-licensed 11 portions of Transmission. 3 12 4 13 ----- -
branches/file_selection/NEWS
r1821 r2124 1 1 NEWS file for Transmission <http://transmission.m0k.org/> 2 3 0.80 (2007/0X/YY) 4 - added partial downloading 5 - added torrent creation 6 - licensing change; see the LICENSE file for details 7 - gtk+ client adds the torrent inspector 2 8 3 9 0.72 (2007/04/30) -
branches/file_selection/gtk/actions.c
r2097 r2124 1 /* *****************************************************************************2 * $Id: tr_window.c 1998 2007-06-06 00:30:13Z livings124 $1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #include <string.h> -
branches/file_selection/gtk/actions.h
r2054 r2124 1 /* *****************************************************************************2 * $Id: tr_window.c 1998 2007-06-06 00:30:13Z livings124 $1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #ifndef TR_ACTIONS_H -
branches/file_selection/gtk/hig.c
r2109 r2124 1 /* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */2 1 /* 3 * Pan - A Newsreader for Gtk+ 4 * Copyright (C) 2002 Charles Kerr <charles@rebelbase.com> 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 5 3 * 6 * This program is free software; you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation; version 2 of the License. 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 9 8 * 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * 15 * You should have received a copy of the GNU General Public License 16 * along with this program; if not, write to the Free Software 17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 18 12 */ 19 13 -
branches/file_selection/gtk/hig.h
r2109 r2124 1 /* *****************************************************************************2 * $Id:$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #ifndef __HIG_H__ -
branches/file_selection/gtk/makemeta-ui.c
r2122 r2124 1 /* *****************************************************************************2 * $Id:$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #include <string.h> -
branches/file_selection/gtk/makemeta-ui.h
r2115 r2124 1 /* *****************************************************************************2 * $Id:$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 13 * To be blunt, I'm happy to let the Transmission project use my 14 * code because Transmission is free software. Closed-source and/or 15 * commercial projects may not use this file. 16 */ 24 17 25 18 #ifndef MAKE_META_UI__H -
branches/file_selection/libtransmission/inout.c
r2109 r2124 1 /* *****************************************************************************2 * $Id$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #include <stdlib.h> /* for calloc */ -
branches/file_selection/libtransmission/makemeta.c
r2118 r2124 1 /* *****************************************************************************2 * $Id:$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #include <sys/types.h> -
branches/file_selection/libtransmission/makemeta.h
r2107 r2124 1 /* *****************************************************************************2 * $Id:$1 /* 2 * This file Copyright (C) 2007 Charles Kerr <charles@rebelbase.com> 3 3 * 4 * Copyright (c) 2005-2007 Transmission authors and contributors 4 * This file is available under the 5 * Attribution-Noncommercial-Share Alike 3.0 License. 6 * Overview: http://creativecommons.org/licenses/by-nc-sa/3.0/ 7 * Full text: http://creativecommons.org/licenses/by-nc-sa/3.0/legalcode 5 8 * 6 * Permission is hereby granted, free of charge, to any person obtaining a 7 * copy of this software and associated documentation files (the "Software"), 8 * to deal in the Software without restriction, including without limitation 9 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 * and/or sell copies of the Software, and to permit persons to whom the 11 * Software is furnished to do so, subject to the following conditions: 12 * 13 * The above copyright notice and this permission notice shall be included in 14 * all copies or substantial portions of the Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 21 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 22 * DEALINGS IN THE SOFTWARE. 23 *****************************************************************************/ 9 * Loosely speaking, you're free to use and adapt this work 10 * provided that it's for noncommercial uses and that you share your 11 * changes under a compatible license. 12 */ 24 13 25 14 #ifndef TR_MAKEMETA_H
Note: See TracChangeset
for help on using the changeset viewer.