Page: http://wiki.cocoondev.org/Wiki.jsp?page=MigratingFrom2.0.4To2.1dev ,
version: 2 on Sun Mar 30 20:51:50 2003 by StevenCummings
- ** Specifically, using sunshine under 2.0.X required the prefix of request
variables passed to the authentication pipeline with the string {{"prefix:"}}.
Now you just have to surround that with braces as in {{"{request:username}"}}.
This is basically the standard usage of input modules now.
?
- ^^^
+ ** Specifically, using sunshine under 2.0.X required the prefix of request
variables passed to the authentication pipeline with the string {{"request:"}}.
Now you just have to surround that with braces as in
{{"{request-param:username}"}}. This is basically the standard usage of input
modules now.
?
^^^^^
++++++
Page: http://wiki.cocoondev.org/Wiki.jsp?page=Stefanomazzocchi , version: 6 on
Sun Mar 30 20:11:29 2003 by Stefanomazzocchi
- That's why the call me the "Herald of Random Thought" :-)
+ That's why they call me the "Herald of Random Thought" :-)
? +
Page: http://wiki.cocoondev.org/Wiki.jsp?page=StevenCummings , version: 8 on
Sun Mar 30 20:21:43 2003 by StevenCummings
- ** Primary for mailing-lists/development: [EMAIL PROTECTED]
+ ** Primary for mailing-lists/development: [EMAIL PROTECTED]|mailto:[EMAIL
PROTECTED]
? +
++++++++++++++++++++++++++++++++
- ** Primary academic: [EMAIL PROTECTED] (alias: [EMAIL PROTECTED])
? ^^ ^^ ^^^^^^^^ ^
+ ** Primary academic: [EMAIL PROTECTED]|mailto:[EMAIL PROTECTED]
? + ^^ + ^^^ ^^^^^ ^
- ** Secondary: [EMAIL PROTECTED]
+ ** Secondary: [EMAIL PROTECTED]|mailto:[EMAIL PROTECTED]
Page: http://wiki.cocoondev.org/Wiki.jsp?page=FileUploadWithAction , version: 9
on Sun Mar 30 20:13:12 2003 by Stefanomazzocchi
- import org.apache.cocoon.components.request.multipart.FilePartFile;
? ----
+ import org.apache.cocoon.components.request.multipart.FilePart;
- FilePartFile filePartFile =
- (FilePartFile)request.get("uploaded_file");
? ----
+ FilePart filePart = (FilePart) request.get("uploaded_file");
? ++++++++ ++++++++++ +
- File file = filePartFile.getFile();
? ----
+ File file = filePart.getFile();
- getLogger().debug("Uploaded file = " +
+ getLogger().debug("Uploaded file = " + file.getCanonicalPath());
? ++++++++++++++++++++++++++
- file.getCanonicalPath());