]> git.argeo.org Git - gpl/argeo-slc.git/blob - plugins/org.argeo.slc.client.ui.dist/src/main/java/org/argeo/slc/client/ui/dist/DistributionPerspective.java
Add org.argeo.slc.repo.RepoUtils.relatedPdeSourcePath(String, Node)
[gpl/argeo-slc.git] / plugins / org.argeo.slc.client.ui.dist / src / main / java / org / argeo / slc / client / ui / dist / DistributionPerspective.java
1 /*
2 * Copyright (C) 2007-2012 Argeo GmbH
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.slc.client.ui.dist;
17
18 import org.argeo.slc.client.ui.dist.views.DistributionsView;
19 import org.eclipse.ui.IFolderLayout;
20 import org.eclipse.ui.IPageLayout;
21 import org.eclipse.ui.IPerspectiveFactory;
22
23 /**
24 * User interface to manage a set of distributions split into several
25 * repositories
26 */
27 public class DistributionPerspective implements IPerspectiveFactory {
28
29 // private RepositoryFactory repositoryFactory;
30 // private Repository nodeRepository;
31
32 public final static String ID = DistPlugin.ID + ".distributionPerspective";
33
34 public void createInitialLayout(IPageLayout layout) {
35 //initializeModel();
36
37 String editorArea = layout.getEditorArea();
38 layout.setEditorAreaVisible(true);
39 layout.setFixed(false);
40
41 IFolderLayout main = layout.createFolder("main", IPageLayout.LEFT,
42 0.3f, editorArea);
43 main.addView(DistributionsView.ID);
44 main.addView("org.eclipse.ui.views.ProgressView");
45
46 }
47
48 // private void initializeModel() {
49 // Session nodeSession = null;
50 // try {
51 // nodeSession = nodeRepository.login();
52 //
53 // Node homeNode = UserJcrUtils.getUserHome(nodeSession);
54 // if (homeNode == null) // anonymous
55 // throw new SlcException("User must be authenticated.");
56 //
57 // // make sure base directory is available
58 // Node repos = JcrUtils.mkdirs(nodeSession, homeNode.getPath()
59 // + RepoConstants.REPOSITORIES_BASE_PATH);
60 // nodeSession.save();
61 //
62 // // register default local java repository
63 // String alias = RepoConstants.DEFAULT_JAVA_REPOSITORY_ALIAS;
64 // Repository javaRepository = ArgeoJcrUtils.getRepositoryByAlias(
65 // repositoryFactory, alias);
66 // if (javaRepository != null) {
67 // if (!repos.hasNode(alias)) {
68 // Node repoNode = repos.addNode(alias,
69 // ArgeoTypes.ARGEO_REMOTE_REPOSITORY);
70 // repoNode.setProperty(ArgeoNames.ARGEO_URI, "vm:///" + alias);
71 // repoNode.addMixin(NodeType.MIX_TITLE);
72 // repoNode.setProperty(Property.JCR_TITLE,
73 // RepoConstants.DEFAULT_JAVA_REPOSITORY_LABEL);
74 // nodeSession.save();
75 // }
76 // }
77 // } catch (RepositoryException e) {
78 // throw new SlcException("Cannot register repository", e);
79 // } finally {
80 // JcrUtils.logoutQuietly(nodeSession);
81 // }
82 // }
83
84 // public void setRepositoryFactory(RepositoryFactory repositoryFactory) {
85 // this.repositoryFactory = repositoryFactory;
86 // }
87 //
88 // public void setRepository(Repository nodeRepository) {
89 // this.nodeRepository = nodeRepository;
90 // }
91
92 }