RE: [OzMOSS] Setting Library View Programmatically

2008-08-26 Thread Brian Farnhill
You can add any of the fields to a view based on their internal name. For 
example, the internal name of the field for the documents icon is DocIcon and 
the correct field to use for the title field with the edit menu is 
LinkFilename.

If you are unsure what the internal name of a field is that you want to use a 
view, you can try this - build the view in SharePoint and then go to the 
'modify this view' page. Then with the IE Dev Toolbar (or firebug if you are a 
fix fox user) select the check box for the field you need the internal name of. 
You will see that it has an onclick attribute that will look like this 
javascript:ShowHideTotals(this, 'LinkFilename'). The internal name for the 
field the checkbox corresponds to is the second parameter in the JavaScript 
function.

I hope that helps

Brian Farnhill
Consultant
Technical Consulting

Mobile:   0408 289 303
Fax:  02 8001 7778
Email:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]
Web: www.uniqueworld.nethttp://www.uniqueworld.net
Blog: pointstoshare.spaces.live.comhttp://pointstoshare.spaces.live.com/
[cid:image001.jpg@01C9081A.C5FA58E0]

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Witherdin, Nigel
Sent: Wednesday, 27 August 2008 2:16 AM
To: listserver@ozMOSS.com
Subject: RE: [OzMOSS] Setting Library View Programmatically

OK, I found a cheat of a way to do this, by cloning the All Documents view 
and removing/adding fields as I needed to.  But I would still be interested in 
knowing how to add these special fields programmatically if anyone knows?

Cheers,

Nigel Witherdin
Senior Support Analyst
Eversheds

Direct Dial: +44 (0) 84 549 754 17
Mobile: +44 (0) 7738 553256

www.eversheds.comhttp://www.eversheds.com/



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Witherdin, Nigel
Sent: 26 August 2008 16:49
To: listserver@ozMOSS.com
Subject: [OzMOSS] Setting Library View Programmatically
Hi All,

In a feature event receiver I am trying to create some views for a particular 
list as per this code:


//Ordered by Reference number
SPViewCollection views = spLibrary.Views;
StringCollection libViewFields = new StringCollection();

libViewFields.Add(File_x0020_Type);
libViewFields.Add(Reference_x0020_Number);
libViewFields.Add(Modified);
libViewFields.Add(Item_x0020_Author);
libViewFields.Add(Item_x0020_Title);
libViewFields.Add(FileLeafRef);
libViewFields.Add(Group1);

qry = OrderByFieldRef Name='Reference_x0020_Number' Ascending='True' 
//OrderBy;
libViews.Add(Ordered by Reference Number, libViewFields, qry, 100, true, 
false);

spLibrary.Update();


This is all working fine, but I would really like to add the File Type column 
so that it shows an icon for the file type, and the name (FileLeafRef) column 
so that it has the dropdown edit menu.  Anybody have any idea how to create 
these view fields programatically

Many thanks

Nigel Witherdin
Senior Support Analyst
Eversheds

Direct Dial: +44 (0) 84 549 754 17
Mobile: +44 (0) 7738 553256

www.eversheds.comhttp://www.eversheds.com

* This email is sent for and on behalf of Eversheds LLP *

