% --[[ @title: Show event papers page @goal: Allow user interaction with the papers page. @context: Localization: view layer. Precondition: SHOW EVENT PAGE or The user accesses the url of the papers page. @actors: user, system. @resources: module controler and config.lua file ]]-- dofile("../config/config.lua") package.path = package.path..returnDLPath() --@episode: local module_controller = require("controller.controller_digitallibrary") --@episode: Requests paper page paths to DIGITAL LIBRARY CONTROLLER local paper_page_paths = module_controller.digitalLibraryController("return_paperpage_paths") --@episode: Requests paper page data to DIGITAL LIBRARY CONTROLLER local selected_paperspage = module_controller.digitalLibraryController("return_paperpage_data", 2) --@episode: Requests editions with papers data to DIGITAL LIBRARY CONTROLLER local editions_with_papers = module_controller.digitalLibraryController("return_editions_with_papers", 2) %>
<%= selected_paperspage["title"]%> <%= selected_paperspage["subtitle"]%> |
<%= selected_paperspage["description"]%>
<%
for i, edition in pairs(editions_with_papers) do
%>
"><%= edition["acronym"]%>
<%
end
%>
|