| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Alfresco
Revision: 2855
Author: luissala
Date: 02 Sep 2008 16:28:45
Changes:- Renamed the 'Resources' page configuration files and related alfresco-forge components to new name of 'Extensions'.
- Extranet project now loads custom config files from external config directories such as tomcat/shared/classes/alfresco/extension/
Files:| ... | ...@@ -1,9 +1,9 @@ | |
| 1 | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | 2 | |
| 3 | 3 | <page-association> |
| 4 | <title>Resources</title> | |
| 4 | <title>Extensions</title> | |
| 5 | 5 | <source-id>home</source-id> |
| 6 | <dest-id>resources</dest-id> | |
| 6 | <dest-id>extensions</dest-id> | |
| 7 | 7 | <assoc-type>community</assoc-type> |
| 8 | 8 | |
| 9 | 9 | <properties> |
| ... | ...@@ -0,0 +1,13 @@ | |
| 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | ||
| 3 | <component> | |
| 4 | ||
| 5 | <title>Alfresco Extensions Directory</title> | |
| 6 | <url>/components/extranet/alfresco-extensions</url> | |
| 7 | ||
| 8 | <!-- Binding --> | |
| 9 | <scope>page</scope> | |
| 10 | <region-id>body</region-id> | |
| 11 | <source-id>extensions</source-id> | |
| 12 | ||
| 13 | </component> |
| ... | ...@@ -0,0 +1 @@ | |
| 0 | <import resource="classpath:/alfresco/extranet/core.js"> | |
| 0 | 1 | \ No newline at end of file |
| ... | ...@@ -0,0 +1,7 @@ | |
| 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | ||
| 3 | <page> | |
| 4 | <title>Extensions</title> | |
| 5 | <template-instance>application</template-instance> | |
| 6 | <authentication>none</authentication> | |
| 7 | </page> |
| ... | ...@@ -0,0 +1,7 @@ | |
| 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | ||
| 3 | <template-instance> | |
| 4 | ||
| 5 | <template-type>extensions</template-type> | |
| 6 | ||
| 7 | </template-instance> |
| ... | ...@@ -0,0 +1 @@ | |
| 0 | // TODO | |
| 0 | 1 | \ No newline at end of file |
| ... | ...@@ -0,0 +1,5 @@ | |
| 1 | <webscript> | |
| 2 | <shortname>Alfresco Extensions Directory</shortname> | |
| 3 | <description>Alfresco Extensions Directory</description> | |
| 4 | <url>/components/extranet/alfresco-extensions</url> | |
| 5 | </webscript> | |
| 0 | 6 | \ No newline at end of file |
| ... | ...@@ -13,6 +13,12 @@ | |
| 13 | 13 | classpath:alfresco/web-framework-model-context.xml |
| 14 | 14 | classpath:alfresco/web-framework-application-context.xml |
| 15 | 15 | classpath:alfresco/extranet-application-context.xml |
| 16 | <!-- | |
| 17 | To give final control over the tuning of the custom environment, | |
| 18 | the custom-web-context.xml file is processed last (note: | |
| 19 | custom-web-context.xml isn't part of the source tree itself). | |
| 20 | --> | |
| 21 | classpath*:alfresco/extension/custom-web-context.xml | |
| 16 | 22 | </param-value> |
| 17 | 23 | <description>Spring config file locations</description> |
| 18 | 24 | </context-param> |
| ... | ...@@ -1,13 +0,0 @@ | |
| 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | ||
| 3 | <component> | |
| 4 | ||
| 5 | <title>Alfresco Forge</title> | |
| 6 | <url>/components/extranet/alfresco-forge</url> | |
| 7 | ||
| 8 | <!-- Binding --> | |
| 9 | <scope>page</scope> | |
| 10 | <region-id>body</region-id> | |
| 11 | <source-id>resources</source-id> | |
| 12 | ||
| 13 | </component> |
| ... | ...@@ -0,0 +1,94 @@ | |
| 1 | <#import "include/globals.ftl" as global /> | |
| 2 | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
| 3 | <html xmlns="http://www.w3.org/1999/xhtml"> | |
| 4 | ||
| 5 | <head> | |
| 6 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
| 7 | <title>${page.title}</title> | |
| 8 | <@global.header/> | |
| 9 | ${head} | |
| 10 | ||
| 11 | ||
| 12 | <link rel="stylesheet" type="text/css" href="yui/container/assets/container.css" /> | |
| 13 | <link rel="stylesheet" type="text/css" href="yui/fonts/fonts-min.css" /> | |
| 14 | <link rel="stylesheet" type="text/css" href="yui/datatable/assets/skins/sam/datatable.css" /> | |
| 15 | ||
| 16 | <script type="text/javascript" src="yui/yahoo-dom-event/yahoo-dom-event.js"></script> | |
| 17 | <script type="text/javascript" src="yui/connection/connection-min.js"></script> | |
| 18 | <script type="text/javascript" src="yui/json/json-min.js"></script> | |
| 19 | <script type="text/javascript" src="yui/element/element-beta-min.js"></script> | |
| 20 | <script type="text/javascript" src="yui/datasource/datasource-beta-min.js"></script> | |
| 21 | <script type="text/javascript" src="yui/datatable/datatable-beta-min.js"></script> | |
| 22 | <script type="text/javascript" src="scripts/kbadvancedsearch.js"></script> | |
| 23 | <script type="text/javascript" src="yui/button/button-min.js"></script> | |
| 24 | <script type="text/javascript" src="yui/yahoo-dom-event/yahoo-dom-event.js"></script> | |
| 25 | <script type="text/javascript" src="yui/dragdrop/dragdrop-min.js"></script> | |
| 26 | <script type="text/javascript" src="yui/container/container-min.js"></script> | |
| 27 | <script type="text/javascript" src="scripts/swfobject.js"></script> | |
| 28 | ||
| 29 | <style type="text/css"> | |
| 30 | .mask | |
| 31 | { | |
| 32 | -moz-opacity: 0.8; | |
| 33 | opacity:.80; | |
| 34 | filter: alpha(opacity=80); | |
| 35 | background-color:#2f2f2f; | |
| 36 | } | |
| 37 | #paginated { | |
| 38 | text-align: center; | |
| 39 | } | |
| 40 | #paginated table { | |
| 41 | margin-left:auto; | |
| 42 | margin-right:auto; | |
| 43 | } | |
| 44 | #paginated .yui-pg-container a { | |
| 45 | color: #00d; | |
| 46 | } | |
| 47 | #paginated .yui-pg-pages a { | |
| 48 | text-decoration: underline; | |
| 49 | } | |
| 50 | #paginated, #paginated .yui-dt-loading { | |
| 51 | text-align: center; background-color: transparent; | |
| 52 | } | |
| 53 | </style> | |
| 54 | ||
| 55 | </head> | |
| 56 | ||
| 57 | <body> | |
| 58 | <div id="custom-doc" class="yui-t6"> | |
| 59 | ||
| 60 | <!-- HEADER start --> | |
| 61 | <div id="hd"> | |
| 62 | <@region id="header" scope="theme"/> | |
| 63 | </div> | |
| 64 | <!-- HEADER end --> | |
| 65 | ||
| 66 | <!-- NAVIGATION start --> | |
| 67 | <div id="nav"> | |
| 68 | <@region id="navigation" scope="global"/> | |
| 69 | </div> | |
| 70 | <!-- NAVIGATION end --> | |
| 71 | ||
| 72 | <!-- BODY --> | |
| 73 | <div id="bd" class="yui-skin-sam"> | |
| 74 | ||
| 75 | <@region id="search" scope="page"/> | |
| 76 | ||
| 77 | <hr/> | |
| 78 | ||
| 79 | <@region id="body" scope="page"/> | |
| 80 | ||
| 81 | </div> | |
| 82 | ||
| 83 | <!-- BODY end --> | |
| 84 | ||
| 85 | <!-- FOOTER start --> | |
| 86 | <div id="ft"> | |
| 87 | <@region id="footer" scope="global"/> | |
| 88 | </div> | |
| 89 | <!-- FOOTER end --> | |
| 90 | ||
| 91 | </div> | |
| 92 | ||
| 93 | </body> | |
| 94 | </html> | |
| 0 | 95 | \ No newline at end of file |
| ... | ...@@ -0,0 +1,21 @@ | |
| 1 | <?xml version='1.0' encoding='UTF-8'?> | |
| 2 | <!DOCTYPE beans PUBLIC '-//SPRING//DTD BEAN//EN' 'http://www.springframework.org/dtd/spring-beans.dtd'> | |
| 3 | ||
| 4 | <!-- references to XML configurations --> | |
| 5 | <beans> | |
| 6 | ||
| 7 | <!-- | |
| 8 | Import of general extensions and bean overrides. | |
| 9 | ||
| 10 | To give developers final control over the tuning | |
| 11 | of their own local build, the dev-context.xml file | |
| 12 | is processed last (note: dev-context.xml isn't | |
| 13 | part of the source tree itself). | |
| 14 | ||
| 15 | For details, see: | |
| 16 | http://wiki.alfresco.com/wiki/Developer_Runtime_Configuration | |
| 17 | --> | |
| 18 | <import resource="classpath*:alfresco/extension/*-context.xml"/> | |
| 19 | <import resource="classpath*:alfresco/extension/dev-context.xml" /> | |
| 20 | ||
| 21 | </beans> | |
| 0 | 22 | \ No newline at end of file |
| ... | ...@@ -1,7 +0,0 @@ | |
| 1 | <?xml version="1.0" encoding="UTF-8"?> | |
| 2 | ||
| 3 | <page> | |
| 4 | <title>Resources</title> | |
| 5 | <template-instance>application</template-instance> | |
| 6 | <authentication>none</authentication> | |
| 7 | </page> |
| ... | ...@@ -0,0 +1,30 @@ | |
| 1 | <b>Coming soon!</b> | |
| 2 | <br/><br/> | |
| 3 | <p> | |
| 4 | The Alfresco <b>Plugin and Add-on Library</b> will appear here in the near future. This will allow you to browse all kinds of interesting extensions, including <a href="http://wiki.alfresco.com/wiki/Surf_Platform" target="_blank">Alfresco Surf</a> web components, pages, templates, themes and gadgets. This will also allow you to quickly discover and locate Alfresco Module Packages and other types of updates for the Alfresco Repository tier as well. | |
| 5 | <br/> | |
| 6 | <br/> | |
| 7 | Our goal is to provide a very easy way for Alfresco users to collaborate and share the things that they build. For that reason, this portion of the web site is being built using <a href="http://wiki.alfresco.com/wiki/Alfresco_Labs_3" target="_blank">Alfresco 3.0</a> and its rich set of social computing features. People will be able to collaborate on add-ons, comment on them, rate them, receive notifications on updates or improvements and finally subscribe to interesting site and tag feeds. | |
| 8 | <br/> | |
| 9 | <br/> | |
| 10 | To get started now, we recommend the following: | |
| 11 | <br/><br/> | |
| 12 | <ul> | |
| 13 | <li> | |
| 14 | | |
| 15 | <img src="/extranet/images/extranet/login_16.gif"> | |
| 16 | Join the <a target="_blank" href="http://www.alfresco.com/community/register/?source=network.alfresco.com">Alfresco Content Community</a>! | |
| 17 | </li> | |
| 18 | <li> | |
| 19 | | |
| 20 | <img src="/extranet/images/extranet/login_16.gif"> | |
| 21 | Visit the <a target="_blank" href="http://forge.alfresco.com">Alfresco Forge</a>! | |
| 22 | </li> | |
| 23 | </ul> | |
| 24 | <br/> | |
| 25 | Stay tuned! | |
| 26 | <br/> | |
| 27 | <br/> | |
| 28 | The Alfresco Network Team | |
| 29 | </p> | |
| 30 |