|
Home > Archive > Microsoft Content Management Server > August 2006 > MCMS2001 and XP
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
|
|
| adb2303 2006-08-23, 7:28 am |
| Hi,
We've MCMS2001 SRP1+2 intalled on a WIN2K Advanced Server. Our company
intends to role out Windows XP to all the client workstations.
I'm looking for any support documentation on XP and MCMS2001 compatability.
I've seen several group postings stating that components of MCMS2001 aren't
supported when used with XP.
Thanks,
Andrew
| |
| Stefan [MSFT] 2006-08-23, 1:22 pm |
| Hi Andrew,
MCMS 2001 is only supported on Windows 2000.
MCMS 2001 is not supported and does not work properly on Windows XP.
There are no plans to support MCMS 2001 on Windows XP.
Only MCMS 2002 is supported on Windows XP.
Either keep your machines on Windows 2000 or upgrade to MCMS 2002.
Cheers,
Stefna
--
This posting is provided "AS IS" with no warranties, and confers no rights
"adb2303" <adb2303@discussions.microsoft.com> wrote in message
news:25C066C4-0906-4E9B-9E4F-2E532C4E6D49@microsoft.com...
> Hi,
> We've MCMS2001 SRP1+2 intalled on a WIN2K Advanced Server. Our company
> intends to role out Windows XP to all the client workstations.
>
> I'm looking for any support documentation on XP and MCMS2001
> compatability.
> I've seen several group postings stating that components of MCMS2001
> aren't
> supported when used with XP.
>
> Thanks,
> Andrew
| |
| kogilar@gmail.com 2006-08-23, 7:21 pm |
|
Stefan,
I came across your below code to replace the span tag in the
placeholder in render. But i don't know how to impement it. My problem
is remove the span tag in my rad editor placeholeder control.
-Thanks
mari
kogila@msn.com
From: Stefan [MSFT] - view profile
Date: Tues, Oct 21 2003 7:53 am
Email: "Stefan [MSFT]" <stef...@online.microsoft.com>
Groups: microsoft.public.cmserver.general
Not yet ratedRating:
show options
Reply | Reply to Author | Forward | Print | Individual Message | Show
original | Report Abuse | Find messages by this author
I see.
Ok to remove the SPAN tag you would need to override the
HtmlPlaceholderControl with a customer placeholder control.
Then you need to overload the Render method, consume the stream from
the
original render method and remove the SPAN tag.
Complicated?
Not really: The code needs to look similar to the following:
protected override void Render(System.Web.UI.HtmlTextWriter
output)
{
if ((WebAuthorContext.Current.Mode ==
WebAuthorContextMode.AuthoringReedit)
||(WebAuthorContext.Current.Mode ==
WebAuthorContextMode.AuthoringNew))
{
// catch the output of the original
HtmlPlaceholderControl
TextWriter tempWriter = new StringWriter();
base.Render(new
System.Web.UI.HtmlTextWriter(tempWriter));
string orightml= tempWriter.ToString();
// strip out the span tags here.
string newhtml =
YourRemoveSpanRoutine(orightml);
output.Write(newhtml);
}
else
{
base.Render(output);
}
}
Cheers,
Stefan.
| |
| Stefan [MSFT] 2006-08-24, 7:22 am |
| Hi,
you need to create a custom placeholder control, derive from the original
control and add this render method to the custom placeholder control.
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
<kogilar@gmail.com> wrote in message
news:1156358375.119525.294810@m73g2000cwd.googlegroups.com...
>
> Stefan,
>
> I came across your below code to replace the span tag in the
> placeholder in render. But i don't know how to impement it. My problem
> is remove the span tag in my rad editor placeholeder control.
>
>
> -Thanks
> mari
> kogila@msn.com
>
>
> From: Stefan [MSFT] - view profile
> Date: Tues, Oct 21 2003 7:53 am
> Email: "Stefan [MSFT]" <stef...@online.microsoft.com>
> Groups: microsoft.public.cmserver.general
> Not yet ratedRating:
> show options
> Reply | Reply to Author | Forward | Print | Individual Message | Show
> original | Report Abuse | Find messages by this author
>
>
> I see.
>
> Ok to remove the SPAN tag you would need to override the
> HtmlPlaceholderControl with a customer placeholder control.
> Then you need to overload the Render method, consume the stream from
> the
> original render method and remove the SPAN tag.
>
>
> Complicated?
> Not really: The code needs to look similar to the following:
>
>
> protected override void Render(System.Web.UI.HtmlTextWriter
>
> output)
> {
> if ((WebAuthorContext.Current.Mode ==
> WebAuthorContextMode.AuthoringReedit)
> ||(WebAuthorContext.Current.Mode ==
> WebAuthorContextMode.AuthoringNew))
> {
> // catch the output of the original
> HtmlPlaceholderControl
> TextWriter tempWriter = new StringWriter();
> base.Render(new
> System.Web.UI.HtmlTextWriter(tempWriter));
>
>
> string orightml= tempWriter.ToString();
>
>
> // strip out the span tags here.
> string newhtml =
> YourRemoveSpanRoutine(orightml);
>
>
> output.Write(newhtml);
> }
> else
> {
> base.Render(output);
> }
> }
>
>
> Cheers,
> Stefan.
>
| |
| SteveC 2006-08-28, 1:36 pm |
| We have this same configuration. Though our server is tied to Win2000 until
we upgrade to MCMS2002, our SiteBuilder and Web authoring clients are all
running on XP Professional. Note that because XP no longer includes the MS
VM, you must use the CMS 2001 Site Builder Refresh
http://www.microsoft.com/downloads/...displaylang=en.
-Steve
"Stefan [MSFT]" wrote:
> Hi Andrew,
>
> MCMS 2001 is only supported on Windows 2000.
> MCMS 2001 is not supported and does not work properly on Windows XP.
> There are no plans to support MCMS 2001 on Windows XP.
> Only MCMS 2002 is supported on Windows XP.
>
> Either keep your machines on Windows 2000 or upgrade to MCMS 2002.
>
> Cheers,
> Stefna
>
> --
> This posting is provided "AS IS" with no warranties, and confers no rights
>
>
> "adb2303" <adb2303@discussions.microsoft.com> wrote in message
> news:25C066C4-0906-4E9B-9E4F-2E532C4E6D49@microsoft.com...
>
>
>
| |
| Stefan [MSFT] 2006-08-29, 1:34 am |
| Be aware that this is not supported.
Cheers,
Stefan
--
This posting is provided "AS IS" with no warranties, and confers no rights
"SteveC" <SteveC@discussions.microsoft.com> wrote in message
news:2969AA4E-33C4-4C9B-B741-6A26B4E4BB98@microsoft.com...[vbcol=seagreen]
> We have this same configuration. Though our server is tied to Win2000
> until
> we upgrade to MCMS2002, our SiteBuilder and Web authoring clients are all
> running on XP Professional. Note that because XP no longer includes the
> MS
> VM, you must use the CMS 2001 Site Builder Refresh
> http://www.microsoft.com/downloads/...displaylang=en.
>
> -Steve
>
>
> "Stefan [MSFT]" wrote:
>
|
|
|
|
|