From owner-freebsd-questions@FreeBSD.ORG Sat May 24 22:43:08 2008 Return-Path: Delivered-To: freebsd-questions@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0AE921065680 for ; Sat, 24 May 2008 22:43:08 +0000 (UTC) (envelope-from thoellri@adobe.com) Received: from exprod6og104.obsmtp.com (exprod6og104.obsmtp.com [64.18.1.187]) by mx1.freebsd.org (Postfix) with ESMTP id 5C8138FC17 for ; Sat, 24 May 2008 22:43:07 +0000 (UTC) (envelope-from thoellri@adobe.com) Received: from source ([192.150.8.22]) by exprod6ob104.postini.com ([64.18.5.12]) with SMTP; Sat, 24 May 2008 15:43:05 PDT Received: from inner-relay-3.eur.adobe.com (inner-relay-3b [10.128.4.236]) by outbound-smtp-2.corp.adobe.com (8.12.10/8.12.10) with ESMTP id m4OMh3JV016154; Sat, 24 May 2008 15:43:04 -0700 (PDT) Received: from fe2.corp.adobe.com (fe2.corp.adobe.com [10.8.192.72]) by inner-relay-3.eur.adobe.com (8.12.10/8.12.9) with ESMTP id m4OMh2qJ025132; Sat, 24 May 2008 15:43:03 -0700 (PDT) Received: from namail2.corp.adobe.com ([10.8.192.64]) by fe2.corp.adobe.com with Microsoft SMTPSVC(6.0.3790.1830); Sat, 24 May 2008 15:43:01 -0700 X-MimeOLE: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Sat, 24 May 2008 15:42:59 -0700 Message-ID: In-Reply-To: <26face530805241258y199474edkcef7f79f8569b216@mail.gmail.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: Unix command-line tools to edit SharePoint site? Thread-Index: Aci93De+JAxT8U2eQ3O5mUEwZlzUqgAEw2bw References: <26face530805241258y199474edkcef7f79f8569b216@mail.gmail.com> From: "Tobias Hoellrich" To: "Kelly Jones" X-OriginalArrivalTime: 24 May 2008 22:43:01.0896 (UTC) FILETIME=[85C1C080:01C8BDEF] Cc: freebsd-questions@freebsd.org Subject: RE: Unix command-line tools to edit SharePoint site? X-BeenThere: freebsd-questions@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: User questions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 24 May 2008 22:43:08 -0000 > -----Original Message----- > From: owner-freebsd-questions@freebsd.org=20 > [mailto:owner-freebsd-questions@freebsd.org] On Behalf Of Kelly Jones > Sent: Saturday, May 24, 2008 1:58 PM > To: freebsd-questions@freebsd.org > Subject: Unix command-line tools to edit SharePoint site? >=20 > I begrudgingly use a Windows SharePoint server at a=20 > customer's request. >=20 > I'd like to automate (command-line) updating and creating documents, > lists, etc. >=20 > Is there a Unix tool that does this? >=20 > I know SharePoint has an "API", which basically spoofs the GET/POST > calls that your browser would make(?). >=20 > Has anyone written a Unix command-line tool (or Perl module, etc) that > abstracts this? Kelly - HTTP::WebDav is your friend. It allows you to access your SharePoint site from perl. You can retrieve data and store data. Also take a look at hits perl-snippet: http://www.perlmonks.org/index.pl?node_id=3D612797 Hope this helps Tobias