From 33a257db4bd0ab4f2afc5849bd1f8eab8b114fc7 Mon Sep 17 00:00:00 2001 From: vargenau Date: Thu, 9 Dec 2010 13:49:21 +0000 Subject: [PATCH] No tab git-svn-id: svn://svn.code.sf.net/p/phpwiki/code/trunk@7756 96ab9672-09ca-45d6-a79d-3d69d39ca109 --- pgsrc/Help%2FGraphVizPlugin | 46 ++++++++++++++++----------------- pgsrc/Help%2FLdapSearchPlugin | 32 +++++++++++------------ pgsrc/Help%2FPagePermissions | 10 ++++---- pgsrc/Help%2FPloticusPlugin | 48 +++++++++++++++++------------------ pgsrc/Help%2FYouTubePlugin | 24 +++++++++--------- pgsrc/PhpWikiRecentChanges | 4 +-- 6 files changed, 82 insertions(+), 82 deletions(-) diff --git a/pgsrc/Help%2FGraphVizPlugin b/pgsrc/Help%2FGraphVizPlugin index 158734bf2..afd09f083 100644 --- a/pgsrc/Help%2FGraphVizPlugin +++ b/pgsrc/Help%2FGraphVizPlugin @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -44,17 +44,17 @@ specs. {{{ < 2 [ label = "a " ]; - 0 -> 1 [ label = "other " ]; - 1 -> 2 [ label = "a " ]; - 1 -> 1 [ label = "other " ]; - 2 -> 2 [ label = "a " ]; - 2 -> 1 [ label = "other " ]; - "Machine: a" [ shape = plaintext ]; + size ="8.5, 11"; + node [ shape = circle]; + 0 [ style = filled, color=lightgrey ]; + 2 [ shape = doublecircle ]; + 0 -> 2 [ label = "a " ]; + 0 -> 1 [ label = "other " ]; + 1 -> 2 [ label = "a " ]; + 1 -> 1 [ label = "other " ]; + 2 -> 2 [ label = "a " ]; + 2 -> 1 [ label = "other " ]; + "Machine: a" [ shape = plaintext ]; } >> }}} @@ -63,17 +63,17 @@ is rendered as < 2 [ label = "a " ]; - 0 -> 1 [ label = "other " ]; - 1 -> 2 [ label = "a " ]; - 1 -> 1 [ label = "other " ]; - 2 -> 2 [ label = "a " ]; - 2 -> 1 [ label = "other " ]; - "Machine: a" [ shape = plaintext ]; + size ="8.5, 11"; + node [shape = circle]; + 0 [ style = filled, color=lightgrey ]; + 2 [ shape = doublecircle ]; + 0 -> 2 [ label = "a " ]; + 0 -> 1 [ label = "other " ]; + 1 -> 2 [ label = "a " ]; + 1 -> 1 [ label = "other " ]; + 2 -> 2 [ label = "a " ]; + 2 -> 1 [ label = "other " ]; + "Machine: a" [ shape = plaintext ]; } >> diff --git a/pgsrc/Help%2FLdapSearchPlugin b/pgsrc/Help%2FLdapSearchPlugin index 27f23a276..097cb1ee4 100644 --- a/pgsrc/Help%2FLdapSearchPlugin +++ b/pgsrc/Help%2FLdapSearchPlugin @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -17,9 +17,9 @@ The **~LdapSearch** [[Help:WikiPlugin|plugin]] displays a LDAP query as table. host="localhost" port=389 basedn="" - filter="(cn=*)" + filter="(cn=*)" attributes="" - >> +>> <> <> @@ -32,29 +32,29 @@ The **~LdapSearch** [[Help:WikiPlugin|plugin]] displays a LDAP query as table. == Arguments == host _(default: from LDAP_AUTH_HOST or localhost)_: - hostname or ip or ldap:// uri to connect to. + hostname or ip or ldap:// uri to connect to. port _(default: from LDAP_AUTH_HOST or 389)_: - portnumber to connect to. + portnumber to connect to. basedn _(default: LDAP_BASE_DN)_: - connect string: "ou=Users,o=Development,dc=mycompany.com" + connect string: "ou=Users,o=Development,dc=mycompany.com" filter _(default: "(cn=*)")_: - Optional ldap_search() filter argument + Optional ldap_search() filter argument attributes _(default: empty)_ : - space seperated fields to return as table columns: "cn sn" + space seperated fields to return as table columns: "cn sn" options: - ldap_set_option(). Default: LDAP_SET_OPTION if host == LDAP_AUTH_HOST - Column seperated name=value pairs. Esp. needed for Windows Active directory: - "LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0" + ldap_set_option(). Default: LDAP_SET_OPTION if host == LDAP_AUTH_HOST + Column seperated name=value pairs. Esp. needed for Windows Active directory: + "LDAP_OPT_PROTOCOL_VERSION=3:LDAP_OPT_REFERRALS=0" user: - Default: LDAP_AUTH_USER if host == LDAP_AUTH_HOST + Default: LDAP_AUTH_USER if host == LDAP_AUTH_HOST password: - Default: LDAP_AUTH_PASSWORD if host == LDAP_AUTH_HOST - user and password are required for Windows Active directory. + Default: LDAP_AUTH_PASSWORD if host == LDAP_AUTH_HOST + user and password are required for Windows Active directory. == Examples == @@ -62,9 +62,9 @@ password: editbox[] name=host value=bugs.debian.org size=80 editbox[] name=port value=10101 size=80 editbox[] name=basedn value="dc=current,dc=bugs,dc=debian,dc=org" size=80 - editbox[] name=filter value="(debbugsPackage=phpwiki)" size=80 + editbox[] name=filter value="(debbugsPackage=phpwiki)" size=80 editbox[] name=attributes value="debbugsSeverity debbugsState debbugsTitle" size=80 - submit[] reset[] + submit[] reset[] >> == Author == diff --git a/pgsrc/Help%2FPagePermissions b/pgsrc/Help%2FPagePermissions index 0ff6ece2f..04be49919 100644 --- a/pgsrc/Help%2FPagePermissions +++ b/pgsrc/Help%2FPagePermissions @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -132,17 +132,17 @@ Those perms are mapped to those actions. [[Help:ActionPage|Action Pages]] (plugi // view: if (!ALLOW_ANON_USER) { if (!ALLOW_USER_PASSWORDS) - $perm['view'] = array(ACL_SIGNED => true); + $perm['view'] = array(ACL_SIGNED => true); else - $perm['view'] = array(ACL_AUTHENTICATED => true); + $perm['view'] = array(ACL_AUTHENTICATED => true); $perm['view'][ACL_BOGOUSER] = ALLOW_BOGO_LOGIN ? true : false; } // edit: if (!ALLOW_ANON_EDIT) { if (!ALLOW_USER_PASSWORDS) - $perm['edit'] = array(ACL_SIGNED => true); + $perm['edit'] = array(ACL_SIGNED => true); else - $perm['edit'] = array(ACL_AUTHENTICATED => true); + $perm['edit'] = array(ACL_AUTHENTICATED => true); $perm['edit'][ACL_BOGOUSER] = ALLOW_BOGO_LOGIN ? true : false; $perm['create'] = $perm['edit']; } diff --git a/pgsrc/Help%2FPloticusPlugin b/pgsrc/Help%2FPloticusPlugin index 41c68683a..b6fdaa82f 100644 --- a/pgsrc/Help%2FPloticusPlugin +++ b/pgsrc/Help%2FPloticusPlugin @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -27,9 +27,9 @@ or without any script: (not tested) {{{ <> }}} @@ -82,16 +82,16 @@ See also [WikiPluginCached|Help:WikiPluginCached] options in config.ini. // specify data using {proc getdata} #proc getdata -data: Brazil 22 - Columbia 17 - "Costa Rica" 22 - Guatemala 3 - Honduras 12 - Mexico 14 - Nicaragua 28 - Belize 9 - United\nStates 21 - Canada 8 +data: Brazil 22 + Columbia 17 + "Costa Rica" 22 + Guatemala 3 + Honduras 12 + Mexico 14 + Nicaragua 28 + Belize 9 + United\nStates 21 + Canada 8 // render the pie graph using {proc pie} #proc pie @@ -118,16 +118,16 @@ testsuite: // specify data using {proc getdata} #proc getdata -data: Brazil 22 - Columbia 17 - "Costa Rica" 22 - Guatemala 3 - Honduras 12 - Mexico 14 - Nicaragua 28 - Belize 9 - United\nStates 21 - Canada 8 +data: Brazil 22 + Columbia 17 + "Costa Rica" 22 + Guatemala 3 + Honduras 12 + Mexico 14 + Nicaragua 28 + Belize 9 + United\nStates 21 + Canada 8 // render the pie graph using {proc pie} #proc pie diff --git a/pgsrc/Help%2FYouTubePlugin b/pgsrc/Help%2FYouTubePlugin index 5f33375f3..b9f791c3b 100644 --- a/pgsrc/Help%2FYouTubePlugin +++ b/pgsrc/Help%2FYouTubePlugin @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -11,19 +11,19 @@ Content-Transfer-Encoding: binary == Usage == {{{ <> }}} diff --git a/pgsrc/PhpWikiRecentChanges b/pgsrc/PhpWikiRecentChanges index 212362bc3..e2248d21b 100644 --- a/pgsrc/PhpWikiRecentChanges +++ b/pgsrc/PhpWikiRecentChanges @@ -1,4 +1,4 @@ -Date: Fri, 10 Sep 2010 13:46:13 +0000 +Date: Thu, 9 Dec 2010 14:49:00 +0000 Mime-Version: 1.0 (Produced by PhpWiki 1.4.0RC1) X-Rcs-Id: $Id$ Content-Type: application/x-phpwiki; @@ -9,7 +9,7 @@ Content-Type: application/x-phpwiki; Content-Transfer-Encoding: binary <> + url=http://phpwiki.sourceforge.net/phpwiki/RecentChanges?format=rss>> ---- [[PhpWikiDocumentation]] -- 2.45.0