Index: lams_tool_larsrc/conf/language/lams/ApplicationResources.properties
===================================================================
diff -u -rf4b1f384bdfc7ff432dcbc130a2cc393780e7237 -ra4bc09633e07b301174911591702607f522c7037
--- lams_tool_larsrc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision f4b1f384bdfc7ff432dcbc130a2cc393780e7237)
+++ lams_tool_larsrc/conf/language/lams/ApplicationResources.properties (.../ApplicationResources.properties) (revision a4bc09633e07b301174911591702607f522c7037)
@@ -136,8 +136,10 @@
message.step.of =Step {0} of {1}
message.no.reflection.available =No notebook available
button.edit =Edit
-errors.maxfilesize =The uploaded file has exceeded the maximum file size limit of {0} bytes
-error.attachment.executable =The uploaded file is executable, please zip it before uploading.
+errors.maxfilesize=Uploaded file exceeded maximum size of {0}
+label.upload.info =Uploaded file must not be executable and not exceed size of {0}
+error.attachment.executable =The uploaded file can not be an executable.
+error.file.type.zip=File must be a zip file.
message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information.
message.warnLockOnFinish =Note: After you click on "Next Activity\u201d, if you come back to this Share Resource, you won\u2019t be able to share new resources.
message.activityLocked =The instructor has set this activity not to allow you to view or share any more resources after you have finished it.
Index: lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties
===================================================================
diff -u -rf4b1f384bdfc7ff432dcbc130a2cc393780e7237 -ra4bc09633e07b301174911591702607f522c7037
--- lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision f4b1f384bdfc7ff432dcbc130a2cc393780e7237)
+++ lams_tool_larsrc/conf/language/lams/ApplicationResources_en_AU.properties (.../ApplicationResources_en_AU.properties) (revision a4bc09633e07b301174911591702607f522c7037)
@@ -136,8 +136,9 @@
message.step.of =Step {0} of {1}
message.no.reflection.available =No notebook available
button.edit =Edit
-errors.maxfilesize =The uploaded file has exceeded the maximum file size limit of {0} bytes
-error.attachment.executable =The uploaded file is executable, please zip it before uploading.
+errors.maxfilesize=Uploaded file exceeded maximum size of {0}
+label.upload.info =Uploaded file must not be executable and not exceed size of {0}
+error.attachment.executable =The uploaded file can not be an executable.
message.alertContentEdit =Warning: One of more learners have accessed this activity. Changing this content will result in learners getting different information.
message.warnLockOnFinish =Note: After you click on "Next Activity\u201d, if you come back to this Share Resource, you won\u2019t be able to share new resources.
message.activityLocked =The instructor has set this activity not to allow you to view or share any more resources after you have finished it.
Index: lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag
===================================================================
diff -u -rb5ab72c783a98abeb08431bafb067ad4b9edf1df -ra4bc09633e07b301174911591702607f522c7037
--- lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision b5ab72c783a98abeb08431bafb067ad4b9edf1df)
+++ lams_tool_larsrc/web/WEB-INF/tags/AuthoringButton.tag (.../AuthoringButton.tag) (revision a4bc09633e07b301174911591702607f522c7037)
@@ -123,7 +123,7 @@
}
-
+
Index: lams_tool_larsrc/web/WEB-INF/tags/FileUpload.tag
===================================================================
diff -u
--- lams_tool_larsrc/web/WEB-INF/tags/FileUpload.tag (revision 0)
+++ lams_tool_larsrc/web/WEB-INF/tags/FileUpload.tag (revision a4bc09633e07b301174911591702607f522c7037)
@@ -0,0 +1,84 @@
+<%@ taglib uri="tags-core" prefix="c"%>
+<%@ taglib uri="tags-lams" prefix="lams"%>
+<%@ taglib uri="tags-function" prefix="fn" %>
+<%@ taglib uri="tags-fmt" prefix="fmt" %>
+
+<%-- Usually fileFieldname and fileFieldId are the same, but DACO needs them to be different.
+ If they can be the same, set fileFieldname and fileFieldId will be set to the same.
+ If you need them different, then define both.
+ If you define neither, fileFieldname = fileFieldId = "fileSelector" --%>
+<%@ attribute name="fileFieldname" required="false" rtexprvalue="true"%>
+<%@ attribute name="fileFieldId" required="false" rtexprvalue="true"%>
+
+<%@ attribute name="fileInputNameFieldname" required="false" rtexprvalue="true"%>
+<%@ attribute name="fileInputMessageKey" required="false" rtexprvalue="true"%>
+
+<%-- Set uploadInfoMessageKey to '-' to NOT show the "not exe and max file size" type message. Leave it blank for the default key label.upload.info --%>
+<%@ attribute name="uploadInfoMessageKey" required="false" rtexprvalue="true"%>
+<%@ attribute name="maxFileSize" required="true" rtexprvalue="true"%>
+<%@ attribute name="tabindex" required="false" rtexprvalue="true"%>
+
+<%-- Only set if you have more than one file field on the screen (such as DACO) --%>
+<%@ attribute name="errorMsgDiv" required="false" rtexprvalue="true"%>
+<%@ attribute name="fileButtonBrowse" required="false" rtexprvalue="true"%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%-- font-size:inherit needed for Share Resources authoring or the button is too small --%>
+
+
+
+
+