Updated copyright date in files where git blame shows 2023 mods
authorArt Cancro <ajc@citadel.org>
Thu, 21 Dec 2023 21:27:31 +0000 (16:27 -0500)
committerArt Cancro <ajc@citadel.org>
Thu, 21 Dec 2023 21:27:31 +0000 (16:27 -0500)
webcit-ng/server/caldav_reports.c
webcit-ng/server/forum_view.c
webcit-ng/server/messages.c
webcit-ng/server/user_functions.c
webcit-ng/server/util.c

index ff60dfedcb8fca8c50b48deeb5a426f5651b1493..dbaa9c5971ed2430fc9340ed57ae693b11ecac6e 100644 (file)
@@ -1,7 +1,7 @@
 // This file contains functions which handle all of the CalDAV "REPORT" queries
 // specified in RFC4791 section 7.
 //
-// Copyright (c) 2022 by the citadel.org team
+// Copyright (c) 2023 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
 // disclosure are subject to the GNU General Public License v3.
index 09ee7800f047ba7d1d74528c72ee98fb0fca92ef..13d9ad00c3744dfe42211a592bbb8af01b37946c 100644 (file)
@@ -1,7 +1,7 @@
 // The code in here feeds messages out as JSON to the client browser.  It is currently being used
 // for the forum view, but as we implement other views we'll probably reuse a lot of what's here.
 //
-// Copyright (c) 1996-2022 by the citadel.org team
+// Copyright (c) 1996-2023 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
 // disclosure are subject to the GNU General Public License v3.
index b0c265ccdfd7a3749de12de42324b332f298726b..6cb103612d2d6eb4670ebbd85d405d221436c315 100644 (file)
@@ -1,6 +1,6 @@
 // Message base functions
 //
-// Copyright (c) 1996-2022 by the citadel.org team
+// Copyright (c) 1996-2023 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
 // disclosure are subject to the GNU General Public License v3.
@@ -277,8 +277,6 @@ void dav_put_message(struct http_transaction *h, struct ctdlsession *c, char *eu
 
                        // After calling pop_upload(), the attachment is no longer in the global list.
                        // The file descriptor has zero links, so when we close it, the filesystem will remove it from disk.
-
-                       syslog(LOG_DEBUG, "💥 attachment: %s , len=%ld", one_att.filename, one_att.length);
                        ctdl_printf(c, "--%s\r", mime_boundary);
                        ctdl_printf(c, "Content-Type: %s; name=\"%s\"\r", one_att.content_type, one_att.filename);
                        ctdl_printf(c, "Content-Disposition: attachment; filename=\"%s\"\r", one_att.filename);
index de4233dfbf774c9f7931efa83209abbaac2ce97d..45cd3118d2d5a08f0c04355d294077de5023f48b 100644 (file)
@@ -1,6 +1,6 @@
 // User functions
 //
-// Copyright (c) 1996-2022 by the citadel.org team
+// Copyright (c) 1996-2023 by the citadel.org team
 //
 // This program is open source software.  Use, duplication, or
 // disclosure are subject to the GNU General Public License v3.
index dc51ab3ba9513461df8ce27dacac6a9148990823..ff256e520e844496dad67a0834976c12e75ba5aa 100644 (file)
@@ -1,5 +1,5 @@
 // Utility functions
-// Copyright (c) 1996-2022 by the citadel.org team
+// Copyright (c) 1996-2023 by the citadel.org team
 // This program is open source software.  Use, duplication, or disclosure are subject to the GNU General Public License v3.
 
 #include "webcit.h"