[Building Sakai] Zirve University

hidayet tok hidayettok2000 at yahoo.com
Tue Nov 3 22:44:34 PST 2009


Hello colleagues,
We , Zirve University, are looking for native speakers for teaching English in ELT program if anyone concern,  please contact me.

Kind Regards

 Assist. Prof. Dr. Hidayet TOK
Prep. School Director
Zirve University / TURKEY
E-mail: hidayettok2000 at yahoo.com
hidayettok at zirve.edu.tr
Phone:(342) 2116666





________________________________
From: "sakai-dev-request at collab.sakaiproject.org" <sakai-dev-request at collab.sakaiproject.org>
To: sakai-dev at collab.sakaiproject.org
Sent: Tue, November 3, 2009 10:00:01 PM
Subject: sakai-dev Digest, Vol 9, Issue 3

Send sakai-dev mailing list submissions to
    sakai-dev at collab.sakaiproject.org

To subscribe or unsubscribe via the World Wide Web, visit
    http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
or, via email, send a message with subject or body 'help' to
    sakai-dev-request at collab.sakaiproject.org

You can reach the person managing the list at
    sakai-dev-owner at collab.sakaiproject.org

When replying, please edit your Subject line so it is more specific
than "Re: Contents of sakai-dev digest..."


Today's Topics:

   1. RSS feed Parser (Tan Dinh Nguyen)
   2. RSS Feed Parser (Nguyen, Tan D)
   3. Re: Course Management API (Sam Chow)
   4. Re: FCK Editor limit in samigo (Thach Le)
   5. sakai login issue (Absar Ahamed)
   6. problem with Scorm player (given.shirinda at sita.co.za)
   7. Re: sakai login issue (Sean Keesler)
   8. Installing Crucible? (Maurer, Christopher Wayne)
   9. sakai open new window (Tania Tritean)
  10. Re: RSS Feed Parser (Maurer, Christopher Wayne)
  11. Re: FCK Editor limit in samigo (Karen Tsao)


----------------------------------------------------------------------

Message: 1
Date: Mon, 2 Nov 2009 13:41:57 -0800 (PST)
From: Tan Dinh Nguyen <tnguyen at iupui.edu>
Subject: [Building Sakai] RSS feed Parser
To: sakai-dev at collab.sakaiproject.org
Message-ID: <26157853.post at talk.nabble.com>
Content-Type: text/plain; charset=us-ascii


Hello,

I would like to find out if anyone in our Sakai community using a specific
RSS feed parser for their Podcast tool or any other sakai tools that using
the RSS feed. It seemed that there are several parsers out there (Apache
Feed Parser, ROME, RssParser). Is there any advantage using one or the other
?

Any info or suggestions will be appreciated.

Thanks,
Tan Nguyen
Indiana University 
Course Management System
317.274.0727 
-- 
View this message in context: http://old.nabble.com/RSS-feed-Parser-tp26157853p26157853.html
Sent from the Sakai - Development mailing list archive at Nabble.com.



------------------------------

Message: 2
Date: Mon, 2 Nov 2009 16:46:54 -0500
From: "Nguyen, Tan D" <tnguyen at iupui.edu>
Subject: [Building Sakai] RSS Feed Parser
To: "sakai-dev at collab.sakaiproject.org"
    <sakai-dev at collab.sakaiproject.org>
Message-ID: <C714BD7E.14D6B%tnguyen at iupui.edu>
Content-Type: text/plain; charset="iso-8859-1"

Hello,

I would like to find out if anyone in our Sakai community using a specific
RSS feed parser for their Podcast tool or any other sakai tools that using
the RSS feed. It seemed that there are several parsers out there (Apache
Feed Parser, ROME, RssParser). Is there any advantage using one or the other
?

Any info or suggestions will be appreciated.

Thanks, 
-- 
Tan Nguyen
IUPUI - UITS
Course Management System
tnguyen at iupui.edu
317-274-0727



------------------------------

