Skip to main content



      Home
Home » Newcomers » Newcomers » how can i...?
how can i...? [message #166578] Tue, 22 August 2006 02:01 Go to next message
Eclipse UserFriend
Originally posted by: joneo_ytk81.hotmail.com

hi,

i would to have something like when i open the eclipse, then it will
prompt the user to login to a system. After keying in the password and
username, it will prompt user to use the perspective that i created. so
how can i do all those things? can anyone guide me? thanks.
Re: how can i...? [message #166634 is a reply to message #166578] Tue, 22 August 2006 09:59 Go to previous messageGo to next message
Eclipse Webmaster is currently offline Eclipse WebmasterFriend
Messages: 607353
Registered: July 2009
Senior Member
If you want to have a multi-user Eclipse installation on Windows, set
the workspace on a server to match the user's home directory, such as
\\server\%USERNAME%\workspace.

User joe will map to \\server\joe\workspace, and jane to
\\server\jane\workspace. This will require you to create home
directories on \\server, and to (optionally) password protect them. Use
google to find information on how to user the %USERNAME% Windows
variable, as well as how to create user homes on Windows.

I haven't actually tried this on Windows, but I have set this up
similarly on Linux and it works great.

D.

joneo wrote:
> hi,
>
> i would to have something like when i open the eclipse, then it will
> prompt the user to login to a system. After keying in the password and
> username, it will prompt user to use the perspective that i created. so
> how can i do all those things? can anyone guide me? thanks.
>

--

Eclipse WebMaster - webmaster@eclipse.org
Questions? Consult the WebMaster FAQ at
http://wiki.eclipse.org/index.php/Webmaster_FAQ
View my status at http://wiki.eclipse.org/index.php/WebMaster
Re: how can i...? [message #166642 is a reply to message #166634] Tue, 22 August 2006 10:01 Go to previous messageGo to next message
Eclipse Webmaster is currently offline Eclipse WebmasterFriend
Messages: 607353
Registered: July 2009
Senior Member
This URL can also be good information for you:

http://help.eclipse.org/help32/index.jsp?topic=/org.eclipse. platform.doc.isv/reference/misc/multi_user_installs.html

D.

Eclipse WebMaster (Denis Roy) wrote:
> If you want to have a multi-user Eclipse installation on Windows, set
> the workspace on a server to match the user's home directory, such as
> \\server\%USERNAME%\workspace.
>
> User joe will map to \\server\joe\workspace, and jane to
> \\server\jane\workspace. This will require you to create home
> directories on \\server, and to (optionally) password protect them. Use
> google to find information on how to user the %USERNAME% Windows
> variable, as well as how to create user homes on Windows.
>
> I haven't actually tried this on Windows, but I have set this up
> similarly on Linux and it works great.
>
> D.
>
> joneo wrote:
>> hi,
>>
>> i would to have something like when i open the eclipse, then it will
>> prompt the user to login to a system. After keying in the password and
>> username, it will prompt user to use the perspective that i created.
>> so how can i do all those things? can anyone guide me? thanks.
>>
>

--

Eclipse WebMaster - webmaster@eclipse.org
Questions? Consult the WebMaster FAQ at
http://wiki.eclipse.org/index.php/Webmaster_FAQ
View my status at http://wiki.eclipse.org/index.php/WebMaster
Re: how can i...? [message #166844 is a reply to message #166642] Wed, 23 August 2006 03:39 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: joneo_ytk81.hotmail.com

no no...that's not what i'm asking. The thing is very easy. Let me tell
you the whole story is about.
1)i'm goin to create a plug-in which has the logging capability. i want
this logging screen to popup whenever user open the eclipse. so the very
first thing is user must login into a system. after that user will be
prompt to open the perspective come along with this plug-in. so i wonder
how can i do it?
2)the system that i wish to setup is a svn. how can i create an
account/authentication for user in svn through eclipse plug-in that i'm
going to create? anyone know is subclipse got kind of
features/capability/classes that i can extend/implements to do this kind
of things? if let say i would like to have a checkbutton to have the
feature to remember the password and signin name so where should i store
those info?
3)i tried to create action at the toolbar pull down menu and i've defined
quite a number of the actionset. so is it possible for me to just add
those actionset into the pulldown menu instead of doing it programaticly
through the IWorkbenchWindowPulldownDelegate2? if no then how would i just
add those ID of the actionset that i created into that pulldown menu?
Re: how can i...? [message #167252 is a reply to message #166844] Thu, 24 August 2006 22:49 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: joneo_ytk81.hotmail.com

anybody can help me on this?
Re: how can i...? [message #167591 is a reply to message #167252] Sun, 27 August 2006 18:41 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: eclipse4.rizzoweb.com

joneo wrote:
> anybody can help me on this?
>

On what?

Please try quoting the message you reply to.
Re: how can i...? [message #167605 is a reply to message #167591] Sun, 27 August 2006 19:49 Go to previous messageGo to next message
Eclipse UserFriend
Originally posted by: joneo_ytk81.hotmail.com

1)i'm goin to create a plug-in which has the logging capability. i want
this logging screen to popup whenever user open the eclipse. so the very
first thing is user must login into a system. after that user will be
prompt to open the perspective come along with this plug-in. so i wonder
how can i do it?


2)the system that i wish to setup is a svn. how can i create an
account/authentication for user in svn through eclipse plug-in that i'm
going to create? anyone know is subclipse got kind of
features/capability/classes that i can extend/implements to do this kind
of things? if let say i would like to have a checkbutton to have the
feature to remember the password and signin name so where should i store
those info?


3)i tried to create action at the toolbar pull down menu and i've defined
quite a number of the actionset. so is it possible for me to just add
those actionset into the pulldown menu instead of doing it programaticly
through the IWorkbenchWindowPulldownDelegate2? if no then how would i just
add those ID of the actionset that i created into that pulldown menu?


can anybody help me on the 3 problems that i faced above?
Re: how can i...? [message #168544 is a reply to message #167605] Wed, 30 August 2006 22:38 Go to previous message
Eclipse UserFriend
Originally posted by: eclipse4.rizzoweb.com

joneo wrote:
>
> 1)i'm goin to create a plug-in which has the logging capability. i want
> this logging screen to popup whenever user open the eclipse. so the very
> first thing is user must login into a system. after that user will be
> prompt to open the perspective come along with this plug-in. so i wonder
> how can i do it?
>
> 2)the system that i wish to setup is a svn. how can i create an
> account/authentication for user in svn through eclipse plug-in that i'm
> going to create? anyone know is subclipse got kind of
> features/capability/classes that i can extend/implements to do this kind
> of things? if let say i would like to have a checkbutton to have the
> feature to remember the password and signin name so where should i store
> those info?
>
>
> 3)i tried to create action at the toolbar pull down menu and i've
> defined quite a number of the actionset. so is it possible for me to
> just add those actionset into the pulldown menu instead of doing it
> programaticly through the IWorkbenchWindowPulldownDelegate2? if no then
> how would i just add those ID of the actionset that i created into that
> pulldown menu?
>
>
> can anybody help me on the 3 problems that i faced above?

I suggest posting your questions to the eclipse.platform newsgroup -
they are not rally "newcomer" type questions as they involve extending
Eclipse itself.
Also, I think Subclipse has its own forums or mailing lists on which you
should post questions relating to that product. And don't forget about
Subversive, which is becoming an official Eclipse.org project:
http://www.eclipse.org/proposals/subversive/

Hope this helps,
Eric
Previous Topic:"Open Project" unavailable
Next Topic:Eclipse Download
Goto Forum:
  


Current Time: Tue Jul 22 16:22:14 EDT 2025

Powered by FUDForum. Page generated in 0.08154 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top