<?xml-stylesheet type="text/xsl" href="http://classic.elgg.org/developers/rss/rssstyles.xsl"?>
<rss version='2.0'   xmlns:dc='http://purl.org/dc/elements/1.1/'>
    <channel xml:base='http://classic.elgg.org/developers/'>
        <title><![CDATA[Developer discussion : Activité]]></title>
        <description><![CDATA[Activité pour Developer discussion, hébergé sur Elgg.org.]]></description>
        <generator>Elgg</generator>
        <link>http://classic.elgg.org/developers/</link>        
        <item>
            <title><![CDATA[How to add a new form to Elgg and how to process the submit action]]></title>
            <link>http://classic.elgg.org/developers/weblog/2580.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/2580.html</guid>
            <pubDate>Wed, 25 Jun 2008 14:49:23 GMT</pubDate>
		<dc:subject><![CDATA[plugin]]></dc:subject>
		<dc:subject><![CDATA[form]]></dc:subject>
            <description><![CDATA[<p>Hello,</p><p>&nbsp;I &#39;m trying to add a new form with 4 questions on the first connexion of the user to Elgg. I managed to add it using a plugin on the login page of my website but now i want to process it when the user click on submit. I think i must add something in the function init of my plugin to tell Elgg with wich file proceed the result. </p><p>Thank you for your help !</p><p>Sylvain </p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Not setting firstname, surname, and mail address when creating new users from ldap]]></title>
            <link>http://classic.elgg.org/developers/weblog/2298.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/2298.html</guid>
            <pubDate>Wed, 07 May 2008 13:57:30 GMT</pubDate>
		<dc:subject><![CDATA[ldap authentication auth.ini]]></dc:subject>
            <description><![CDATA[<p>In <a href="http://classic.elgg.org/trac/ticket/277">http://classic.elgg.org/trac/ticket/277</a> it was pointed out that the entries in auth/multiple/auth.ini for ldap_search_attr should be separate i.e.</p><p>ldap_search_attr[] = givenName<br />ldap_search_attr[] = sn<br />ldap_search_attr[] = mail</p><p>which after parse_ini_file does its work gives</p><p>&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;  [ldap_search_attr] =&gt; Array<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; (<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [0] =&gt; givenName<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [1] =&gt; sn<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; [2] =&gt; mail<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; )</p><p>The next problem is that as the comment at the top of auth/ldap/lib.php says it should be</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; $CFG-&gt;ldap_search_attr = array(&#39;firstname&#39; =&gt; &#39;givenname&#39;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;lastname&#39; =&gt; &#39;sn&#39;,<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &#39;mail&#39; =&gt; &#39;mail&#39;); </p><p>As the code later in the file uses</p><p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; $user-&gt;email = $user_info[&quot;mail&quot;];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; $user-&gt;name&nbsp; = $user_info[&quot;firstname&quot;];<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp; $user-&gt;name&nbsp; = $user-&gt;name . &quot; &quot; . $user_info[&quot;lastname&quot;];</p><p>Since I want multiple ldap sources I want auth.ini to work but how to change it 0, 1, and 2 do not say what the attributes represent if all ldap sources use the same sn, mail, and givenName then I could uncomment the line at the top of the lib.php.</p><p>Interestingly most comments on how to do ldap still refer to putting the parameters directly into the config.php file.</p><p>&nbsp;</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[error on message plugin]]></title>
            <link>http://classic.elgg.org/developers/weblog/1923.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1923.html</guid>
            <pubDate>Wed, 26 Mar 2008 11:27:23 GMT</pubDate>
            <description><![CDATA[<div id="result_box"  dir="ltr">Failed links View Message, Compose and Sent Message. The error message is as follows: &quot;The requested URL was not found on this server.&quot; <br /> Can someone help me?</div><div id="result_box"  dir="ltr">Thanks&nbsp;</div>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Display Library]]></title>
            <link>http://classic.elgg.org/developers/weblog/1859.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1859.html</guid>
            <pubDate>Fri, 07 Mar 2008 10:44:22 GMT</pubDate>
            <description><![CDATA[<p>Hello all!</p><p>I am new to elgg. I am actually developing something usefull with elgg. A&nbsp;social site. I would just like to ask for some help. Where can I find adminTable. The table is very limited and I am trying to find a way to format my data displays.&nbsp;I have been reading&nbsp;much of this site plus been inside elgg&nbsp;code for weeks now.&nbsp;The site is <a href="http://playground1.maxwellsmb.net/">http://playground1.maxwellsmb.net</a> if you have suggestions please let me know. I welcome every inch of advice from you guys. Thank you.</p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Adding items like {{title}}]]></title>
            <link>http://classic.elgg.org/developers/weblog/1761.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1761.html</guid>
            <pubDate>Sun, 10 Feb 2008 21:40:21 GMT</pubDate>
		<dc:subject><![CDATA[place holders]]></dc:subject>
		<dc:subject><![CDATA[subnav]]></dc:subject>
		<dc:subject><![CDATA[templates]]></dc:subject>
            <description><![CDATA[<p>How would I add my own replace holders?</p><p>I want to create a &#39;subnav&#39; item in a template.&nbsp; Thanks to a great link I found on your site; I&#39;ve been able to add my own template pages.&nbsp; But I now need a &#39;subnav&#39; item.&nbsp; I want to put a custom place holder in my template.&nbsp; Once the the place holder string is replaced, a variable will be passed and run a function which will figure out which subnav to show.</p><p>&nbsp;How can I do this? </p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Publish to blogs link from resources doesnt work]]></title>
            <link>http://classic.elgg.org/developers/weblog/1652.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1652.html</guid>
            <pubDate>Thu, 17 Jan 2008 04:52:49 GMT</pubDate>
		<dc:subject><![CDATA[publish]]></dc:subject>
		<dc:subject><![CDATA[publish to blog]]></dc:subject>
            <description><![CDATA[I can view the list and contents of my resources/feeds but when I like to published a feed to&nbsp; blog it doesnt appear to my blogs? Is there a bug in publish to blog files? Or is there any format for feed links to be posted?]]></description>
        </item>
                
        <item>
            <title><![CDATA[Edit fields in account setting user details]]></title>
            <link>http://classic.elgg.org/developers/weblog/1611.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1611.html</guid>
            <pubDate>Fri, 04 Jan 2008 07:37:07 GMT</pubDate>
            <description><![CDATA[Hello I&#39;m new with elgg, I&#39;m a web programmer. I just like to know what file will I edit if I like to add new fields in server/_userdetails/ link? This is under Account Settings link in the main page.Please I need an immediate response about this. or email me slap_chick@yahoo.com]]></description>
        </item>
                
        <item>
            <title><![CDATA[Size of the inner ElGG Frame ?]]></title>
            <link>http://classic.elgg.org/developers/weblog/1539.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1539.html</guid>
            <pubDate>Thu, 29 Nov 2007 16:07:45 GMT</pubDate>
		<dc:subject><![CDATA[picture]]></dc:subject>
		<dc:subject><![CDATA[size]]></dc:subject>
		<dc:subject><![CDATA[width]]></dc:subject>
            <description><![CDATA[<p>I am wondering what the size of an displayable object can be in width in ElGG in the inner window. Pictures are scaled down to a maximal width of 800 pixel, no matter which screen resolution is used. So i think the maximum in width is 800 pixel. Can anyone approve of that or am i wrong?</p><p>greetings, Xioph&nbsp; </p>]]></description>
        </item>
                
        <item>
            <title><![CDATA[Can I change "Friendship" terminology?]]></title>
            <link>http://classic.elgg.org/developers/weblog/1492.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1492.html</guid>
            <pubDate>Thu, 08 Nov 2007 17:39:04 GMT</pubDate>
            <description><![CDATA[I am looking at implmenting elgg for a client and was curious about the ability to change the &#39;friendship&#39; terminology that is used. This would be for a network of business professions who would probably think more in terms of &#39;connections, networks or colleagues&#39;.]]></description>
        </item>
                
        <item>
            <title><![CDATA[alias field in user table]]></title>
            <link>http://classic.elgg.org/developers/weblog/1488.html</link>
            <guid isPermaLink="true">http://classic.elgg.org/developers/weblog/1488.html</guid>
            <pubDate>Wed, 07 Nov 2007 12:11:41 GMT</pubDate>
		<dc:subject><![CDATA[alias]]></dc:subject>
		<dc:subject><![CDATA[user table]]></dc:subject>
		<dc:subject><![CDATA[elgg]]></dc:subject>
            <description><![CDATA[<p>Is <em><strong>alias</strong></em> field made as an alias for username?</p><p>Is this field already used in source code or is it just created in the table for evantual future use in the case you need it?&nbsp;</p>]]></description>
        </item>
        
        <item>
            <title><![CDATA[ldapauth-0_9.patch]]></title>
            <link>http://classic.elgg.org/developers/files/225/354/ldapauth.patch</link>
            <enclosure url="http://classic.elgg.org/developers/files/225/354/ldapauth.patch" length="15444" type="document/unknown" />
            <pubDate>Wed, 19 Mar 2008 19:35:57 GMT</pubDate>
		<dc:subject><![CDATA[0.9]]></dc:subject>
		<dc:subject><![CDATA[authentication]]></dc:subject>
		<dc:subject><![CDATA[patch]]></dc:subject>
		<dc:subject><![CDATA[ldap]]></dc:subject>
            <description><![CDATA[LDAPAuth patch mostly updated for 0.9 and above (tested on 0.9.1)]]></description>
        </item>
        <item>
            <title><![CDATA[ElggAuthPlugin.php]]></title>
            <link>http://classic.elgg.org/developers/files/232/215/ElggAuthPlugin.php</link>
            <enclosure url="http://classic.elgg.org/developers/files/232/215/ElggAuthPlugin.php" length="13876" type="text/plain" />
            <pubDate>Sun, 29 Jul 2007 19:27:33 GMT</pubDate>
		<dc:subject><![CDATA[authentication]]></dc:subject>
		<dc:subject><![CDATA[integration]]></dc:subject>
		<dc:subject><![CDATA[mediawiki]]></dc:subject>
            <description><![CDATA[Version of 29 July 2007]]></description>
        </item>
        <item>
            <title><![CDATA[Userlogin.php]]></title>
            <link>http://classic.elgg.org/developers/files/232/208/Userlogin.php</link>
            <enclosure url="http://classic.elgg.org/developers/files/232/208/Userlogin.php" length="1887" type="text/plain" />
            <pubDate>Mon, 23 Jul 2007 13:01:02 GMT</pubDate>
		<dc:subject><![CDATA[MediaWiki]]></dc:subject>
		<dc:subject><![CDATA[integration]]></dc:subject>
            <description><![CDATA[A sample modified MediaWiki Userlogin template, to direct users to login via Elgg, not directly in MediaWiki]]></description>
        </item>
        <item>
            <title><![CDATA[Postgres schema for generic_comments in Elgg 0.8]]></title>
            <link>http://classic.elgg.org/developers/files/230/199/postgres7.sql</link>
            <enclosure url="http://classic.elgg.org/developers/files/230/199/postgres7.sql" length="1062" type="document/unknown" />
            <pubDate>Mon, 09 Jul 2007 11:11:08 GMT</pubDate>
		<dc:subject><![CDATA[0.8]]></dc:subject>
		<dc:subject><![CDATA[elgg 0.8]]></dc:subject>
		<dc:subject><![CDATA[generic_comments]]></dc:subject>
            <description><![CDATA[]]></description>
        </item>
        <item>
            <title><![CDATA[ldapauth patch]]></title>
            <link>http://classic.elgg.org/developers/files/225/179/ldapauth.patch</link>
            <enclosure url="http://classic.elgg.org/developers/files/225/179/ldapauth.patch" length="16813" type="document/unknown" />
            <pubDate>Tue, 19 Jun 2007 23:11:30 GMT</pubDate>
            <description><![CDATA[Patch against subversion to make LDAP authentication work with a greater range of user names]]></description>
        </item>
        <item>
            <title><![CDATA[htaccess]]></title>
            <link>http://classic.elgg.org/developers/files/225/177/htaccess.new</link>
            <enclosure url="http://classic.elgg.org/developers/files/225/177/htaccess.new" length="7742" type="document/unknown" />
            <pubDate>Tue, 12 Jun 2007 05:25:26 GMT</pubDate>
            <description><![CDATA[Modified .htaccess file to allow for ._- in username]]></description>
        </item>
    </channel>
</rss>