|
View:
New views
5 Messages
—
Rating Filter:
Alert me
|
|
|
Re: reorder extension stopped working (rainer griess)Hi rainier,
Check your vendor/extensions/shards/app/views/admin/page directory. What extension do those files have? If they are .html.erb, instead of .rhtml, you'll have to check out an older version of shards (until the 0.6.5 release, which will have rails 2 included). Because 0.6.4 doesn't detect the .html.erb files as views, shards fails to load properly, which will on it's turn break any extensions depending on shards.. This is the svn:external i'm still succesfully using in 0.6.4; shards -r 674 http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards/ Regards, Benny _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: reorder extension stopped working (rainer griess)Whooohooo Benny,
you made it! I am now using the suggested version and everything rocks! A big thank you! rainer On 21.02.2008, at 13:25, Benny Degezelle wrote: > Hi rainier, > > Check your vendor/extensions/shards/app/views/admin/page directory. > What > extension do those files have? > If they are .html.erb, instead of .rhtml, you'll have to check out > an older > version of shards (until the 0.6.5 release, which will have rails 2 > included). > Because 0.6.4 doesn't detect the .html.erb files as views, shards > fails to > load properly, which will on it's turn break any extensions > depending on > shards.. > > This is the svn:external i'm still succesfully using in 0.6.4; > > shards -r 674 http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards/ > > Regards, > > Benny > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: reorder extension stopped working (rainer griess)Benny,
it would be nice to get another tip to my related question: How can I store my whole radiant trunk into my subversion repository, including the now running shards extension? If I only do a "svn commit" the externals get not saved into the repository. This might be useful. But in my case I want to save the complete and running version of my radiant directory. I am new to this ;-) rainer On 21.02.2008, at 13:25, Benny Degezelle wrote: > Hi rainier, > > Check your vendor/extensions/shards/app/views/admin/page directory. > What > extension do those files have? > If they are .html.erb, instead of .rhtml, you'll have to check out > an older > version of shards (until the 0.6.5 release, which will have rails 2 > included). > Because 0.6.4 doesn't detect the .html.erb files as views, shards > fails to > load properly, which will on it's turn break any extensions > depending on > shards.. > > This is the svn:external i'm still succesfully using in 0.6.4; > > shards -r 674 http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards/ > > Regards, > > Benny > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: reorder extension stopped working (rainer griess)Rainer,
Install piston: 'gem install piston'. Then go into the vendor directory and run 'piston convert'. This will allow you to modify a local copy of the extensions (and of Radiant), and store that copy in your own repository. Radiant uses this technique to track its bundled libraries: Rails, Radius, Redcloth, etc. Sean rainer griess wrote: > Benny, > > it would be nice to get another tip to my related question: > > How can I store my whole radiant trunk into my subversion repository, > including the now running shards extension? > > If I only do a "svn commit" the externals get not saved into the > repository. This might be useful. But in my case I want to save the > complete and running version of my radiant directory. > > I am new to this ;-) > > rainer > > On 21.02.2008, at 13:25, Benny Degezelle wrote: > > >> Hi rainier, >> >> Check your vendor/extensions/shards/app/views/admin/page directory. >> What >> extension do those files have? >> If they are .html.erb, instead of .rhtml, you'll have to check out >> an older >> version of shards (until the 0.6.5 release, which will have rails 2 >> included). >> Because 0.6.4 doesn't detect the .html.erb files as views, shards >> fails to >> load properly, which will on it's turn break any extensions >> depending on >> shards.. >> >> This is the svn:external i'm still succesfully using in 0.6.4; >> >> shards -r 674 http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards/ >> >> Regards, >> >> Benny >> _______________________________________________ >> Radiant mailing list >> Post: Radiant@... >> Search: http://radiantcms.org/mailing-list/search/ >> Site: http://lists.radiantcms.org/mailman/listinfo/radiant >> > > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > > _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: reorder extension stopped working (rainer griess)Hey Sean,
thank you very much! rainer On 21. Feb, 2008, at 6:46 PM, Sean Cribbs wrote: > Rainer, > > Install piston: 'gem install piston'. Then go into the vendor > directory > and run 'piston convert'. This will allow you to modify a local > copy of > the extensions (and of Radiant), and store that copy in your own > repository. > > Radiant uses this technique to track its bundled libraries: Rails, > Radius, Redcloth, etc. > > Sean > > rainer griess wrote: >> Benny, >> >> it would be nice to get another tip to my related question: >> >> How can I store my whole radiant trunk into my subversion repository, >> including the now running shards extension? >> >> If I only do a "svn commit" the externals get not saved into the >> repository. This might be useful. But in my case I want to save the >> complete and running version of my radiant directory. >> >> I am new to this ;-) >> >> rainer >> >> On 21.02.2008, at 13:25, Benny Degezelle wrote: >> >> >>> Hi rainier, >>> >>> Check your vendor/extensions/shards/app/views/admin/page directory. >>> What >>> extension do those files have? >>> If they are .html.erb, instead of .rhtml, you'll have to check out >>> an older >>> version of shards (until the 0.6.5 release, which will have rails 2 >>> included). >>> Because 0.6.4 doesn't detect the .html.erb files as views, shards >>> fails to >>> load properly, which will on it's turn break any extensions >>> depending on >>> shards.. >>> >>> This is the svn:external i'm still succesfully using in 0.6.4; >>> >>> shards -r 674 http://dev.radiantcms.org/svn/radiant/trunk/extensions/shards/ >>> >>> Regards, >>> >>> Benny >>> _______________________________________________ >>> Radiant mailing list >>> Post: Radiant@... >>> Search: http://radiantcms.org/mailing-list/search/ >>> Site: http://lists.radiantcms.org/mailman/listinfo/radiant >>> >> >> _______________________________________________ >> Radiant mailing list >> Post: Radiant@... >> Search: http://radiantcms.org/mailing-list/search/ >> Site: http://lists.radiantcms.org/mailman/listinfo/radiant >> >> > > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
| Free embeddable forum powered by Nabble | Forum Help |