If you want to go to the space directory itself and not your personal space you need to go about it slightly differently. The first thing to do would be to create a space called something like Space Directory Redirect. Then create a user macro with the following code by @Stephen Deutsch. Then on the home page of the Space Directory Redirect space add the user macro to it and put this url (http://{server}/spacedirectory/view.action) into the location parameter (see below screenshot). You will need to change {server} to your server name. Finally setup your default space in your profile to be the Space Directory Redirect space using the steps that @Lameck Oliveira [Diferencial TI] provided.
Redirect User Macro
Macro Name:
redirect_macro
Macro Title:
Redirect Macro
Macro Body Processing:
No macro body
Template:
## Macro title: Redirect Macro ## Body processing: N ## ## Developed by: Stephen Deutsch ## ## This macro redirects the user from the current page to a new page defined in the options. ## This macro more or less duplicates the functionality of the ServiceRocket Redirection Plugin ## Copyright 2014 zanox AG ## ## Licensed 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. ## @param location:title=Location|type=string|required=true|desc=The URL to redirect to ## @param delay:title=Delay|type=string|default=0|desc=The number of seconds to delay before redirecting the browser. #set ( $Integer = 0 ) #set ( $delay = "0" ) #set ( $delay = $paramdelay ) #set ( $delay = $Integer.parseInt($delay) * 1000 ) #if ( $req.getParameter('redirect') != "false" ) <script> setTimeout(function() { window.location = "$paramlocation"; }, $delay); </script> #end <ac:macro ac:name="note"> <ac:parameter ac:name="title">Redirection notice</ac:parameter> <ac:rich-text-body> <p>This page will redirect to <a href="$paramlocation">$paramlocation</a> in about $delay seconds.</p> </ac:rich-text-body> </ac:macro>
image2016-6-9 10:39:40.png
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ros, I solved it with a workaround.
I mark it as favorite on my browser. The address is https://<your_domain>.atlassian.net/wiki/spaces/viewspace.action?key=~<your_username>
Regards.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.