mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-30 10:38:37 +00:00
- Fixes add_entry/update_entry methods for manipulating non-latin data.
(By making the whole request UTF-8.) PR: ports/97362 Submitted by: maintainer (Yi-Hsuan Hsin)
This commit is contained in:
parent
9f830715e5
commit
dbdb52f135
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=162613
@ -7,6 +7,7 @@
|
||||
|
||||
PORTNAME= Net-Google-Calendar
|
||||
DISTVERSION= 0.1_devel
|
||||
PORTREVISION= 1
|
||||
CATEGORIES= net perl5
|
||||
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
||||
MASTER_SITE_SUBDIR= Net
|
||||
|
11
net/p5-Net-Google-Calendar/files/patch-Calendar.pm
Normal file
11
net/p5-Net-Google-Calendar/files/patch-Calendar.pm
Normal file
@ -0,0 +1,11 @@
|
||||
--- lib/Net/Google/Calendar.pm.orig Wed Apr 26 22:23:27 2006
|
||||
+++ lib/Net/Google/Calendar.pm Wed May 17 06:52:56 2006
|
||||
@@ -176,7 +176,7 @@
|
||||
$url .= "gsessionid=".$self->{_session_id};
|
||||
}
|
||||
|
||||
- my %params = ( Content_Type => 'application/atom+xml',
|
||||
+ my %params = ( Content_Type => 'application/atom+xml; charset=UTF-8',
|
||||
Authorization => "GoogleLogin auth=".$self->{_auth},
|
||||
Content => $entry->as_xml );
|
||||
|
Loading…
Reference in New Issue
Block a user