|
View:
New views
8 Messages
—
Rating Filter:
Alert me
|
|
|
Extension page_attachments no reaction after clickHello,
I´m using a fresh radiant copy 0.8.1 and the latest version of page_attachments. Installation of radiant and the plugin works like a charm. I'm using this steps for installation git clone git://github.com/radiant/radiant-page-attachments-extension.git vendor/extensions/page_attachments rake radiant:extensions:page_attachments:migrate rake radiant:extensions:page_attachments:update But here´s my problem. I would like to upload a attachment to a page. In admin/page/edit I see the green + button. But clicking the button has no result. I didn´nt see the upload form or an other button? The Database Table and Javascript file (page_attachments) are present?? What did I wrong? Who can help? Best regards Boris _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: Extension page_attachments no reaction after clickthe master branch of page_attachments does not work with 0.8.x anymore
you'll need to checkout the 0.8.1 branch. git clone git://github.com/... vendor/extensions/page_attachments # checkout the 0.8.1 branch cd vendor/extension/page_attachments git checkout origin/radiant-0.8.1 cd ../../.. rake radiant:extensions:page_attachments:migrate rake radiant:extensions:page_attachments:update On Thu, Oct 29, 2009 at 1:18 PM, Boris Raeschler <boris.raeschler@...> wrote: > Hello, > > I´m using a fresh radiant copy 0.8.1 and the latest version of > page_attachments. Installation of radiant and the plugin works like a charm. > > I'm using this steps for installation > > git clone git://github.com/radiant/radiant-page-attachments-extension.git > vendor/extensions/page_attachments > rake radiant:extensions:page_attachments:migrate > rake radiant:extensions:page_attachments:update > > > But here´s my problem. I would like to upload a attachment to a page. In > admin/page/edit I see the green + button. But clicking the button has no > result. I didn´nt see the upload form or an other button? > > The Database Table and Javascript file (page_attachments) are present?? > > What did I wrong? Who can help? > > > Best regards > > Boris > _______________________________________________ > 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: Extension page_attachments no reaction after clickJohn, thank you for pointing out the solution. I would like to correct
some little typos (there is no radiant-0.8.1 branch and vendor/extension directory) So to make page_attachments extension work with radiant 0.8.1 and avoid "Event.addBehavior is not a function" error you need to: cd /path/to/radiant| |git clone git://github.com/radiant/radiant-page-attachments-extension.git vendor/extensions/page_attachments cd vendor/extensions/page_attachments git checkout origin/radiant-0.8.0 cd ../../.. rake radiant:extensions:page_attachments:migrate| rake radiant:extensions:page_attachments:update| _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
date with conditional_tagsThere are probably a lot of ways to do this. I am creating a blog
with archives and I wanted it to say "TODAY" on the top if the article was written today. I tried using the conditional_tags extension to evaluate the pub date and compare it to today's date like this: <r:if condition="<r:date for='now' format='%Y%j' /> is <r:date format='%Y%j' />">Today</r:if> That only resulted in this: 'if' tag error: Error in condition " is " (could not parse condition) I guess you can't use radius tags like this or it's just not set up right. Does anyone know a better way to do this or how to use this extension properly? Steven _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
tagsCan tags only be one word? Is there a special character to connect
words to make phases? Steven _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: date with conditional_tagsHi!
It is impossible to include radius tags into existing radius tags. They will not be parsed. On 11/19/09, Steven Southard <steven@...> wrote: > There are probably a lot of ways to do this. I am creating a blog > with archives and I wanted it to say "TODAY" on the top if the article > was written today. I tried using the conditional_tags extension to > evaluate the pub date and compare it to today's date like this: > > > <r:if condition="<r:date for='now' format='%Y%j' /> is <r:date > format='%Y%j' />">Today</r:if> > > That only resulted in this: > > 'if' tag error: Error in condition " is " (could not parse condition) > > I guess you can't use radius tags like this or it's just not set up > right. Does anyone know a better way to do this or how to use this > extension properly? > > Steven > > > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > -- ________________ Regards, Mamed Mamedov _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: tagsTags in radiant is a generic radius tags. And all properties of radius
tags is inherited here. But, I don't know if there any possibility to use more than one work in tag name :) On 11/20/09, Steven Southard <steven@...> wrote: > Can tags only be one word? Is there a special character to connect > words to make phases? > > > Steven > _______________________________________________ > Radiant mailing list > Post: Radiant@... > Search: http://radiantcms.org/mailing-list/search/ > Site: http://lists.radiantcms.org/mailman/listinfo/radiant > -- ________________ Regards, Mamed Mamedov _______________________________________________ Radiant mailing list Post: Radiant@... Search: http://radiantcms.org/mailing-list/search/ Site: http://lists.radiantcms.org/mailman/listinfo/radiant |
|
|
Re: date with conditional_tagsLuckily variables do work. thanks
On Nov 30, 2009, at 1:20 PM, Mamed Mamedov wrote: > Hi! > > It is impossible to include radius tags into existing radius tags. > They will not be parsed. > > On 11/19/09, Steven Southard <steven@...> wrote: >> There are probably a lot of ways to do this. I am creating a blog >> with archives and I wanted it to say "TODAY" on the top if the >> article >> was written today. I tried using the conditional_tags extension to >> evaluate the pub date and compare it to today's date like this: >> >> >> <r:if condition="<r:date for='now' format='%Y%j' /> is <r:date >> format='%Y%j' />">Today</r:if> >> >> That only resulted in this: >> >> 'if' tag error: Error in condition " is " (could not parse condition) >> >> I guess you can't use radius tags like this or it's just not set up >> right. Does anyone know a better way to do this or how to use this >> extension properly? >> >> Steven >> >> >> _______________________________________________ >> Radiant mailing list >> Post: Radiant@... >> Search: http://radiantcms.org/mailing-list/search/ >> Site: http://lists.radiantcms.org/mailman/listinfo/radiant >> > > > -- > ________________ > Regards, > Mamed Mamedov > _______________________________________________ > 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 |