04-27-2012 10:09 AM
04-29-2012 07:50 PM
04-30-2012 05:16 AM
05-18-2012 06:43 AM
05-24-2012 10:32 AM
<config evaluator="string-compare" condition="DocumentLibrary">
<file-upload>
<adobe-flash-enabled>true</adobe-flash-enabled>
<in-memory-limit>262144000</in-memory-limit>
</file-upload>
</config>File Path: C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\share-documentlibrary-config.xml<form id="${el}-htmlupload-form"
method="post" enctype="multipart/form-data" accept-charset="utf-8"
action="${url.context}/proxy/alfresco/api/upload.html" name="form1">
<div id="${el}-metadataSection-div">
<div class="yui-gd">
<div class="yui-u first">
<label for="${el}-desc">Description</label>
</div>
<div class="yui-u">
<input type="text" id="${el}-desc" name="desc" tabindex="1" />
</div>
</div>
</div>
</form>File Path: C:\Alfresco\tomcat\webapps\share\WEB-INF\classes\alfresco\site-webscripts\org\alfresco\components\upload\html-upload.get.html.ftl
var description = "";
var desc = args.desc;
/**
* Create a new file.
*/
var newFile = destNode.createFile(filename);
newFile.properties.description = descricao;
if (contentType !== null)
{
newFile.specializeType(contentType);
}
newFile.properties.content.write(content, false, true);
newFile.save();File Path: C:\Alfresco\tomcat\webapps\alfresco\WEB-INF\classes\alfresco\templates\webscripts\org\alfresco\repository\upload\upload.post.js06-06-2012 12:26 PM
06-07-2012 07:37 AM
<div class="yui-gd">
<div class="yui-u first">
<label for="${el}-tparty">Third parties</label>
</div>
<div class="yui-u">
<input type="text" id="${el}-tparty" name="tparty" tabindex="0" />
</div>
</div>
var tparty = args["tparty"]; //line 50 approx
…
case "tparty": // line 124
tparty = field.value;
break;
…
//after aspect check line 380 approx
newFile.properties.thirdParties = tparty;
newFile.properties.content.write(content, false, true);
newFile.save();
06-11-2012 10:34 AM
06-11-2012 10:42 AM
06-11-2012 11:07 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.