Message: 3
Date: Tue, 3 Nov 2009 09:15:11 +0800
From: "Sam Chow" <samchow at ln.edu.hk>
Subject: Re: [Building Sakai] Course Management API
To: "David Horwitz" <david.horwitz at uct.ac.za>
Cc: sakai-dev at collab.sakaiproject.org
Message-ID: <002401ca5c23$180d5c60$3464bccb at NAB2090045>
Content-Type: text/plain; format=flowed; charset="big5";
    reply-type=original

Dear David,

It works! Many Thanks!!!

Best Regards,

Sam Chow
RA at LingNanUniversity

----- Original Message ----- 
From: "David Horwitz" <david.horwitz at uct.ac.za>
To: "Sam Chow" <samchow at ln.edu.hk>
Cc: <sakai-dev at collab.sakaiproject.org>
Sent: Monday, November 02, 2009 5:46 PM
Subject: Re: [Building Sakai] Course Management API


> Hi Sam,
>
> That's one step, what you need to do now is tell maven that that module
> of your tool needs the coursemanagement api. So in the module for the
> part of your tool that uses the API open the pom and in the
> <dependencies> section add:
>
> <dependency>
> <groupId>org.sakaiproject</groupId>
> <artifactId>sakai-coursemanagement-api</artifactId>
> </dependency>
>
>
> regards
>
> David
>
>
> Sam Chow wrote:
>> Dear David,
>>
>> The POM.xml in the root of Sakai source folder, have already got this 
>> statement:
>>
>> <module>course-management</module>
>>
>> Is that what you mean?
>>
>> Many Thanks.
>>   ----- Original Message ----- 
>>   From: David Horwitz
>>   To: Sam Chow
>>   Cc: sakai-dev at collab.sakaiproject.org
>>   Sent: Monday, November 02, 2009 3:57 PM
>>   Subject: Re: [Building Sakai] Course Management API
>>
>>
>>   Hi Sam,
>>
>>   You will need to add the course management-api to you maven pom.xml so 
>> that maven can find it. What version of sakai are you using?
>>
>>   David
>>
>>   Sam Chow wrote:
>> Dear Sir,
>>
>> I have create a sakai project appliction by using the Sakai App Builder, 
>> and i try to retrieve the information of the Acacdemic term. I have 
>> import this 2 package:
>>
>> org.sakaiproject.coursemanagement.api.AcademicSession
>> org.sakaiproject.coursemanagement.api.CourseManagementServices;
>>
>> And use this to get the information:
>>
>> protected CourseManagementService cmService;
>> public void setCmService(CourseManagementService cmService){
>>     this.cmService = cmService;
>> }
>>
>> And try this in the funciton fillComponents:
>>
>> List<AcademicSession> existingAcademicSessions = 
>> cmService.getAcademicSessions();
>>
>>
>> But when i build the project, it have compilation error about the 
>> "package org.sakaiproject.coursemanagement.api does not exist".
>> Are they are configurmation i need to make to use the Coursemangment API?
>>
>> Many Thanks!
>>
>>
>>   ----------------------------------------------------------------------------
>> _______________________________________________
>> sakai-dev mailing list
>> sakai-dev at collab.sakaiproject.org
>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>>
>> TO UNSUBSCRIBE: send email to 
>> sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of 
>> "unsubscribe"
>>
> 




------------------------------

Message: 4
Date: Tue, 3 Nov 2009 19:12:24 +0700
From: Thach Le <thachln at gmail.com>
Subject: Re: [Building Sakai] FCK Editor limit in samigo
To: Steve Swinsburg <steve.swinsburg at gmail.com>
Cc: sakai-dev at collab.sakaiproject.org
Message-ID:
    <6ccadb850911030412g5338a31dteeb2e5a6150b7a8 at mail.gmail.com>
Content-Type: text/plain; charset=UTF-8

Dear,

I'm using MySQL. I deployed the sakai from the binary package.
What file must be edited for the suggestion "increase the length of
that column and the validateLength in JSF"?

Best regards,

Thach Le

