You cannot post messages because only members can post, and you are not currently a member.
Description:
FW/1 - Framework One - is a lightweight convention-based MVC framework for ColdFusion. See http://fw1.riaforge.org/ for the project's home, blog, forums, bug tracker, SVN and latest news. This mailing list is for users of the framework.
|
|
|
Building form action attribute value
|
| |
Hi, How are people building the action attribute for form tags? For example: <cfoutput> <form action="#buildURL('section.ite m')#" method="get"> <input type="text" name="p1"> <input type="submit"> </form> </cfoutput> Renders as: <form action="/app/index.cfm?action= section.item" method="get"> <input type="text" name="p1">... more »
|
|
Weird issue with arguments scope
|
| |
I am on CF 10 using the latest version of FW/1 on Windows 2008 R2. I'm not sure if this is a problem/question with FW/1 or CF10, or my methodology, but here goes. I have a controller that passes the form scope to the service: rc.errors = application.beanFactory.getBea n('MessageService').saveMessag e(form);... more »
|
|
Obscure 403 error on Windows and Apache
|
| |
Hi,
I've just run into an obscure 403 issue with subsystems when running Apache
on a Windows server with SES URLs and omitting index.cfm.
It seems that (to quote):
Because the colon character is used by NTFS to denote symbolic links, when
[link] is accessed, Windows looks for a... more »
|
|
Controller bug with redirect?
|
| |
Is this a bug or is it by design?
When I add variables to the rc scope in my controller I am expecting
the new values added to be available in the "after" function of the
controller. This works as expected unless I have a redirect in the
controller. The after function is still called with the redirect, but... more »
|
|
unable to call get method in getDepartmentService()
|
| |
Hi everyone, I’m new to framework-one so far I’m lovin’ it. Thanks
Sean! I started a new site using the userManagerAccessControl example
as my starting point. I’ve created a database and have gotten
everything working but I can’t seem to call the get() from the
getDepartmentService() in the user controller. Thank you in advance... more »
|
|
Can't find a service?
|
| |
In a controller function, I've got this call: variables.fw.service( "nameservice.save", "data" ); I intend for this to correspond to services/nameservice.cfc, "save" method. However, I'm getting: Detail To have the execution of this service be conditional based upon its existence, pass in a third parameter of 'false'.... more »
|
|
Maybe a bug in FW/1
|
| |
Hello,
I found a very strange behavior in FW/1. Please use Hello3 example to
reproduce it.
...hello3/views/main/myView.cf m, with following content
------------------------------ -
This is my view.
------------------------------ -
..."name.default" service call, add following lines:
------------------------------ -... more »
|
|
Slightly OT - Question about global functions (eg. buildURL())
|
| |
Hi, This is not a FW/1 question per say, but more a question about stuff that FW/1 does that I'd like to be able to do in other projects. ;-) One of the awesome things about FW/1 is how you can call functions like buildURL() from anywhere in your app. How's it work though? I can't seem to replicate this behaviour. For... more »
|
|
After rewrite, controller not invoked
|
| |
Hello all,
Just getting started with FW/1 and attempting to get the index.cfm out
of the URL string. I used the mod_rewrite code for .htaccess provided
in the documentation:
RewriteEngine on
RewriteCond %{REQUEST_URI} !^/(assets|cfide|files|images| js|css|views|
layouts|index.cfm) [NC]
RewriteRule ^(.*)$ /index.cfm/$1... more »
|
|
Sample FW/1 and DI/1 application
|
| |
I thought group members might be interested to learn that I released a CFML content management system last week that uses FW/1 and DI/1. You'll find the project on GitHub. <[link]> This is my first open source project so it would be great to get some feedback and contributions from other FW/1 users. I hope the application... more »
|
|
|