Code & Technology Cocktail
Packaged Solutions
3
Apr
Sometimes you want to discuss the sitecore tree with colleagues or the customer. The only way to achieve this is taking a screenshots but that does not give you the flexibility to change the structure or text in f.e. an e-mail conversation.
To solve this I wrote a small aspx page (code inspired by a blog post from Sean Kearney) to be able to copy paste the sitecore tree as rich text. (<ul> and <li> is used to achieve this)
How to us it?
Download 2text.zip Copy 2text.aspx in \Website\sitecore\admin\ Browse to http://yoursitecoresite/sitecore/admin/2text.aspx
Feel free to adapt it to your own wishes
12
Oct
useful if you need to generate a link to send to one of your editors.
The format of this link will be : http://Youthostname/sitecore/shell/Applications/Content Editor?id=%7b9822ABDF-F2B7-41BA-B56D-63E73BEB7E88%7d&vs=1&la=en&sc_content=master&fo=%7b9822ABDF-F2B7-41BA-B56D-63E73BEB7E88%7d&ic=People%2f16x16%2fcubes_blue.png&he=Content+Editor&cl=0
Where the parameters are:
- Id & fo: the ID of the target item
- vs: the version of the target item.
- la: the languageĀ of the target item
- sc_content: the database
useful of you need to open it from one of your xaml application :
UrlString str = new UrlString();
.Add("id", id);
str.Add("fo", id);
Windows.RunApplication("Content editor", str.ToString());
More sitecore tips on my blog: http://sitecoreblog.blogspot.com/
9
Aug
Here isĀ our first contribution to the Shared Source library.
http://trac.sitecore.net/ScheduledTaskUtils
This module allows you to run manually a sitecore scheduler. This is very useful especially when you try to debug a scheduler.
Here is a small screenshot
If you have some bug of improvement request, you can post a reply to this post.
Original post on: http://sitecoreblog.blogspot.com/2011/07/new-module-on-trac.html
31
May
17
Feb
You can add a site attribute to a website defined. Name it “enableWebEdit” and give a value “true” (because default it is false) It will look like: And it works!
More sitecore tips on http://sitecoreblog.blogspot.com/