On Fri, Oct 30, 2009 at 6:21 PM, Steve Swinsburg
<steve.swinsburg at gmail.com> wrote:
> Hi,
>
> It's not FCKeditor, its the length restriction of that column in the DB for
> Oracle, and hence in the JSF to restrict it for all. See below, and this
> Jira ticket:
> http://jira.sakaiproject.org/browse/SAK-16822
>
>
>>
>> This limit is from Oracle's 4000 character limitation on VARCHAR2 fields.
>>
>> If you are using Oracle, you have to change the column type and increase
>> the validateLength in JSF files. For MySQL, because there is no limit, you
>> can just increase the length of that column and the validateLength in JSF.
>>
>> By the way, the reason we use 4000 is to keep the behavior consistent.
>>
>
> So looks like you'll need to adjust the validateLength in the JSF.
>
>
> cheers,
> Steve
>
>
> On 30/10/2009, at 6:39 PM, Thach Le wrote:
>
>> Dear,
>>
>> I deployed the sakai 2.6.1 from the binary package. I use MySQL 5.1.
>> How can I configure the FCKEditor to avoid the limitation of 4000
>> characters?
>>
>> Thach Le
>> ---
>> Karen Tsao ktsao at stanford.edu
>> Tue Jul 7 09:21:02 PDT 2009
>>
>> ? * Previous message: [Building Sakai] FCK Editor limit in samigo
>> ? * Next message: [Building Sakai] FCK Editor limit in samigo
>> ? * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>>
>> Hi Greg,
>>
>> This limit is from Oracle's 4000 character limitation on VARCHAR2 fields.
>> I
>> believe UCT uses MySQL? For MySQL, there is no limit. You can try to
>> increase the length of that column and increase the validateLength in JSF
>> files as well. The reason we use 4000 in all database is just to keep the
>> behavior consistent.
>>
>> By the way, if you want to increase the length for Oracle, you have to
>> change the column type.
>>
>> Thanks,
>> Karen
>>
>> On Tue, Jul 7, 2009 at 8:55 AM, Gregory Doyle <Gregory.Doyle at
>> uct.ac.za>wrote:
>>
>>> Hi
>>> In trying to add a question I come across a 4000 character limit, yet in
>>> the FCK editor in other tools there is no such limit. Any idea why? Or am
>>> I
>>> just missing something?
>>>
>>> Thanks
>>> greg
>>>
>>>
>>> _______________________________________________
>>> sakai-dev mailing list
>>> sakai-dev at collab.sakaiproject.org
>>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>>>
>>> TO UNSUBSCRIBE: send email to
>>> sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of
>>> "unsubscribe"
>>>
>> -------------- next part --------------
>> An HTML attachment was scrubbed...
>> URL:
>> http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20090707/d0493675/attachment.html
>>
>> ? * Previous message: [Building Sakai] FCK Editor limit in samigo
>> ? * Next message: [Building Sakai] FCK Editor limit in samigo
>> ? * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
>>
>> More information about the sakai-dev mailing list
>> _______________________________________________
>> sakai-dev mailing list
>> sakai-dev at collab.sakaiproject.org
>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>>
>> TO UNSUBSCRIBE: send email to
>> sakai-dev-unsubscribe at collab.sakaiproject.org?with a subject of
>> "unsubscribe"
>
>


------------------------------

Message: 5
Date: Tue, 3 Nov 2009 19:06:34 +0530
From: Absar Ahamed <absar.ahamed at gmail.com>
Subject: [Building Sakai] sakai login issue
To: sakai-dev at collab.sakaiproject.org
Message-ID:
    <d5d6c44e0911030536k445e37bdx34e15ee3a92a6764 at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi,
     Iam using sakai 2.6.0rc1 in amazon windows server its working well, but
when i log in with username and password in the top login page its opening
the workspace page . when i go to the site in the same workspace its
prompting for username and password once again , afterwards its working
properly with no problem. But its not prompting for username and password
for site in my local windows system. Its happening only in amazon server.
Any body knows why its happening .I dont want login to be prompted in the
sites in the workspace

