Giter VIP home page Giter VIP logo

alfresco-bulk-export's People

Contributors

gsdenys avatar

Watchers

 avatar

alfresco-bulk-export's Issues

Reporting showing status of export

What steps will reproduce the problem?

Enhancement: to show the status of the export either on screen or via a logfile 
- report could be a live copy of each file / folder in realtime or just a 
collated report at the end showing failures, errors, successful exports etc.

What version of the product are you using? On what operating system?

Currently using 0.0.5 version of the add-on.

Original issue reported on code.google.com by [email protected] on 30 May 2014 at 9:44

Jar file added successfully but URL showing 404.

What steps will reproduce the problem?
1.stop server
2.added jar file & start server
3.run the following URL from browser
http://{host}:{port}/alfresco/service/extensions/bulkexport/export?nodeRef={node
ref}&base={base}
What is the expected output? What do you see instead?
it should show finished successfully message.
but it showing following error:-
The Web Script /alfresco/service/extensions/bulkexport/export has responded 
with a status of 404 - Not Found.

404 Description:     Requested resource is not available.

Message:    00310001 Script url /extensions/bulkexport/export does not map to a 
Web Script.

Exception:  org.springframework.extensions.webscripts.WebScriptException - 
00310001 Script url /extensions/bulkexport/export does not map to a Web Script.

org.springframework.extensions.webscripts.AbstractRuntime.executeScript(Abstract
Runtime.java:173)
org.springframework.extensions.webscripts.servlet.WebScriptServlet.service(WebSc
riptServlet.java:118)
javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilt
erChain.java:305)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.
java:210)
org.alfresco.web.app.servlet.GlobalLocalizationFilter.doFilter(GlobalLocalizatio
nFilter.java:61)
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilt
erChain.java:243)
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.
java:210)
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:2
22)
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:1
23)
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.jav
a:472)
..............................
What version of the product are you using? On what operating system?
alfrersco-4.2.c and on unix server.

Please provide any additional information below.
[root@csuite3 bin]# java -jar alfresco-mmt.jar list  
/opt/alfresco-4.2.c/tomcat/webapps/alfresco.war
Module 'org.alfresco.extencion.bulkexport' installed in 
'/opt/alfresco-4.2.c/tomcat/webapps/alfresco.war'
   -    Title:        Bulk Export
   -    Version:      0.0.5
   -    Install Date: Fri Jan 31 17:40:25 IST 2014
   -    Description:   Export data to Bulk Import format.
Module 'org.alfresco.integrations.google.docs' installed in 
'/opt/alfresco-4.2.c/tomcat/webapps/alfresco.war'
   -    Title:        Alfresco Google Docs Integration
   -    Version:      2.0.1
   -    Install Date: Fri Jan 31 16:56:05 IST 2014
   -    Description:   Alfresco Docs Integration
Module 'org.alfresco.module.vti' installed in 
'/opt/alfresco-4.2.c/tomcat/webapps/alfresco.war'
   -    Title:        Vti
   -    Version:      1.2
   -    Install Date: Fri Jan 31 16:56:03 IST 2014
   -    Description:   Alfresco Vti Extension
Module 'org_alfresco_module_wcmquickstart' installed in 
'/opt/alfresco-4.2.c/tomcat/webapps/alfresco.war'
   -    Title:        Web Quick Start
   -    Version:      1.0
   -    Install Date: Fri Jan 31 16:56:01 IST 2014
   -    Description:   Web Quick Start



Original issue reported on code.google.com by [email protected] on 31 Jan 2014 at 7:08

Option to disable metadata.properties.xml file creation

What steps will reproduce the problem?

Enhancement: Include additional checkbox that can enable/disable the creation 
of metadata properties files during the export.

What is the expected output? What do you see instead?

Only the files themselves should be exported, with no accompanying 
metadata.properties.xml files if the option has been enabled

What version of the product are you using? On what operating system?

0.0.5

Original issue reported on code.google.com by [email protected] on 30 May 2014 at 9:45

Doesn't work, but Module management tool show it installed

What steps will reproduce the problem?
1.Shutdown Alfresco instance
2.Used the Alfresco Module Management Tool
3. See Imagen "bulkexporte list alfresco.war"
4. Start Alfresco instance
5. Doesn't show problems
6. try with 
alfresco/service/extensions/bulkexport/export?nodeRef={noderef}&base={base}&igno
reExported={ignoreExported?}
7. shows anything just Web Script Status 404 - Not Found
8. I saw inside of alfresco/service, and desn't show anything
9. try againt all this, and nothing.
10.version community 4.2.c 

Thanks you and import bulk work great tool

Original issue reported on code.google.com by [email protected] on 5 Sep 2013 at 3:15

Attachments:

Correct a typo

I noticed that there is a typo in packages names and xml files.

The word extencion, with c, is incorrect... it would be extension, with s.

I've fixed this in my local repository, and I would want to add this fix to the 
project.

Original issue reported on code.google.com by [email protected] on 14 Sep 2012 at 1:40

Metadata with XML content



What steps will reproduce the problem?

1. Create new content in alfresco
2. Edit the content created posing on metadata (d: text) the contents of XML
3. Export this content
4. Import the result using bulk-Import.

This steps generate a node on destination but ignore XML.

What is the expected output? What do you see instead?

  I spected that during export execution all metadata special characters was converted to html entity. 


Original issue reported on code.google.com by [email protected] on 19 Mar 2012 at 8:32

Metadata in XML content 2

Hello, 

For the metadata with xml content, you may need to adjust the code in 
FileFolder class from this: 

private String formatProperty(String value){

    //format < and >
    value = value.replaceAll("<", "&lt;").replaceAll(">", "&gt;");
    //format &
    value = value.replaceAll("&", "&amp;");

    return value;
}

to this: 

private String formatProperty(String value){

    //format &
    value = value.replaceAll("&", "&amp;");
    //format < and >
    value = value.replaceAll("<", "&lt;").replaceAll(">", "&gt;");

    return value;
}

Because after you replace "<" to "&lt;", it will result in: "&amp;lt;" which is 
not desired. 

Original issue reported on code.google.com by erenbekce on 29 Mar 2012 at 11:07

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.