Ctrl-A
returns cursor to the beginning of current line
Ctrl-E
moves cursor to the end of the line
Ctrl-K
deletes the rest of the line, beginning from the cursor
/** | |
* @file /usr/local/Cellar/tomcat/7.0.37/libexec/webapps/pony/components/qbQuery.cfc | |
* @author Gernot Bartels 2013 | |
* @description Provides Quickbase query methods. Returns records, record ID's, and qbAceKey | |
*/ | |
component extends="qbAuth" | |
output="false" | |
accessors="true" | |
displayname="Quickbase query methods" |
<cfscript> | |
/** | |
* @file /inbound/feli_registration.cfm | |
* @author Gernot Bartels 2013 | |
* @description Processes FELI event registration | |
* @usage FELI / CRM:Registrations | |
* @created 2010-02-11 | |
* @modified 2013-08-14 | |
*/ |
/** | |
* @file /components/qbControl.cfc | |
* @author Gernot Bartels 2013 | |
* @description Controller to create, update, delete records | |
*/ | |
component | |
output="false" | |
accessors="true" | |
displayname="Record control" |
/** | |
* @file /components/qbCrud.cfc | |
* @author Gernot Bartels 2013 | |
* @description Provides Quickbase auth, create, update, delete, and rescue methods | |
**/ | |
component extends="qbAuth" | |
output="false" | |
accessors="true" | |
displayname="Quickbase API methods" |
<!--- | |
Name: qbAPI.cfc | |
Author: Gernot Bartels | |
Description: Methods to interact with QuickBase | |
History: Migrated from CF8 to Railo 2010-04-02. | |
Created: 2009-03-25 | |
Updated: 2010-04-02 | |
---> | |
<cfcomponent output="false"> | |
<!--- Login ---> |
<!--- | |
Name: record.cfm | |
Author: Gernot Bartels | |
Description: Queries QB for record object. | |
If record ID exists, update; | |
Otherwise create new record. | |
Prevents duplicates. | |
History: Created | |
Added logic | |
Usage: Surveys, Intake, |
<!--- | |
Name: intake_xml.cfm | |
Author: Gernot Bartels | |
Description: Intake Application cfsavecontent object | |
Returns new record or update data xml. | |
Processes by section. | |
History: Created | |
Usage: Surveys, Intake, | |
Created: 2012-09-05 | |
Updated: 2012-10-15 |
Ctrl-A
returns cursor to the beginning of current line
Ctrl-E
moves cursor to the end of the line
Ctrl-K
deletes the rest of the line, beginning from the cursor
As a rule, [CAPTCHAs][1] should be a last resort. They tend to be annoying, often aren't human-solvable, most of them are ineffective against bots, all of them are ineffective against cheap third-world labor (according to [OWASP][2], the current sweatshop rate is $12 per 500 tests), and some implementations are technically illegal in some countries (see link number 1 from the MUST-READ list). If you must use a CAPTCHA, use [reCAPTCHA][3], since it is OCR-hard by definition (since it uses already OCR-misclassified book scans).
It is possible to prevent browsers from storing/retrieving a password with the autocomplete tag for forms/input fields. However in the real world, your customers will have many accounts on different systems; it compromises their security if they use the same password for every site. Can you expect them to remember different passwords for every site? There are some good password managers out there, however there are also bad ones - which will become a
When starting a project that includes refinerycms-blog: | |
$ rake refinery:override view=refinery/pages/* | |
$ rake refinery:override view=layouts/* | |
$ rake refinery:override view=refinery/blog/shared/* | |
$ rake refinery:override view=refinery/blog/posts/* | |
$ rake refinery:override view=refinery/* | |
$ rake refinery:override controller=refinery/blog/* | |
$ rake refinery:override controller=refinery/* |