Thanks in Advance
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/05a086a6/attachment-0001.html 

------------------------------

Message: 6
Date: Tue, 3 Nov 2009 16:04:22 +0200 (SAST)
From: given.shirinda at sita.co.za
Subject: [Building Sakai] problem with Scorm player
To: mathieu at udel.edu
Cc: sakai-dev <sakai-dev at collab.sakaiproject.org>
Message-ID:
    <1186468678.194641257257062000.JavaMail.root at serams011.sita.co.za>
Content-Type: text/plain; charset="utf-8"

Hi there. 

I have linux Server running sakai 2.5 and I managed to integrate it with Scorm player. 

Now,I want to integrate scorm player on sakai 2.6 

The following version did not work. 

<version>M2</version> 


Which version to use for sakai 2.6 


Best Regards 

given 

-- 

E-learning Specialist 
SAKAI 
________________________________________________ 
Tel : 012 470 1526 
Cell : 0730133879 
@ : given.shirinda at sita.co.za 
Alt@ : given.shirinda at gmail.com 
________________________________________________ 
A person who moves too quickly may go wrong way. 
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/f2a2cc43/attachment-0001.html 

------------------------------

Message: 7
Date: Tue, 3 Nov 2009 09:51:51 -0500
From: Sean Keesler <sean.keesler at threecanoes.com>
Subject: Re: [Building Sakai] sakai login issue
To: Absar Ahamed <absar.ahamed at gmail.com>
Cc: sakai-dev at collab.sakaiproject.org
Message-ID:
    <8f65f0460911030651q116ff793h5d553eca692d49ad at mail.gmail.com>
Content-Type: text/plain; charset=ISO-8859-1

To clarify,

You go to your instance at http://someplace.amazonaws.com/portal and login.
You see your logged in users MyWorkspace, click on ANOTHER site (tab
on the top) and are prompted to login again?

What are the urls when you login and when you click on another site tab?

Sean Keesler
130 Academy Street
Manlius, New York 13104 USA
315-663-7756
sean.keesler at threecanoes.com



On Tue, Nov 3, 2009 at 8:36 AM, Absar Ahamed <absar.ahamed at gmail.com> wrote:
> Hi,
> ???? Iam using sakai 2.6.0rc1 in amazon windows server its working well, but
> when i log in with username and password in the top login page its opening
> the workspace page . when i go to the site in the same workspace its
> prompting for username and password once again , afterwards its working
> properly with no problem. But its not prompting for username and password
> for site in my local windows system. Its happening only in amazon server.
> Any body knows why its happening .I dont want login to be prompted in the
> sites in the workspace
>
> Thanks in Advance
>
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at collab.sakaiproject.org
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>
> TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at collab.sakaiproject.org
> with a subject of "unsubscribe"
>


------------------------------

Message: 8
Date: Tue, 3 Nov 2009 10:01:45 -0500
From: "Maurer, Christopher Wayne" <chmaurer at iupui.edu>
Subject: [Building Sakai] Installing Crucible?
To: sakai-dev List <sakai-dev at collab.sakaiproject.org>
Cc: Michael Korcuska <mkorcuska at sakaifoundation.org>
Message-ID: <C715B009.30314%chmaurer at iupui.edu>
Content-Type: text/plain; charset="us-ascii"

So, now that we have svn upgraded, what would it take to get Crucible
installed along side Jira and Confluence?
Licensing is still free for Open Source!
I think this would be a big win for development teams to have a central code
review tool!

Chris
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/25998bc9/attachment-0001.html 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 2141 bytes
Desc: not available
Url : http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/25998bc9/attachment-0001.bin 

------------------------------

Message: 9
Date: Tue, 3 Nov 2009 16:37:32 +0100
From: "Tania Tritean" <ttritean at loi.nl>
Subject: [Building Sakai] sakai open new window
To: <sakai-dev at collab.sakaiproject.org>
Message-ID:
    <14B6E9CD43A2FC4CAA32ADFB42D11D6407ACFA1F at loiex01.loi.local>
