Part of the EllisLab Network
   
1 of 3
1
rapyd library 0.9.7 released
Posted: 25 May 2007 08:16 AM   [ Ignore ]  
Lab Assistant
Avatar
RankRank
Total Posts:  156
Joined  05-19-2006

Ok..  I’m ready

http://www.rapyd.com/index.php/main/download


  *  Simplification, distribution changed, rapyd will be packed only in the version “ci + rapyd”, but it will preserve independence. You can trash the CI /system folder and use your own (official or customized).
  * Added support for php.ini config.: “short_open_tag = Off”, all views rebuilt with standard php tags (thnks reynierpm)
  * Added rapyd_auth, a simple but complete authorization class, roles and permissions, based on rapyd_session. Added also an auth helper.
  * Updated dataset, better support for aggregation functions, now Distinct Group By.. atc don’t crash dataset pagination
  * Added rapyd language: spanish (by reynierpm), dutch (by Joris) and many CI language files (taken from the wiki), built some samples
  * Updated rapyd_lang, now support browser-detection language. Added also a language helper.
  * Added two new fields: captcha and radiogroup.
  * Updated MY_Pagination.php (extension of CI pagination) to enhance the support for URI suffix. Todo: fix the calendar..
  * Added MY_Validation.php (extension of CI validation) to support the new field captcha and a new rule “unique” (callback, check if the field is unique in the table where will be stored):

//
      
$edit->email = new inputField("Email", "email");
      
$edit->email->rule = "required|valid_email|unique";


  * Updated free/container field, now supports dataobject relations: <#rel_identifier[fieldname]#>) usage:

//
              
$do = new DataObject("articles");
              
$do->rel_one_to_one("author", "authors", "author_id");
              ...
              
$edit = new DataEdit("manage articles", $do);
              ...
              if (
$edit->_status == 'show'){
                $edit
->owner = new containerField("owner",  
                  
"<#author[name]#> <#author[lastname]#>");
              
}


     
  * Added “in” params in all fields, so you can merge the output of two or more field simply:

//
            
$edit->email = new inputField("Email", "email");   
            
$edit->email->rule = "required|valid_email";    
          
            
$edit->isactive = new radiogroupField("active", "active",
               array(
"y"=>"active","n"=>"unverified"));
            
$edit->isactive->in = "email";
            
            
//will output a radio group (isactive) inside "email" field row


     
  * Added DataEdit property back_cancel, alias for both back_cancel_delete and back_cancel_save (flow redirection)
  * new release based on CI 1.5.3 (compatible with 1.5.*)

thnks all for contrib. and donat.

 Signature 

rapyd framework / demo

