[Arsperl-devel] ARSperl/html/manual ars_DeleteContainer.html, NONE, 1.1 ds_container_info.html, NON
Brought to you by:
jeffmurphy
From: Thilo S. <ts...@us...> - 2007-02-03 02:33:12
|
Update of /cvsroot/arsperl/ARSperl/html/manual In directory sc8-pr-cvs11.sourceforge.net:/tmp/cvs-serv14198/html/manual Modified Files: ars_SetLogging.html toc.html Added Files: ars_DeleteContainer.html ds_container_info.html Log Message: arsystem 7.0 port, new ars_Create/Set functions --- NEW FILE: ars_DeleteContainer.html --- <HTML> <HEAD> <TITLE>ARSperl Manual - ars_DeleteContainer</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <H2><CODE>ars_DeleteContainer(ctrl, name)</CODE></H2> Delete the given container (specified by name) on the server connected to in the given control structure. <FONT COLOR="#FF0000">Requires Administrator privs to use.</FONT> <P> <DL> <DT><B>On success</B><DD> Returns 1. <DT><B>On failure</B><DD> Returns 0. </DL> <P>Example: <PRE> ars_DeleteContainer($ctrl, "FilterGuide-FooBar") || die "$ars_errstr"; </PRE> <I>ars_DeleteContainer was introduced in version 1.86 of ARSperl</I> <P> <HR WIDTH="30%"> <P> <A HREF="toc.html"><IMG ALT="<--" SRC="arrow.gif" ALIGN=CENTER> Table of Contents </A> <p> <address> Last changes to this page 23rd November 2005 by ts...@us...<BR> </address> </BODY> </HTML> --- NEW FILE: ds_container_info.html --- <HTML> <HEAD> <TITLE>ARSperl Manual - Container Information</TITLE> </HEAD> <BODY BGCOLOR="#FFFFFF"> <H2>Container Info Structure</H2> A list of these HASH structures is returned by function <A href="ars_GetListContainer.html">ars_GetListContainer</a>. <PRE> { ...... "adminList" => <i>list</i> of group ids, "changeDiary" => <i>list</i> of references to <a href="ds_diaryentry_hash.html">Diary Entry Structures</a>, "getListFields" => <i>list</i> of references to <A href="ds_elfs.html">Entry List Field Structure</a>, "groupList" => <B>see below</B> "helpText" => string, "indexList" => <i>list</i> of references to <A href="ds_is.html">Index Structure</a> "lastChanged" => string, "owner" => string, "schema" => reference to <a href="ds_schematype.html">schemaType</a> hash, (<B>3.x and above</B>) "sortList" => <i>list</i>, "timestamp" => integer, "defaultVui" => string (5.x only) } </PRE> <DL> <DT><B>groupList</B><DD> When compiled against <B>3.x</B>, this will be a hash reference containing the groupId as the key to the hash and one of: <P> <blockquote> <CODE>none</CODE>, <CODE>hidden</CODE>, or <CODE>visible</CODE> </blockquote> as the value of the hash. <P> When compiled under <B>2.x</B> this will be an array reference. The array will contain a list of groupId's that can access this schema. </DL> <P> Example: <PRE> @filterGuides = ars_GetListContainer( $ctrl, 0, 124, 4 ); print $s->{"containerName"}; </PRE> <P> <HR WIDTH="30%"> <P> <A HREF="toc.html"><IMG ALT="<--" SRC="arrow.gif" ALIGN=CENTER> Table of Contents </A> <p> <address> Last changes to this page 23rd November 2005 by ts...@us... </address> </BODY> </HTML> Index: ars_SetLogging.html =================================================================== RCS file: /cvsroot/arsperl/ARSperl/html/manual/ars_SetLogging.html,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** ars_SetLogging.html 5 Sep 2005 21:14:47 -0000 1.1 --- ars_SetLogging.html 3 Feb 2007 02:33:11 -0000 1.2 *************** *** 19,23 **** Bit 1 = SQL logging (ARS::AR_DEBUG_SERVER_SQL)<br> Bit 2 = Filter logging (ARS::AR_DEBUG_SERVER_FILTER)<br> ! Bit 3 = API logging (ARS::AR_DEBUG_SERVER_API)<br> Bit 18 = Plugin logging (ARS::AR_DEBUG_SERVER_PLUGIN)<br> </UL> --- 19,23 ---- Bit 1 = SQL logging (ARS::AR_DEBUG_SERVER_SQL)<br> Bit 2 = Filter logging (ARS::AR_DEBUG_SERVER_FILTER)<br> ! Bit 5 = API logging (ARS::AR_DEBUG_SERVER_API)<br> Bit 18 = Plugin logging (ARS::AR_DEBUG_SERVER_PLUGIN)<br> </UL> Index: toc.html =================================================================== RCS file: /cvsroot/arsperl/ARSperl/html/manual/toc.html,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -d -r1.23 -r1.24 *** toc.html 19 Sep 2005 14:40:30 -0000 1.23 --- toc.html 3 Feb 2007 02:33:11 -0000 1.24 *************** *** 72,75 **** --- 72,76 ---- <LI><A HREF="ars_DeleteAdminExtension.html">ars_DeleteAdminExtension</A> <LI><A HREF="ars_DeleteCharMenu.html">ars_DeleteCharMenu</A> + <LI><A HREF="ars_DeleteContainer.html">ars_DeleteContainer</A> <LI><A HREF="ars_DeleteEntry.html">ars_DeleteEntry</A> <LI><A HREF="ars_DeleteEscalation.html">ars_DeleteEscalation</A> *************** *** 188,191 **** --- 189,194 ---- <LI><A HREF="ds_charmenu_file_hash.html">File Hash</A> </UL> + <LI><A HREF="ds_container.html"> Container Attributes Structure</A> + <LI><A HREF="ds_container_info.html"> Container Info Structure</A> <LI><A HREF="ds_diaryentry_hash.html"> Diary Entry Structure</A> <LI><A HREF="ds_ds.html"> Display Structure</A> |