Content-Type: text/plain; charset="us-ascii"

Hi, 

I have 2 questions, if you can help me:



1.    From a sakai page, from inside of a iframe, when I click a link
I want to open a page with a given url in a new browser window, so not
inside sakai. How can I do this?(I'm using wicket)
2.    How can I modify the height of an iframe from sakai, after the
page was rendered.(eq. I have the frame with size x, and when I click a
button I want to make the frame bigger)





Thanks a lot

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/d78616df/attachment-0001.html 

------------------------------

Message: 10
Date: Tue, 3 Nov 2009 11:05:47 -0500
From: "Maurer, Christopher Wayne" <chmaurer at iupui.edu>
Subject: Re: [Building Sakai] RSS Feed Parser
To: "Nguyen, Tan D" <tnguyen at iupui.edu>,
    "sakai-dev at collab.sakaiproject.org"
    <sakai-dev at collab.sakaiproject.org>
Message-ID: <C715BF0B.30328%chmaurer at iupui.edu>
Content-Type: text/plain; charset="iso-8859-1"

Tan,
I see that the News tool does this:
Look at BasicNewsChannel.initChannel(String)
It is using HttpURLFeedFetcher() (I don?t know anything about it, just
looked for it!)

Chris


On 11/2/09 4:46 PM, "Nguyen, Tan D" <tnguyen at iupui.edu> wrote:

> Hello,
> 
> I would like to find out if anyone in our Sakai community using a specific
> RSS feed parser for their Podcast tool or any other sakai tools that using
> the RSS feed. It seemed that there are several parsers out there (Apache
> Feed Parser, ROME, RssParser). Is there any advantage using one or the other
> ?
> 
> Any info or suggestions will be appreciated.
> 
> Thanks,
> --
> Tan Nguyen
> IUPUI - UITS
> Course Management System
> tnguyen at iupui.edu
> 317-274-0727
> 
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at collab.sakaiproject.org
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
> 
> TO UNSUBSCRIBE: send email to sakai-dev-unsubscribe at collab.sakaiproject.org
> with a subject of "unsubscribe"
> 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/e86b9ba7/attachment-0001.html 
-------------- next part --------------
A non-text attachment was scrubbed...
Name: smime.p7s
Type: application/pkcs7-signature
Size: 2141 bytes
Desc: not available
Url : http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/e86b9ba7/attachment-0001.bin 

------------------------------

Message: 11
Date: Tue, 3 Nov 2009 10:32:56 -0800
From: Karen Tsao <ktsao at stanford.edu>
Subject: Re: [Building Sakai] FCK Editor limit in samigo
To: Thach Le <thachln at gmail.com>
Cc: sakai-dev at collab.sakaiproject.org
Message-ID:
    <beb882bb0911031032t3b99f843r4122ade3ad1bd4e3 at mail.gmail.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi Thach Le,

It is set in the JSF files which contain FCK editor. For example, in the
sam/samigo-app/src/webapp/jsf/author/trueFalse.jsp, you can find following
code:

<samigo:wysiwyg rows="140" value="#{itemauthor.currentItem.itemText}"
hasToggle="yes">
     <f:validateLength minimum="1" maximum="4000"/>
</samigo:wysiwyg>

You can increase the length by changing the "maximum" field to a bigger
number.

By they way, this is set for many JSF files. You need to take care of all
the places that you want to extend.

Thanks,
Karen

On Tue, Nov 3, 2009 at 4:12 AM, Thach Le <thachln at gmail.com> wrote:

> Dear,
>
> I'm using MySQL. I deployed the sakai from the binary package.
> What file must be edited for the suggestion "increase the length of
> that column and the validateLength in JSF"?
>
> Best regards,
>
> Thach Le
>
> On Fri, Oct 30, 2009 at 6:21 PM, Steve Swinsburg
> <steve.swinsburg at gmail.com> wrote:
> > Hi,
> >
> > It's not FCKeditor, its the length restriction of that column in the DB
> for
> > Oracle, and hence in the JSF to restrict it for all. See below, and this
> > Jira ticket:
> > http://jira.sakaiproject.org/browse/SAK-16822
> >
> >
> >>
> >> This limit is from Oracle's 4000 character limitation on VARCHAR2
> fields.
> >>
> >> If you are using Oracle, you have to change the column type and increase
> >> the validateLength in JSF files. For MySQL, because there is no limit,
> you
> >> can just increase the length of that column and the validateLength in
> JSF.
> >>
> >> By the way, the reason we use 4000 is to keep the behavior consistent.
> >>
> >
> > So looks like you'll need to adjust the validateLength in the JSF.
> >
> >
> > cheers,
> > Steve
> >
> >
> > On 30/10/2009, at 6:39 PM, Thach Le wrote:
> >
> >> Dear,
> >>
> >> I deployed the sakai 2.6.1 from the binary package. I use MySQL 5.1.
> >> How can I configure the FCKEditor to avoid the limitation of 4000
> >> characters?
> >>
> >> Thach Le
> >> ---
> >> Karen Tsao ktsao at stanford.edu
> >> Tue Jul 7 09:21:02 PDT 2009
> >>
> >>   * Previous message: [Building Sakai] FCK Editor limit in samigo
> >>   * Next message: [Building Sakai] FCK Editor limit in samigo
> >>   * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> >>
> >> Hi Greg,
> >>
> >> This limit is from Oracle's 4000 character limitation on VARCHAR2
> fields.
> >> I
> >> believe UCT uses MySQL? For MySQL, there is no limit. You can try to
> >> increase the length of that column and increase the validateLength in
> JSF
> >> files as well. The reason we use 4000 in all database is just to keep
> the
> >> behavior consistent.
> >>
> >> By the way, if you want to increase the length for Oracle, you have to
> >> change the column type.
> >>
> >> Thanks,
> >> Karen
> >>
> >> On Tue, Jul 7, 2009 at 8:55 AM, Gregory Doyle <Gregory.Doyle at
> >> uct.ac.za>wrote:
> >>
> >>> Hi
> >>> In trying to add a question I come across a 4000 character limit, yet
> in
> >>> the FCK editor in other tools there is no such limit. Any idea why? Or
> am
> >>> I
> >>> just missing something?
> >>>
> >>> Thanks
> >>> greg
> >>>
> >>>
> >>> _______________________________________________
> >>> sakai-dev mailing list
> >>> sakai-dev at collab.sakaiproject.org
> >>> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
> >>>
> >>> TO UNSUBSCRIBE: send email to
> >>> sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of
> >>> "unsubscribe"
> >>>
> >> -------------- next part --------------
> >> An HTML attachment was scrubbed...
> >> URL:
> >>
> http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20090707/d0493675/attachment.html
> >>
> >>   * Previous message: [Building Sakai] FCK Editor limit in samigo
> >>   * Next message: [Building Sakai] FCK Editor limit in samigo
> >>   * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
> >>
> >> More information about the sakai-dev mailing list
> >> _______________________________________________
> >> sakai-dev mailing list
> >> sakai-dev at collab.sakaiproject.org
> >> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
> >>
> >> TO UNSUBSCRIBE: send email to
> >> sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of
> >> "unsubscribe"
> >
> >
> _______________________________________________
> sakai-dev mailing list
> sakai-dev at collab.sakaiproject.org
> http://collab.sakaiproject.org/mailman/listinfo/sakai-dev
>
> TO UNSUBSCRIBE: send email to
> sakai-dev-unsubscribe at collab.sakaiproject.org with a subject of
> "unsubscribe"
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/9108e5ea/attachment-0001.html 

------------------------------

_______________________________________________
sakai-dev mailing list
sakai-dev at collab.sakaiproject.org
http://collab.sakaiproject.org/mailman/listinfo/sakai-dev


End of sakai-dev Digest, Vol 9, Issue 3
***************************************



      
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://collab.sakaiproject.org/pipermail/sakai-dev/attachments/20091103/0430fb57/attachment.html 


More information about the sakai-dev mailing list