Profile
 
 
Posted: 25 May 2007 12:55 PM   [ Ignore ]   [ # 1 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  492
Joined  02-21-2007

This seems great F!!!
Thanks for this update.

Just a question about MY_some_class: what if I already use one?
Is there a workaround?

Profile
 
 
Posted: 26 May 2007 02:12 AM   [ Ignore ]   [ # 2 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  512
Joined  12-05-2006

Great job Felice!

I’ll test it out!

Dan

PS: in the samples, after installation I noticed that in the auth form there is a captcha field, but the CAPTCHA does not get displayed-> namely it is impossible to log in into the AUTH demo with “test” - “test”

Image Attachments
rapyd_auth_sample.jpg
 Signature 

FreakAuth_light: pluggable & extendable authentication library that works on CI 1.5.X

CI SWIFT MAILER: 44% less memory than PHPMailer at double speed

Using Zend Framework components in Code Igniter

Profile
 
 
Posted: 26 May 2007 07:29 AM   [ Ignore ]   [ # 3 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  330
Joined  05-29-2006

Also in my installation i don’t see the captcha image…........... :-(

 Signature 

CI Js_calendar plugin click

WYSIWYG with CI

Profile
 
 
Posted: 26 May 2007 01:19 PM   [ Ignore ]   [ # 4 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  156
Joined  05-19-2006

Path problem (captcha) fixed, please download again (26/05 release)

@grahack sorry, no workaround, but there are only 2 extended classes, and MY_Valdation is really easy to be merged (only few line of code)

 Signature 

rapyd framework / demo

Profile
 
 
Posted: 26 May 2007 03:19 PM   [ Ignore ]   [ # 5 ]  
Research Assistant
Avatar
RankRankRank
Total Posts:  492
Joined  02-21-2007

Thanks boss!

Profile
 
 
Posted: 26 May 2007 05:02 PM   [ Ignore ]   [ # 6 ]  
Grad Student
Rank
Total Posts:  51
Joined  09-12-2006

Hi, Felice

I’am happy to see you back, It seems that have been very busy this last month with your cms, and I think that all this news enhancements are the concequences of your work on the cms.
I will look at the new version and send you a message about my last request..
Thanks

Profile
 
 
Posted: 28 May 2007 08:09 AM   [ Ignore ]   [ # 7 ]  
Summer Student
Avatar
Total Posts:  27
Joined  05-01-2006

Hi Felice:
Thanks for this new release. I’ll try in this few days and if exists any feedback I send you.
Cheers

 Signature 

ReynierPM
Informatic Sciences Ing.

Profile
 
 
Posted: 28 May 2007 08:22 AM   [ Ignore ]   [ # 8 ]  
Lab Assistant
Avatar
RankRank
Total Posts:  156
Joined  05-19-2006

Hey Thierry!
Ok, I’m ready to enhance rapyd uri please send me again your last requests (i’m sure I’ve missed something).
Yes,  rapyd_auth and rapyd_lang comes from the cms.

@reyner thnks, don’t forget to visit rapyd forum, there are some questions about fixs & a really cool new class posted by heretique (enable using models with rapyd dataforms).

 Signature 

rapyd framework / demo

Profile
 
 
Posted: 31 May 2007 02:23 PM   [ Ignore ]   [ # 9 ]  
Summer Student
Total Posts:  22
Joined  10-10-2006

Felice >>>> all,

great job.

 Signature 

digital design

Profile
 
 
Posted: 30 July 2007 01:52 PM   [ Ignore ]   [ # 10 ]  
Grad Student
Rank
Total Posts:  82
Joined  10-26-2006

Hello Felice,

  First of all, thanks for rapyd, I’m using it right now, I have just a few questions.

  1. I have some tables with relationships at my db. So, When I have a 1:n relation its easy to set-up the dataedit and use, but when I have a n:n relation I can’t find a way to store the data on to tables just using rapyd.

  2. There is a table here that rapyd refuse to display the contents, in this table I have a ‘pfk’ and in dataedit I use a dropdown to display the options. There is a way to include a ‘if’ in the dataedit fields, so it only appears when it’s in modify or in create?

  3. I’m trying to use the login system but I just can login after the third/fourth try and the logout doesn’t work too. For this case I’ve just copy ‘n paste from you example controller.

  4. I want to build a webstantards theme, is there a tutorial on how to build my own theme for rapyd?

  Thanks a lot again,

RA

Profile
 
 
   
1 of 3
1
 
‹‹ .htaccess examples      SPAW editor library ››
Post Marker Legend
New Topic New posts Hot Topic Hot Topic with new posts New Poll New Poll Moved Topic Moved Topic Sticky Topic Sticky topic
Old Topic No new posts Hot Old Topic Hot Topic with no new posts Old Poll Old Poll Closed Topic Closed Topic Announcement Announcements
Theme
Change Theme
Visitor Statistics
The most visitors ever was 719, on June 06, 2008 10:16 AM
Total Registered Members: 64453 Total Logged-in Users: 17
Total Topics: 80961 Total Anonymous Users: 0
Total Replies: 435692 Total Guests: 202
Total Posts: 516653    
Members ( View Memberlist )