Menu
  • HOME
  • TAGS

what is Dspace DSpaceMETSGenerator for?

dspace,cocoon

DspaceMETSGenerator is the DSpace XMLUI class that prepares the data of an Item,Community,Collection for transformation into html from an intermediary format named METS hence the name DSpaceMETSGenerator. You can see the raw METS of an item by going to [dspace.url]/metadata/handle/[handle-prefix]/[handle-suffix]/mets.xml The heavy lifting of the transformation from database objects to...

Spring Could not resolve placeholder while loading config file form filesystem

java,spring,maven,configuration-files,cocoon

Ok, I've finally resolved it. There were two things about it. At First: My tomcat server was not updating deployed files properly. And finally I'm not pretty sure if it helped, but we added one more slash after file: specification, so that the result was: <context:property-placeholder location="file:///etc/sep/properties/*.properties" /> Now it...

Aspect chains in Dspace 1.8.2

dspace,cocoon

The documentation is a bit obscure. There is one aspect chain. Every dynamically generated page passes through it. To understand how it all works, you need to keep in mind that XMLUI is a Cocoon application, and in particular you need to understand the Cocoon "sitemap" which is built up...

NoMethodError in Index: How to Define the Nested Attributes?

ruby-on-rails,ruby,undefined,nested-attributes,cocoon

Answer to Your Specific Problem: In your index action you have: @quantified = Result.all.order("date_value") Calling .all before .order is the cause of your error. In Rails ActiveRecord, the .all command immediately triggers a fetch of items from the database. Since database IO fetching commands like .where and .order exist to...

link_to_remove_association is not removing?

ruby-on-rails,ruby,model-view-controller,cocoon

If the link_to_add_association works, the javascript is loaded correctly. Still a bit confused about what is not working. If clicking the link_to_remove_association does not remove anything visibly from the page, you are missing the correct wrapper-class. By default it should be .nested-fields, but this can be overruled by specifying it...

Is cocoon bootstrap compatible for windows 8.1 store apps?

c#,windows-store-apps,bootstrap,windows-8.1,cocoon

It depends on what you mean: Cocoon apps use java, and there isn't a java implementation which supports Windows Store apps. You couldn't write a Windows Store app as a Cocoon app. You could host a web app or service written with Cocoon and connect to it from a Windows...