This email is sent for and on behalf of Eversheds LLP which is a limited 
liability partnership, registered in England and Wales, registered number 
OC304065. Registered office One Wood Street, London, EC2V 7WS.  Registered VAT 
number GB820704559.  A list of the members' names and their professional 
qualifications is available for inspection at the above office. Regulated by 
the Solicitors Regulation Authority (see 
www.sra.org.ukhttp://www.sra.org.uk/).

Confidentiality: This email and its attachments are intended for the above 
named only and may be confidential. If they have come to you in error you must 
take no action based on them, nor must you copy or show them to anyone; please 
reply to this email and highlight the error.

* [ www.eversheds.comhttp://www.eversheds.com/ ] *
--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com
--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com



--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.

Powered by mailenable.com

inline: image001.jpg

RE: [OzMOSS] Setting Library View Programmatically

2008-08-26 Thread Jeremy Thake
You can also use tools such as SharePoint Inspector to spin through the API and 
find out these values.

http://www.codeplex.com/spi

Cheers,
Jeremy Thake
Readify | Senior Consultant

Perth | WA 6005 | Australia
M: +61 400 767 022 | E: [EMAIL PROTECTED] | W: www.readify.net | B: 
www.made4the.net

From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Brian Farnhill [EMAIL 
PROTECTED]
Sent: Wednesday, 27 August 2008 5:59 AM
To: listserver@ozMOSS.com
Subject: RE: [OzMOSS] Setting Library View Programmatically

You can add any of the fields to a view based on their internal name. For 
example, the internal name of the field for the documents icon is “DocIcon” and 
the correct field to use for the title field with the edit menu is 
“LinkFilename”.

If you are unsure what the internal name of a field is that you want to use a 
view, you can try this – build the view in SharePoint and then go to the 
‘modify this view’ page. Then with the IE Dev Toolbar (or firebug if you are a 
fix fox user) select the check box for the field you need the internal name of. 
You will see that it has an onclick attribute that will look like this 
“javascript:ShowHideTotals(this, 'LinkFilename')”. The internal name for the 
field the checkbox corresponds to is the second parameter in the JavaScript 
function.

I hope that helps

Brian Farnhill
Consultant
Technical Consulting

Mobile:   0408 289 303
Fax:  02 8001 7778
Email:[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]
Web: www.uniqueworld.nethttp://www.uniqueworld.net
Blog: pointstoshare.spaces.live.comhttp://pointstoshare.spaces.live.com/
[cid:image001.jpg@01C9081A.C5FA58E0]

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Witherdin, Nigel
Sent: Wednesday, 27 August 2008 2:16 AM
To: listserver@ozMOSS.com
Subject: RE: [OzMOSS] Setting Library View Programmatically

OK, I found a cheat of a way to do this, by cloning the All Documents view 
and removing/adding fields as I needed to.  But I would still be interested in 
knowing how to add these special fields programmatically if anyone knows?

Cheers,

Nigel Witherdin
Senior Support Analyst
Eversheds

Direct Dial: +44 (0) 84 549 754 17
Mobile: +44 (0) 7738 553256

www.eversheds.comhttp://www.eversheds.com/



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Witherdin, Nigel
Sent: 26 August 2008 16:49
To: listserver@ozMOSS.com
Subject: [OzMOSS] Setting Library View Programmatically
Hi All,

In a feature event receiver I am trying to create some views for a particular 
list as per this code:


//Ordered by Reference number
SPViewCollection views = spLibrary.Views;
StringCollection libViewFields = new StringCollection();

libViewFields.Add(File_x0020_Type);
libViewFields.Add(Reference_x0020_Number);
libViewFields.Add(Modified);
libViewFields.Add(Item_x0020_Author);
libViewFields.Add(Item_x0020_Title);
libViewFields.Add(FileLeafRef);
libViewFields.Add(Group1);

qry = OrderByFieldRef Name='Reference_x0020_Number' Ascending='True' 
//OrderBy;
libViews.Add(Ordered by Reference Number, libViewFields, qry, 100, true, 
false);

spLibrary.Update();


This is all working fine, but I would really like to add the File Type column 
so that it shows an icon for the file type, and the name (FileLeafRef) column 
so that it has the dropdown edit menu.  Anybody have any idea how to create 
these view fields programatically

Many thanks

Nigel Witherdin
Senior Support Analyst
Eversheds

Direct Dial: +44 (0) 84 549 754 17
Mobile: +44 (0) 7738 553256

www.eversheds.comhttp://www.eversheds.com

* This email is sent for and on behalf of Eversheds LLP *

This email is sent for and on behalf of Eversheds LLP which is a limited 
liability partnership, registered in England and Wales, registered number 
OC304065. Registered office One Wood Street, London, EC2V 7WS.  Registered VAT 
number GB820704559.  A list of the members' names and their professional 
qualifications is available for inspection at the above office. Regulated by 
the Solicitors Regulation Authority (see 
www.sra.org.ukhttp://www.sra.org.uk/).

Confidentiality: This email and its attachments are intended for the above 
named only and may be confidential. If they have come to you in error you must 
take no action based on them, nor must you copy or show them to anyone; please 
reply to this email and highlight the error.

* [ www.eversheds.comhttp://www.eversheds.com/ ] *
--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com
--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com

[OzMOSS] How to change the URL of a sharepoint site

2008-08-26 Thread Ann Ramos
Hi,

We have installed MOSS 2007 and created a site collection for a web app with 
the following URL:

w-0665/sites/intranet

We then changed the DNS of w-0665 to cdm.intranet.com.au.

To access the site, the users need to type cdm.intranet.com.au/sites/intranet.  
But the users are finding it confusing that they have to type the 
/sites/intranet.

Is there any way for us to rename the original URL when we created the site 
collection and get rid of the sites/intranet?

I created another web application on another server and I gave it a URL of 
s-syd-999.  I then restored the content database of the other site and attached 
it to this new web app that I created.  I noticed now that to access the 
application I need to type s-syd-999/sites/intranet.

Any ideas/thoughts would be greatly appreciated.

Regards,

Ann Ramos
Technical Specialist, Business Information Systems
Managed Services

T

+61 2 9286 2240

[cid:image003.jpg@01C90853.80CC24E0]

F

+61 2 9286 2200

M

+61 (0) 419 684 132

E

[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]

W

www.cdm.com.auhttp://www.cdm.com.au/


Communications, Design  Management Pty Limited
Level 23, 1 Oxford Street
NSW 2010, Darlinghurst

This communication, including any attachments, is confidential. If you are not 
the intended recipient, you should not read it - please contact me immediately, 
destroy it, and do not copy or use any part of this communication or disclose 
anything about it.


IMPORTANT NOTICE TO RECIPIENT

Computer viruses - It is your responsibility to scan this email and any 
attachments for viruses and defects and rely on those scans as Communications 
Design  Management Pty Limited (CDM) does not accept any liability for loss or 
damage arising from receipt or use of this email or any attachments.

Confidentiality - This email and any attachments are intended for the named 
recipient only and may contain personal information, be it confidential or 
subject to privilege, none of which are lost or waived because this email may 
have been sent to you in error. If you are not the named addressee please let 
CDM know by return email, permanently delete it from your system and destroy 
all copies and do not use or disclose the contents.

Copyright - This email is subject to copyright and no part of it maybe 
reproduced in any manner without the written permission of the copyright owner.

Privacy - Within the jurisdiction of Australian law, personal information in 
this email must be dealt with in compliance with the Australian Federal Privacy 
Act 1988.



--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.

Powered by mailenable.com

inline: image003.jpg

[OzMOSS] Moving the Sharepoint_Config Database to a new Server

2008-08-26 Thread Mark Leonard
I've just completed the exercise of moving the MOSS 2007 system
databases from one SQL Server to another.  I've struck the problem of
event id 3760 in the server application log, on the MOSS server, where
it's trying to locate the Sharepoint_Config database on the old
(original) server.  Web searches on this problem seem to suggest the
only fix for this is to hack the Objects table in the Sharepoint_Config
database and replace the details for the old database server entry with
those of the new database server. 

 

Has anyone else had this problem and had to go down this path or is
there another way?

_

Mark Leonard



 


__
This email has been scanned for Wollongong City Council by the MessageLabs 
Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.

Powered by mailenable.com



[OzMOSS] RE: Moving the Sharepoint_Config Database to a new Server

2008-08-26 Thread Jeremy Thake
You can simply use the stsadm -o renameserver command to change the database 
server name:

http://technet.microsoft.com/en-us/library/cc512723.aspx


Cheers,
Jeremy Thake
Readify | Senior Consultant

Perth | WA 6005 | Australia
M: +61 400 767 022 | E: [EMAIL PROTECTED] | W: www.readify.net | B: 
www.made4the.net

From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Mark Leonard [EMAIL 
PROTECTED]
Sent: Wednesday, 27 August 2008 1:10 PM
To: listserver@ozmoss.com
Subject: [OzMOSS] Moving the Sharepoint_Config Database to a new Server

I’ve just completed the exercise of moving the MOSS 2007 system databases from 
one SQL Server to another.  I’ve struck the problem of event id 3760 in the 
server application log, on the MOSS server, where it’s trying to locate the 
Sharepoint_Config database on the old (original) server.  Web searches on this 
problem seem to suggest the only fix for this is to hack the Objects table in 
the Sharepoint_Config database and replace the details for the old database 
server entry with those of the new database server.

Has anyone else had this problem and had to go down this path or is there 
another way?
_
Mark Leonard



__
This email has been scanned for Wollongong City Council by the MessageLabs 
Email Security System.
For more information please visit http://www.messagelabs.com/email
__
--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com


--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com




RE: [OzMOSS] Moving the Sharepoint_Config Database to a new Server

2008-08-26 Thread Daniel Brown
HI Mark,

 

Did you move the SharePoint_Config database?

 

This is a bad idea and is not recommended to do at al as it contains very
detailed machine/server details (server names, SID's, etc). 

 

Only Content databases should be moved between servers and the configuration
databases should be rebuilt from the SharePoint Wizard from scratch.

 

Cheers,

 

DB

 

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Mark Leonard
Sent: Wednesday, 27 August 2008 2:40 PM
To: listserver@ozmoss.com
Subject: [OzMOSS] Moving the Sharepoint_Config Database to a new Server

 

I've just completed the exercise of moving the MOSS 2007 system databases
from one SQL Server to another.  I've struck the problem of event id 3760 in
the server application log, on the MOSS server, where it's trying to locate
the Sharepoint_Config database on the old (original) server.  Web searches
on this problem seem to suggest the only fix for this is to hack the Objects
table in the Sharepoint_Config database and replace the details for the old
database server entry with those of the new database server. 

 

Has anyone else had this problem and had to go down this path or is there
another way?

_

Mark Leonard

 


__
This email has been scanned for Wollongong City Council by the MessageLabs
Email Security System.
For more information please visit http://www.messagelabs.com/email 
__

---
OzMOSS.com - to unsubscribe from this list, send a message back to the list
with 'unsubscribe' as the subject.
Powered by mailenable.com 




--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com


RE: [OzMOSS] RE: Moving the Sharepoint_Config Database to a new Server

2008-08-26 Thread Mark Leonard
I followed this article -
http://technet.microsoft.com/en-au/library/cc512725.aspx which includes
the stsadm -o renameserver command.  I guess I could try running the
command again and see if it works.

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf
Of Jeremy Thake
Sent: Wednesday, 27 August 2008 3:15
To: listserver@ozMOSS.com
Subject: [OzMOSS] RE: Moving the Sharepoint_Config Database to a new
Server

You can simply use the stsadm -o renameserver command to change the
database server name:

http://technet.microsoft.com/en-us/library/cc512723.aspx


Cheers,
Jeremy Thake
Readify | Senior Consultant

Perth | WA 6005 | Australia
M: +61 400 767 022 | E: [EMAIL PROTECTED] | W: www.readify.net |
B: www.made4the.net

From: [EMAIL PROTECTED] [EMAIL PROTECTED] On Behalf Of Mark
Leonard [EMAIL PROTECTED]
Sent: Wednesday, 27 August 2008 1:10 PM
To: listserver@ozmoss.com
Subject: [OzMOSS] Moving the Sharepoint_Config Database to a new Server

I've just completed the exercise of moving the MOSS 2007 system
databases from one SQL Server to another.  I've struck the problem of
event id 3760 in the server application log, on the MOSS server, where
it's trying to locate the Sharepoint_Config database on the old
(original) server.  Web searches on this problem seem to suggest the
only fix for this is to hack the Objects table in the Sharepoint_Config
database and replace the details for the old database server entry with
those of the new database server.

Has anyone else had this problem and had to go down this path or is
there another way?
_
Mark Leonard



__
This email has been scanned for Wollongong City Council by the
MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email
__
---
OzMOSS.com - to unsubscribe from this list, send a message back to the
list with 'unsubscribe' as the subject.
Powered by mailenable.com


---
OzMOSS.com - to unsubscribe from this list, send a message back to the
list with 'unsubscribe' as the subject.
Powered by mailenable.com





__
This email has been scanned for Wollongong City Council by the MessageLabs 
Email Security System.
For more information please visit http://www.messagelabs.com/email 
__


--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com




RE: [OzMOSS] How to change the URL of a sharepoint site

2008-08-26 Thread Robert Ilencik
Hi Jeffery,


Sorry, but we already tried this with no success. It still requires the 
/sites/intranet extension.

We are currently in the process of doing what Daniel Brown has suggested


Hi Ann,

Is there currently a site in the top level site collection of w-0665  or  
cdm.intranet.com.au? or a reason behind not using the top level site collection?

If not, you can move the site out of the /sites collection and to the top level 
site, this will cause /sites/intranet to no longer exist at that location, but 
it will exist at the top level site collection of w-0665 and 
cbm.intranet.com.au (if exposed/extra-netted to this address).

Happy to help. :)

Kind Regards,

Daniel Brown - SharePoint 
MVPhttps://mvp.support.microsoft.com/profile/Daniel.Brown
Blog: http://www.danielbrown.id.auhttp://www.danielbrown.id.au/
Mobile: 0419-804-099

ý Please consider your Environment before printing this email.
++


If this does not work, we'll then look at Jeremy Thake's suggestion:
=



You should be able to run a stsadm -o export at the /sites/intranet/ site level 
and then in the new server run a stsadm -o import, but import it at the site 
collection root level. I've never tried restore a Site to become the Root Site, 
but it should work.



Thanks,

Jeremy Thake

Readify | Senior Consultant



Perth | WA 6005 | Australia
M: +61 400 767 022 | E: [EMAIL PROTECTED]mailto:[EMAIL PROTECTED] | W: 
www.readify.nethttp://www.readify.net | B: 
www.made4the.nethttp://www.made4the.net

===


We will soon let know now what works.



Robert Ilencik
Senior Consultant
Technical Enablement Manager

T

[cid:image002.jpg@01C9085A.46E52130]+61 2 9286 2245



F

+61 2 9286 2200

M

+61 (0) 418 628 474

E

[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]

W

 www.cdm.com.auhttp://www.cdm.com.au/


Communications, Design  Management Pty Limited
Level 23, 1 Oxford Street NSW 2010, Darlinghurst

This communication, including any attachments, is confidential. If you are not 
the intended recipient, you should not read it - please contact me immediately, 
destroy it, and do not copy or use any part of this communication or disclose 
anything about it.



From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jeffery Tsui
Sent: Wednesday, 27 August 2008 3:16 PM
To: listserver@ozmoss.com
Subject: Re: [OzMOSS] How to change the URL of a sharepoint site

Hi,

Backup 
cdm.intranet.com.au/sites/intranethttp://cdm.intranet.com.au/sites/intranet 
and restore it to the root of s-syd-999 should fix your problem.

Cheers
Jeff
On Wed, Aug 27, 2008 at 2:45 PM, Ann Ramos [EMAIL PROTECTED]mailto:[EMAIL 
PROTECTED] wrote:

Hi,



We have installed MOSS 2007 and created a site collection for a web app with 
the following URL:



w-0665/sites/intranet



We then changed the DNS of w-0665 to 
cdm.intranet.com.auhttp://cdm.intranet.com.au.



To access the site, the users need to type 
cdm.intranet.com.au/sites/intranethttp://cdm.intranet.com.au/sites/intranet.  
But the users are finding it confusing that they have to type the 
/sites/intranet.



Is there any way for us to rename the original URL when we created the site 
collection and get rid of the sites/intranet?



I created another web application on another server and I gave it a URL of 
s-syd-999.  I then restored the content database of the other site and attached 
it to this new web app that I created.  I noticed now that to access the 
application I need to type s-syd-999/sites/intranet.



Any ideas/thoughts would be greatly appreciated.



Regards,



Ann Ramos
Technical Specialist, Business Information Systems

Managed Services



T


+61 2 9286 2240


Error! Filename not specified.


F


+61 2 9286 2200


M


+61 (0) 419 684 132


E


[EMAIL PROTECTED]mailto:[EMAIL PROTECTED]


W


www.cdm.com.auhttp://www.cdm.com.au/




Communications, Design  Management Pty Limited

Level 23, 1 Oxford Street

NSW 2010, Darlinghurst



This communication, including any attachments, is confidential. If you are not 
the intended recipient, you should not read it - please contact me immediately, 
destroy it, and do not copy or use any part of this communication or disclose 
anything about it.




IMPORTANT NOTICE TO RECIPIENT



Computer viruses - It is your responsibility to scan this email and any 
attachments for viruses and defects and rely on those scans as Communications 
Design  Management Pty Limited (CDM) does not accept any liability for loss or 
damage arising from receipt or use of this email or any attachments.



Confidentiality - This email and any attachments are intended for the named 
recipient only and may contain personal information, be it confidential or 
subject to privilege, none of which are lost or waived because this email may 
have been sent to you in error. If you are not 

RE: [OzMOSS] RE: How to change the URL of a sharepoint site

2008-08-26 Thread Paul Culmsee
In this case (site collection to site collection via export/import), it
should work as Jeremy suggests. But for the record, restoring a sub site to
a root site is problematic in subtle, nasty ways, but Gary Lapointe has an
STSADM custom extension to correct all errors

http://www.cleverworkarounds.com/2007/11/14/gary-lapointe-is-a-genius-and-ha
s-good-music-taste-too/


-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
Jeremy Thake
Sent: Wednesday, 27 August 2008 1:13 PM
To: listserver@ozMOSS.com
Subject: [OzMOSS] RE: How to change the URL of a sharepoint site

You should be able to run a stsadm -o export at the /sites/intranet/ site
level and then in the new server run a stsadm -o import, but import it at
the site collection root level. I've never tried restore a Site to become
the Root Site, but it should work.

Thanks,
Jeremy Thake
Readify | Senior Consultant

Perth | WA 6005 | Australia
M: +61 400 767 022 | E: [EMAIL PROTECTED] | W: www.readify.net | B:
www.made4the.net



--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com




[OzMOSS] Hide/show data form web part on Master page based on SharePoint or AD group

2008-08-26 Thread Paul Noone
Hi all,

 

We have a team site drop down list which we'd like to display on master
pages only to certain group(s) - I'd even settle for audience targeting
at this stage!

 

I've created a Links list and added an appropriately styled data form
web part to the master page but am not sure what to do next...

 

Could it be as simple as applying this solution:

 

http://www.sharepointblogs.com/gnarus/archive/2008/03/22/security-trimme
d-webparts.aspx

 

Or is there another simple wrapper I could use to achieve this?  

 

Kind regards,

Paul Noone
Online Developer, ICT
CEO Sydney

ph: (02) 9568 8461

fax: (02) 9568 8483
email: [EMAIL PROTECTED]
mailto:[EMAIL PROTECTED] 
web: http://www.ceo.syd.catholic.edu.au/
http://www.ceo.syd.catholic.edu.au/ 

 




This e-mail is intended for the use of the addressed recipient(s) only and may 
contain confidential and privileged information. If you have received this 
message in error, please delete the message and any attachments and copies 
immediately; and notify the sender by return e-mail.

Any views expressed in this message or any attachments are those of the 
individual sender and do not necessarily represent the corporate opinion of the 
Catholic Education Office (CEO), Sydney.

The CEO Privacy Policy is located at http://www.ceo.syd.catholic.edu.au




--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.

Powered by mailenable.com



Re: [OzMOSS] RE: How to change the URL of a sharepoint site

2008-08-26 Thread Jeffery Tsui
Are we trying to restore a sub site or site collection? If it's a site
collection then stsadm backup/restore should be the easy solution, otherwise
will have to use export/import as mentioned by Jeremy.

On Wed, Aug 27, 2008 at 3:39 PM, Paul Culmsee 
[EMAIL PROTECTED] wrote:

 In this case (site collection to site collection via export/import), it
 should work as Jeremy suggests. But for the record, restoring a sub site to
 a root site is problematic in subtle, nasty ways, but Gary Lapointe has an
 STSADM custom extension to correct all errors


 http://www.cleverworkarounds.com/2007/11/14/gary-lapointe-is-a-genius-and-ha
 s-good-music-taste-too/http://www.cleverworkarounds.com/2007/11/14/gary-lapointe-is-a-genius-and-has-good-music-taste-too/


 -Original Message-
 From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of
 Jeremy Thake
 Sent: Wednesday, 27 August 2008 1:13 PM
 To: listserver@ozMOSS.com
 Subject: [OzMOSS] RE: How to change the URL of a sharepoint site

 You should be able to run a stsadm -o export at the /sites/intranet/ site
 level and then in the new server run a stsadm -o import, but import it at
 the site collection root level. I've never tried restore a Site to become
 the Root Site, but it should work.

 Thanks,
 Jeremy Thake
 Readify | Senior Consultant

 Perth | WA 6005 | Australia
 M: +61 400 767 022 | E: [EMAIL PROTECTED] | W: www.readify.net | B:
 www.made4the.net
 


 ---
 OzMOSS.com - to unsubscribe from this list, send a message back to the list
 with 'unsubscribe' as the subject.
 Powered by mailenable.com






--- OzMOSS.com 
- to unsubscribe from this list, send a message back to the list with 
'unsubscribe' as the subject.
Powered by mailenable.com