You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by sm...@apache.org on 2016/07/11 05:22:34 UTC

directory-fortress-commander git commit: 5 splitter cleanup

Repository: directory-fortress-commander
Updated Branches:
  refs/heads/master 6e93fea1f -> af6accf77


5 splitter cleanup


Project: http://git-wip-us.apache.org/repos/asf/directory-fortress-commander/repo
Commit: http://git-wip-us.apache.org/repos/asf/directory-fortress-commander/commit/af6accf7
Tree: http://git-wip-us.apache.org/repos/asf/directory-fortress-commander/tree/af6accf7
Diff: http://git-wip-us.apache.org/repos/asf/directory-fortress-commander/diff/af6accf7

Branch: refs/heads/master
Commit: af6accf775f08c6afba5f538ecfdb35597cf47f6
Parents: 6e93fea
Author: Shawn McKinney <sm...@apache.org>
Authored: Mon Jul 11 00:22:15 2016 -0500
Committer: Shawn McKinney <sm...@apache.org>
Committed: Mon Jul 11 00:22:15 2016 -0500

----------------------------------------------------------------------
 .../fortress/web/FiveWaySplitter.java.sav       | 50 --------------------
 1 file changed, 50 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/directory-fortress-commander/blob/af6accf7/src/main/java/org/apache/directory/fortress/web/FiveWaySplitter.java.sav
----------------------------------------------------------------------
diff --git a/src/main/java/org/apache/directory/fortress/web/FiveWaySplitter.java.sav b/src/main/java/org/apache/directory/fortress/web/FiveWaySplitter.java.sav
deleted file mode 100644
index d032382..0000000
--- a/src/main/java/org/apache/directory/fortress/web/FiveWaySplitter.java.sav
+++ /dev/null
@@ -1,50 +0,0 @@
-/*
- *   Licensed to the Apache Software Foundation (ASF) under one
- *   or more contributor license agreements.  See the NOTICE file
- *   distributed with this work for additional information
- *   regarding copyright ownership.  The ASF licenses this file
- *   to you under the Apache License, Version 2.0 (the
- *   "License"); you may not use this file except in compliance
- *   with the License.  You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- *   Unless required by applicable law or agreed to in writing,
- *   software distributed under the License is distributed on an
- *   "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
- *   KIND, either express or implied.  See the License for the
- *   specific language governing permissions and limitations
- *   under the License.
- *
- */
-
-package org.apache.directory.fortress.web;
-
-import com.googlecode.wicket.kendo.ui.widget.splitter.IBorderLayout;
-import com.googlecode.wicket.kendo.ui.widget.splitter.SplitterBehavior;
-import org.apache.wicket.MarkupContainer;
-
-/**
- * @author <a href="mailto:dev@directory.apache.org">Apache Directory Project</a>
- * @version $Rev$
- */
-public class FiveWaySplitter implements IBorderLayout
-{
-    public void addBorderLayout(MarkupContainer container)
-    {
-        container.add(new SplitterBehavior("#vertical").setOption("panes", this.getVerticalPanes()).setOption("orientation", "'vertical'"));
-        container.add(new SplitterBehavior("#horizontal").setOption("panes", this.getHorizontalPanes()));
-    }
-
-    @Override
-    public String getVerticalPanes()
-    {
-        return "[ { collapsible: true, resizable: false, size: '50px', min: '50px', max: '50px', scrollable: false }, { resizable: true, size: '80%' }, { collapsible: true, size: '5%', min: '50px'} ]";
-    }
-
-    @Override
-    public String getHorizontalPanes()
-    {
-        return "[ { collapsible: true, resizable: false, size: '85px', min: '85x', max: '85px'}, { collapsible: true, size: '70%' }, { collapsible: true, size: '21%'} ]";
-    }
-}