Tuesday, 2007-07-03

cchelpbotNOTICE: SF.net SVN: cctools: [6105] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6105 http://cctools.svn.sourceforge.net/cctools/?rev=6105&view=rev Author: jakin44 Date: 2007-07-02 17:05:07 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Let's clean up these leaks and open file handles. Modified Paths: --------------00:08
cchelpbotNOTICE: liblicense/trunk/modules/io/sidecar_xmp.c Modified: liblicense/trunk/modules/io/sidecar_xmp.c =================================================================== --- liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-02 19:03:13 UTC (rev 6104) +++ liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:05:07 UTC (rev 6105) @@ -117,6 +117,7 @@00:08
cchelpbotNOTICE: get_contents_stdio(f,&buffer,&len); XmpPtr xmp = xmp_new(buffer,len); + free(buffer); char *uri_string = NULL; XmpStringPtr license_uri = xmp_string_new(); @@ -130,6 +131,8 @@ return uri_string; } + free(sidecar); + return NULL; } @@ -149,6 +152,7 @@ get_contents_stdio(f,&buffer,&len); xmp = xmp_new(buffer,len); + fclose(f); } if ( !xmp ) { @@00:08
cchelpbotNOTICE: -170,8 +174,8 @@ success = false; } + free(sidecar); xmp_string_free(xmp_string); - xmp_free(xmp); return success; This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.00:08
jakinrejon, what goes in the copyright header when attributing to CC?00:12
cchelpbotNOTICE: SF.net SVN: cctools: [6106] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6106 http://cctools.svn.sourceforge.net/cctools/?rev=6106&view=rev Author: jakin44 Date: 2007-07-02 17:10:08 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Actually, that wasn't an open file handle Modified Paths: --------------00:12
cchelpbotNOTICE: liblicense/trunk/modules/io/sidecar_xmp.c Modified: liblicense/trunk/modules/io/sidecar_xmp.c =================================================================== --- liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:05:07 UTC (rev 6105) +++ liblicense/trunk/modules/io/sidecar_xmp.c 2007-07-03 00:10:08 UTC (rev 6106) @@ -149,10 +149,9 @@ if (00:12
cchelpbotNOTICE: f ) { char *buffer; size_t len; - get_contents_stdio(f,&buffer,&len); + get_contents_stdio(f,&buffer,&len); /* closes the file */ xmp = xmp_new(buffer,len); - fclose(f); } if ( !xmp ) { This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.00:12
bovinitywoah00:12
rejonoh, looks like the svn commits are back turned on :)00:13
jakinsurprise00:15
* tannewt holds his breath00:16
tannewtwhere is the message?00:19
cchelpbotNOTICE: SF.net SVN: cctools: [6107] liblicense/trunk: Revision: 6107 http://cctools.svn.sourceforge.net/cctools/?rev=6107&view=rev Author: tannewt Date: 2007-07-02 17:16:38 -0700 (Mon, 02 Jul 2007) Log Message: ----------- Plugged all leaks (hopefully) in library (not bindings) and added license headers. Modified Paths: --------------00:19
cchelpbotNOTICE: liblicense/trunk/Makefile.am liblicense/trunk/acinclude.m4 liblicense/trunk/autogen.sh liblicense/trunk/bindings/Makefile.am liblicense/trunk/bindings/python/Makefile.am liblicense/trunk/bindings/python/liblicense.c liblicense/trunk/bindings/python/tests/test.py liblicense/trunk/configure.ac liblicense/trunk/liblicense.h00:19
cchelpbotNOTICE: liblicense/trunk/licenses/Makefile.am liblicense/trunk/licenses/creativecommons.org_licenses_by-nd_2.0_.rdf liblicense/trunk/licenses/creativecommons.org_licenses_by-nd_2.0_za_.rdf liblicense/trunk/list.c liblicense/trunk/list.h liblicense/trunk/module_wrangler.c liblicense/trunk/module_wrangler.h liblicense/trunk/modules/Makefile.am00:19
cchelpbotNOTICE: liblicense/trunk/modules/config/Makefile.am liblicense/trunk/modules/config/flat_file.c liblicense/trunk/modules/io/Makefile.am liblicense/trunk/modules/io/exempi.c liblicense/trunk/modules/io/sidecar_xmp.c liblicense/trunk/modules/io/stub.c liblicense/trunk/read_license.c liblicense/trunk/read_license.h liblicense/trunk/system_default.c00:19
cchelpbotNOTICE: liblicense/trunk/system_default.h liblicense/trunk/system_licenses.c liblicense/trunk/system_licenses.h liblicense/trunk/tests/Makefile.am liblicense/trunk/tests/default_test.c liblicense/trunk/tests/list_test.c liblicense/trunk/tests/mw_test.c liblicense/trunk/tests/read_test.c liblicense/trunk/tests/test.c liblicense/trunk/utils/Makefile.am00:20
cchelpbotNOTICE: liblicense/trunk/utils/license.c liblicense/trunk/write_license.c liblicense/trunk/write_license.h Added Paths: ----------- liblicense/trunk/tests/info_test.c liblicense/trunk/tests/write_test.c Modified: liblicense/trunk/Makefile.am =================================================================== --- liblicense/trunk/Makefile.am 2007-07-0300:20
tannewthaha00:20
cchelpbotNOTICE: 00:10:08 UTC (rev 6106) +++ liblicense/trunk/Makefile.am 2007-07-03 00:16:38 UTC (rev 6107) @@ -1,3 +1,20 @@ +# Creative Commons has made the contents of this file +# available under a CC-GNU-GPL license: +# +# http://creativecommons.org/licenses/GPL/2.0/ +# +# A copy of the full license can be found as part of this +# distribution in the file00:20
cchelpbotNOTICE: COPYING. +# +# You may use the liblicense software in accordance with the +# terms of that license. You agree that you are solely +# responsible for your use of the liblicense software and you +# represent and warrant to Creative Commons that your use +# of the liblicense software will comply with the CC-GNU-GPL. +# +# Copyright 2007, Creative00:20
cchelpbotNOTICE: Commons, www.creativecommons.org. +# Copyright 2007, Jason Kivlighn. + SUBDIRS = . xdgmime licenses modules bindings tests utils libdir = @libdir@/liblicense Modified: liblicense/trunk/acinclude.m4 =================================================================== --- liblicense/trunk/acinclude.m4 2007-07-03 00:10:08 UTC (rev 6106) +++00:20
cchelpbotNOTICE: liblicense/trunk/acinclude.m4 2007-07-03 00:16:38 UTC (rev 6107) @@ -1,3 +1,20 @@ +# Creative Commons has made the contents of this file +# available under a CC-GNU-GPL license: +# +# http://creativecommons.org/licenses/GPL/2.0/ +# +# A copy of the full license can be found as part of this +# distribution in the file COPYING. +# +# You may use the00:20
*** cchelpbot has joined #cc00:20
* tannewt laughs00:20
rejonhahahahah00:20
tannewtwhat can I say, I've been working hard00:20
jakinyou killed him...00:20
rejonyah, want that work to go noticed00:21
rejonno he is already back00:21
rejoncchelpbot is not a bitch00:21
cchelpbotrejon: Error: "is" is not a valid command.00:21
jakintrue...00:21
bovinityhah00:21
rejonhahahaha00:21
rejondamn!00:21
bovinityoh it's on now.00:21
tannewtcchelpbot, status00:22
cchelpbottannewt: I am connected to freenode as cchelpbot.00:22
tannewthes fine00:23
jakinhe's tough00:24
jakintannewt, you check sidecar_xmp.c again for leaks?00:25
tannewtnope00:26
tannewtI'm in livecd mode now00:26
jakinalright00:26
jakinjust curious00:26
tannewtyou can ;-)00:26
tannewtrun lt-test_read or _write00:27
jakini'm in tracker mode00:27
tannewthehe00:28
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User talk:Augustine Fou <http://wiki.creativecommons.org/User_talk:Augustine_Fou>00:38
jakinhmm, i don't even have valgrind00:40
rejonwhat!00:40
rejonvalgrind rulez00:40
*** bovinity has quit IRC00:45
jakintoo much python recently00:50
jakin(before the summer)00:50
tannewthehe00:51
*** _rrr has quit IRC00:51
*** tvol has quit IRC00:52
*** zwnj has quit IRC00:58
*** tannewt has quit IRC00:59
*** zwnj has joined #cc01:00
*** cameronparkins has joined #cc01:05
*** luisv has joined #cc01:20
*** miamiphp has quit IRC01:29
*** cameronparkins has quit IRC01:34
cchelpbotNOTICE: SF.net SVN: cctools: [6108] liblicense/trunk/modules/io/sidecar_xmp.c: Revision: 6108 http://cctools.svn.sourceforge.net/cctools/?rev=6108&view=rev Author: jakin44 Date: 2007-07-02 18:26:32 -0700 (Mon, 02 Jul 2007) Log Message: ----------- That's the last of the leaks in my code... honest... Modified Paths: --------------01:34
cchelpbotNOTICE: liblicense/trunk/modules/io/sidecar_xmp.c This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.01:34
*** rejon has quit IRC01:38
*** cameronparkins has joined #cc01:40
*** rejon has joined #cc02:18
*** cameronparkins_ has joined #cc02:18
*** cameronparkins has quit IRC02:19
cchelpbotNOTICE: SF.net SVN: cctools: [6109] ccoer/trunk/www/templates/about.tpl.php: Revision: 6109 http://cctools.svn.sourceforge.net/cctools/?rev=6109&view=rev Author: mlinksva Date: 2007-07-02 19:22:28 -0700 (Mon, 02 Jul 2007) Log Message: ----------- mere verbiage Modified Paths: -------------- ccoer/trunk/www/templates/about.tpl.php This was sent by the02:26
cchelpbotNOTICE: SourceForge.net collaborative development platform, the world's largest Open Source development site.02:26
*** zwnj has quit IRC03:08
*** jakin has quit IRC03:12
*** _rrr has joined #cc03:50
*** _rrr_ has joined #cc03:53
*** __shawn has joined #cc03:58
*** _rrr has quit IRC04:09
*** _rrr has joined #cc04:15
*** _rrr_ has quit IRC04:15
*** luisv has quit IRC04:23
*** _rrr has quit IRC04:28
paulproteusI look forward to valgrinding that library.04:45
*** _rrr has joined #cc04:45
*** _shawn_ has joined #cc04:56
*** __shawn has quit IRC05:00
*** brylie has joined #cc05:28
*** _rrr_ has joined #cc05:31
*** _rrr has quit IRC05:31
*** _rrr_ has left #cc05:31
*** kristallpirat has quit IRC05:52
*** _shawn_ has quit IRC06:01
*** cameronparkins_ has quit IRC06:57
*** __shawn has joined #cc07:06
*** __shawn has quit IRC07:07
*** sama has joined #cc07:21
*** skyfaller has left #cc07:34
*** brylie has quit IRC07:35
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Zapping musik <http://wiki.creativecommons.org/Zapping_musik>07:35
*** rejon has quit IRC07:51
*** libervisco has joined #cc08:18
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Creative Commons Metadata <http://wiki.creativecommons.org/Creative_Commons_Metadata>09:11
*** libervisco has quit IRC09:23
*** zwnj has joined #cc09:49
*** e-star has joined #cc09:55
*** e-star has quit IRC10:10
*** e-star has joined #cc10:16
*** zwnj has quit IRC10:45
*** libervisco has joined #cc10:50
*** libervisco has quit IRC11:32
*** kristallpirat has joined #cc11:33
*** libervisco has joined #cc12:19
*** luisv has joined #cc12:22
*** e-star has quit IRC12:24
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Music Podcasts <http://wiki.creativecommons.org/Music_Podcasts>12:26
*** e-star has joined #cc12:27
*** zwnj has joined #cc12:45
*** luisv is now known as lu|afk12:46
*** lu|afk is now known as luisv13:03
*** zwnj has quit IRC13:21
*** gavinbaker has joined #cc13:44
*** libervisco has quit IRC13:48
*** nathany has joined #cc14:35
*** libervisco has joined #cc14:48
*** sama has quit IRC15:30
*** e-star_ has joined #cc15:36
*** e-star has quit IRC15:36
cchelpbotNOTICE: SF.net SVN: cctools: [6110] i18n/trunk: Revision: 6110 http://cctools.svn.sourceforge.net/cctools/?rev=6110&view=rev Author: nyergler Date: 2007-07-03 08:40:53 -0700 (Tue, 03 Jul 2007) Log Message: ----------- Removing incorrect translation. Modified Paths: -------------- i18n/trunk/i18n/icommons-de.po i18n/trunk/i18n/icommons-de_AT.po15:45
cchelpbotNOTICE: i18n/trunk/i18n/icommons-de_CH.po Removed Paths: ------------- i18n/trunk/data/de/util.Generic.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.15:45
*** liberfiasco has joined #cc15:48
*** libervisco has quit IRC15:49
*** liberfiasco is now known as libervislowfi15:50
*** libervislowfi is now known as libervisco16:00
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User talk:Lombokglobal <http://wiki.creativecommons.org/User_talk:Lombokglobal>16:03
*** sama has joined #cc16:09
*** cameronparkins has joined #cc16:13
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Embedded Metadata <http://wiki.creativecommons.org/Embedded_Metadata> || CcWiki:Administrators <http://wiki.creativecommons.org/CcWiki:Administrators>16:13
*** cameronparkins has quit IRC16:17
*** bse has joined #cc16:23
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: CcWiki talk:Administrators <http://wiki.creativecommons.org/CcWiki_talk:Administrators>16:23
*** tvol has joined #CC16:23
*** tannewt has joined #cc16:30
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Liblicense <http://wiki.creativecommons.org/Liblicense>16:45
*** sama has quit IRC17:13
*** cameronparkins has joined #cc17:13
*** _rrr has joined #cc17:14
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn> || Documentation <http://wiki.creativecommons.org/Documentation> || User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn> || User:Jason Kivlighn <http://wiki.creativecommons.org/User:Jason_Kivlighn>17:19
cchelpbotNOTICE: SF.net SVN: cctools: [6111] ccwordpress/trunk/www/legalcode/GPL_2.0.html: Revision: 6111 http://cctools.svn.sourceforge.net/cctools/?rev=6111&view=rev Author: bse Date: 2007-07-03 10:25:01 -0700 (Tue, 03 Jul 2007) Log Message: ----------- actually redirect to gpl 2.0 Modified Paths: -------------- ccwordpress/trunk/www/legalcode/GPL_2.0.html This17:31
cchelpbotNOTICE: was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.17:31
*** bse is now known as bovinity17:32
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: TestSMW <http://wiki.creativecommons.org/TestSMW>17:39
*** abhay has joined #cc17:49
*** tannewt has quit IRC18:01
*** brylie has joined #cc18:03
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Special:Log/delete <http://wiki.creativecommons.org/Special:Log/delete> || Special:Log/protect <http://wiki.creativecommons.org/Special:Log/protect> || Special:Log/delete <http://wiki.creativecommons.org/Special:Log/delete> || Special:Log/protect <http://wiki.creativecommons.org/Special:Log/protect> || Special:Log/block <http://wiki.creativecommons.org/Special:Log/block> || Image <http://wiki.creativecommons.org/Image>18:03
*** tannewt has joined #cc18:04
*** libervisco has quit IRC18:13
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Alex vmg <http://wiki.creativecommons.org/Alex_vmg>18:23
*** brylie has quit IRC18:48
cchelpbotNew news from http://wiki.creativecommons.org/wiki/index.php?title=special:recentchanges&feed=rss: Education <http://wiki.creativecommons.org/Education>18:58
*** luisv has quit IRC19:13
*** papyromancer has joined #cc19:15
*** tannewt has quit IRC19:29
*** abhay has quit IRC19:29
*** tannewt has joined #cc19:29
*** gavinbaker has quit IRC19:29
*** papyromancer has left #cc19:33
*** luisv has joined #cc19:58
*** jakin has joined #cc20:01
*** luisv has quit IRC20:26
*** e-star_ has quit IRC21:04
*** e-star has joined #cc21:07
*** jakin has quit IRC21:19
*** poningru has quit IRC21:19
cchelpbotNOTICE: SF.net SVN: cctools: [6112] license_xsl/trunk: Revision: 6112 http://cctools.svn.sourceforge.net/cctools/?rev=6112&view=rev Author: nyergler Date: 2007-07-03 14:18:05 -0700 (Tue, 03 Jul 2007) Log Message: ----------- Translation improvements: * Removed CC maintained copy of SimpleTal * Added explicit dependency on SimpleTal * Generate correct21:19
cchelpbotNOTICE: wrapper script for translate at buildout time. Modified Paths: -------------- license_xsl/trunk/setup.py Added Paths: ----------- license_xsl/trunk/licensexsl_tools/translate.py Removed Paths: ------------- license_xsl/trunk/i18n/simpletal/ license_xsl/trunk/i18n/translate.py This was sent by the SourceForge.net collaborative development platform,21:19
cchelpbotNOTICE: the world's largest Open Source development site.21:19
*** jakin has joined #cc21:20
*** poningru has joined #cc21:20
*** kristallpirat has quit IRC21:25
cchelpbotNOTICE: SF.net SVN: cctools: [6113] ccwordpress/trunk/www/legalcode: Revision: 6113 http://cctools.svn.sourceforge.net/cctools/?rev=6113&view=rev Author: mlinksva Date: 2007-07-03 15:04:04 -0700 (Tue, 03 Jul 2007) Log Message: ----------- pre-launch Added Paths: ----------- ccwordpress/trunk/www/legalcode/by-nc-nd_3.0_nl.html22:04
cchelpbotNOTICE: ccwordpress/trunk/www/legalcode/by-nc-sa_3.0_nl.html ccwordpress/trunk/www/legalcode/by-nc_3.0_nl.html ccwordpress/trunk/www/legalcode/by-nd_3.0_nl.html ccwordpress/trunk/www/legalcode/by-sa_3.0_nl.html ccwordpress/trunk/www/legalcode/by_3.0_nl.html This was sent by the SourceForge.net collaborative development platform, the world's largest Open22:04
cchelpbotNOTICE: Source development site.22:04
*** __shawn has joined #cc22:07
*** __shawn has quit IRC22:42
*** e-star has quit IRC23:12
*** e-star has joined #cc23:12
*** e-star has quit IRC23:12
*** e-star has joined #cc23:23
*** nathany has quit IRC23:35
*** e-star_ has joined #cc23:43
*** e-star has quit IRC23:44

Generated by irclog2html.py 2.3 by Marius Gedminas - find it at mg.pov.lt!