Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Commit

Permalink
Reorganize ajxp_home to avoid upgrade issue with previously deleted f…
Browse files Browse the repository at this point in the history
…older.
  • Loading branch information
cdujeu committed Mar 11, 2016
1 parent cba558f commit a9c216d
Show file tree
Hide file tree
Showing 21 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/src/.gitignore
@@ -1,5 +1,5 @@
/plugins/access.ajxp_home/res/build
/plugins/access.inbox/res/build
/plugins/access.ajxp_home/build/
/plugins/core.mailer/js/build
/plugins/gui.ajax/res/js/ui/reactjs/build/
.idea/
Expand Down
6 changes: 3 additions & 3 deletions core/src/plugins/access.ajxp_home/Gruntfile.js
Expand Up @@ -7,9 +7,9 @@ module.exports = function(grunt) {
files: [
{
expand: true,
cwd: 'react/',
cwd: 'res/react/',
src: ['**/*.js'],
dest: 'build/',
dest: 'res/build/',
ext: '.js'
}
]
Expand All @@ -18,7 +18,7 @@ module.exports = function(grunt) {
watch: {
js: {
files: [
"react/**/*"
"res/react/**/*"
],
tasks: ['babel'],
options: {
Expand Down
6 changes: 3 additions & 3 deletions core/src/plugins/access.ajxp_home/manifest.xml
Expand Up @@ -2,9 +2,9 @@
<ajxpdriver id="access.ajxp_home" enabled="always" label="CONF_MESSAGE[Welcome Page]" description="CONF_MESSAGE[Welcome Page displaying a list of workspaces]" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="file:../core.ajaxplorer/ajxp_registry.xsd">
<client_settings icon="plugins/access.ajxp_home/share.png">
<resources>
<i18n namespace="user_home" path="plugins/access.ajxp_home/i18n" />
<js className="WelcomeComponents" file="plugins/access.ajxp_home/build/WelcomeComponents.js" depends="React,ReactPydio,LeftNavigation"/>
<css file="plugins/access.ajxp_home/home.css" autoload="true"/>
<i18n namespace="user_home" path="plugins/access.ajxp_home/res/i18n" />
<js className="WelcomeComponents" file="plugins/access.ajxp_home/res/build/WelcomeComponents.js" depends="React,ReactPydio,LeftNavigation"/>
<css file="plugins/access.ajxp_home/res/home.css" autoload="true"/>
</resources>
<node_provider ajxpClass="EmptyNodeProvider" ajxpOptions="{}"/>
</client_settings>
Expand Down
2 changes: 1 addition & 1 deletion core/src/plugins/access.ajxp_home/package.json
Expand Up @@ -2,7 +2,7 @@
"name": "access.ajxp_home",
"version": "6.3.0",
"description": "",
"source_path":"react",
"source_path":"res/react",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
Expand Down

0 comments on commit a9c216d

Please sign in to comment.