active questions tagged feature - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T15:14:06Zhttp://stackoverflow.com/feeds/tag/featurehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1788848/deploy-web-part-as-a-feature0Deploy Web part as a featureSachin2009-11-24T09:11:18Z2009-11-24T13:37:46Z
<p>Hi all,</p>
<p>I have a web part dashboard.cs which render some HTML according to records in a list. No I have a site definition created. I want to integrate this web part in my site defination as a feature so when I Build my project with the help of install.bat i want to install this feature which will deploy this web part on respective site. Now when I go to site settings->site features This feature must have to be listed over there and once I install this feature my web part will be get populated when I swich my page in edit mode and click on add web part button.</p>
<p>Can anybody help me..?</p>
<p>Thanks in advance
Sachin</p>
http://stackoverflow.com/questions/1772178/create-a-list-url-links-and-deploy-it-as-a-feature0Create a List (url links) and deploy it as a featureAsh2009-11-20T17:48:56Z2009-11-20T18:52:21Z
<p>Hi All,</p>
<p>I'm very new to SharePoint, so apologies if this sounds a little basic.</p>
<p>I want to create a List in SharePoint that is just purely URL links, but then make it available to every site collection that we will create. </p>
<p>Once this list is created, I need it to display in a webpart (like that standard 'links' webpart). I guess I will need to create a Feature, so that it can be activated at Site Collection level. </p>
<p>Any ideas how this can be achieved please?</p>
<p>Thank you all kindly in advance, Ash ;-)</p>
http://stackoverflow.com/questions/1721353/how-are-wpf-and-silverlight-different0how are wpf and silverlight different?Anurag2009-11-12T10:37:01Z2009-11-12T16:41:05Z
<p>can anyone tell me what is the difference in wpf and silverlight, what features has been added and removed from wpf in order to get silverlight.</p>
http://stackoverflow.com/questions/1326864/is-there-a-overview-of-all-buckminster-commands-for-the-hudson-buckminster-plugin0Is there a overview of all buckminster commands for the hudson buckminster plugin?Max2009-08-25T08:35:24Z2009-11-12T06:00:02Z
<p>I am trying to set up a continous build of our PDE project using hudson + buckminster.</p>
<p>The problem i got is, i can't find any list/documentation of the available commands. I think it should be the headless buckminster commands, unfortunately i can't find them documented either. </p>
<p><b>Anybody got an overview of the available commands? Maybe we should use this question to collect them all? Thanks :) </b></p>
<p>(I am specially looking for resolving a query,the materialization of the workspace and invoking the p2 update site action)</p>
http://stackoverflow.com/questions/1702835/cannot-get-featurespec-structure-to-show-up-in-the-output-when-combined-with-juni0Cannot get FeatureSpec structure to show up in the output when combined with JUnitSuiteK S2009-11-09T18:28:34Z2009-11-11T00:07:09Z
<p>I am trying to use Scala's capabilty of running a class with either JUnit or ScalaTest. I took the example given for FeatureSpec and combined it with the example using JUnitSuite. I am having a problem generating the given/when/then output of Scalatest.FeatureSpec structure in the output (console) when combined with JUnitSuite. Any and all feedback would be greatly appreciated. Need to know if this is even possible. Thanks in advance. </p>
<p>code:</p>
<pre><code>import collection.mutable.Stack
import org.junit.Test
import org.scalatest.junit.JUnitSuite
import org.scalatest.matchers.MustMatchers
import org.scalatest.{GivenWhenThen, FeatureSpec}
class ExampleSpecTest extends FeatureSpec with JUnitSuite with GivenWhenThen with MustMatchers
{
@Test
def featureSpecExample() {
feature("The user can pop an element off the top of the stack") {
info("As a programmer")
info("I want to be able to pop items off the stack")
info("So that I can get them in last-in-first-out order")
scenario("pop is invoked on a non-empty stack") {
given("a non-empty stack")
val stack = new Stack[Int]
stack.push(1)
stack.push(2)
val oldSize = stack.size
when("when pop is invoked on the stack")
val result = stack.pop()
then("the most recently pushed element should be returned")
result must be === 2
and("the stack should have one less item than before")
stack.size must be === oldSize - 1
}
scenario("pop is invoked on an empty stack") {
given("an empty stack")
val emptyStack = new Stack[String]
when("when pop is invoked on the stack")
then("NoSuchElementException should be thrown")
evaluating { emptyStack.pop() } must produce [NoSuchElementException]
and("the stack should still be empty")
emptyStack must be ('empty)
}
}
}
}
</code></pre>
<p>when I run this version of ExampleSpecTest, I am getting the following output:</p>
<pre><code>Run starting. Expected test count is: 1
ExampleSpecTest:
Test Starting - ExampleSpecTest: featureSpecExample
Test Succeeded - ExampleSpecTest: featureSpecExample
Run completed in 255 milliseconds.
Total number of tests run: 1
Suites: completed 1, aborted 0
Tests: succeeded 1, failed 0, ignored 0, pending 0
All tests passed.
</code></pre>
<p>I am not getting any of the expected given/when/then output in the report</p>
<p>Expected:</p>
<pre><code>Run starting. Expected test count is: 1
ExampleSpecTest:
Test Starting - ExampleSpecTest: featureSpecExample
Feature: The user can pop an element off the top of the stack
As a programmer
I want to be able to pop items off the stack
So that I can get them in last-in-first-out order
Scenario: pop is invoked on a non-empty stack
Given a non-empty stack
When when pop is invoked on the stack
Then the most recently pushed element should be returned
And the stack should have one less item than before
Scenario: pop is invoked on an empty stack
Given an empty stack
When when pop is invoked on the stack
Then NoSuchElementException should be thrown
And the stack should still be empty
Test Succeeded - ExampleSpecTest: featureSpecExample Run completed in 96 milliseconds.
Total number of tests run: 2
Suites: completed 1, aborted 0
Tests: succeeded 1, failed 0, ignored 0, pending 0
All tests passed.
</code></pre>
http://stackoverflow.com/questions/714885/what-do-you-do-with-a-one-off-piece-of-data-that-needs-to-be-persisted0What do you do with a one-off piece of data that needs to be persisted?feydr2009-04-03T17:22:56Z2009-11-08T13:33:36Z
<p>Recently I've been requested to add on something for the administrator of a site where he can 'feature' something.</p>
<p>For this discussion let's say it's a 'featured article'.</p>
<p>So naturally we already have a database model of 'articles' and it has ~20 columns as it is so I really do not feel like bloating it anymore than it already is.</p>
<p>My options:</p>
<ol>
<li><p>Tack on a 'featured' bool (or int) and realize that only one thing will be featured at any given time</p></li>
<li><p>Create a new model to hold this and any other feature-creep items that might pop up.</p></li>
<li><p>I take your suggestions! ;)</p></li>
</ol>
<p>What do you guys do in this instance? I come across this every now and then and I just hate having to tack on one more column to something. This information DOES need to be persisted.</p>
http://stackoverflow.com/questions/1695503/feature-for-stackoverflow0Feature for Stackoverflow? [closed]Arrieta2009-11-08T05:45:15Z2009-11-08T05:46:37Z
<p>I would like to store the questions/answers I deem important and informative within my "portfolio" in Stackoverflow.</p>
<p>Imagine a Stackoverflow where you can quickly peek in your "portfolio" to recall that awesome collection of responses related to a given class of questions.</p>
<p>This should not be too complicated, just another entry in the database associated with my user.</p>
<p>Just a thought...</p>
<p>Adios</p>
http://stackoverflow.com/questions/1635498/best-practices-how-to-implement-an-invitation-system-in-zend-framework2Best practices: how to implement an invitation system in Zend Framework?Andrew2009-10-28T06:30:18Z2009-11-05T18:37:51Z
<p>I've built out most of the functionality, now I'm getting stuck...</p>
<p>I am creating a private, web application that has an invite only registration system. An admin user sends an email invitation to a user, the user clicks the link, and takes them to a page where they can create an account that has been linked to their email address.</p>
<p>When the form is submitted and does not have any validation errors, the data is inserted into the database for the first time. The email column of the invitations table is unique, so this is the token that the user needs in order to verify that they have permission to create an account.</p>
<p>The situation that I am confused about is when the admin user tries sending an invitation to the same email address. The email address column is unique so there is an SQL error. I don't know if I should do a check for that email address before inserting that record in the database, or what I should do.</p>
<p>I want to create a re-send invitation feature for emails that get lost, or accidentally deleted. Which is why I didn't want the admin user to be able to send a duplicate email to the same person, rather, they should use the re-send feature.</p>
<p>I hope this is all making sense. Any insights would be appreciated.</p>
http://stackoverflow.com/questions/1681439/sharepoint-one-feature-that-creates-more-than-one-content-type0Sharepoint - One feature that creates more than one content type?mrmuggles2009-11-05T15:52:24Z2009-11-05T15:57:50Z
<p>Is it possible to create more than just 1 content type with just one feature in Sharepoint?</p>
<p>I've a got a project where a couple of content types inherits from another one and I have 5 features just creating those content types.</p>
http://stackoverflow.com/questions/1668987/update-page-templates-with-new-site-columns-in-moss-publishing-site0update page templates with new site columns in MOSS publishing siteunknown (google)2009-11-03T17:43:05Z2009-11-04T09:57:27Z
<p>I have created a feature, a publishing site, in Visual Studio to MOSS - this feature contains a masterpage, some pages, some site columns (grouped to match each page) etc. I have also created a site collection, some sites and pages based on my template.</p>
<p>Now I need to update some of my page templates and make the changes affect the existing pages - if I change the HTML of the template and updates my feature the changes immediately gets visible on the pages. But if I add a new site column to my page template this does not show in new nor existing pages - but it does in new site collections and sites.</p>
<p>What can I do to get my existing pages updated with the new site columns?</p>
http://stackoverflow.com/questions/1622719/determine-at-runtime-if-windows-ce-operating-system-is-built-against-a-particular2Determine at runtime if Windows CE operating system is built against a particular processor type (eg. ARMV4/ARMV4I/ARMV4T)David Thornley2009-10-26T01:29:26Z2009-11-02T18:00:32Z
<p>Is there a way to determine if a Windows CE operating system is targeted against ARMV4 or ARMV4I or ARMV4T.</p>
<p>I am aware of the IsProcessorFeaturePresent() API call on coredll however as far as I can tell, it only allows you to determine the presence of the thumb instruction set. </p>
<p>What I really want to detect is if the O/S is built with interworking (the I in ARMV4I) - without making assumptions. Using PF_ARM_THUMB will not distinguish between ARMV4T and ARMV4I.</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1650093/creating-and-updating-site-columns-in-moss-publishing-site0Creating and updating site columns in MOSS publishing siteunknown (google)2009-10-30T14:24:26Z2009-10-31T02:27:37Z
<p>I have created a feature, a publishing site, in Visual Studio to MOSS - this feature contains a masterpage, some pages, some site columns etc. I have also created a site collection based on my template.</p>
<p>I have several times updated my mastepage and pages with succes. Now I want to update my site columns, adding some columns, but these changes does not appear in my site collection. If I delete my site collection and create a new the new one gets the correct site columns. What am I missing in my update?</p>
<p>I am using WSPBuilder to build and update my feature.</p>
http://stackoverflow.com/questions/1637698/deploy-a-feature-to-a-single-sharepoint-site-how-to-select-a-single-sharepoint1Deploy a feature to a single sharepoint site / How to select a single sharepoint siteNathan2009-10-28T14:40:07Z2009-10-29T08:51:58Z
<p>I'm trying to deploy a selection of features and to do this I need to select the target site and then use:</p>
<p>objWeb.Features.Add(new Guid({guid of feature}));</p>
<p>my question is how would I select this site, all the help i've found creates the site using its constructor and then keeps track of it, where as I want to open an existing one.</p>
<p>Thank you.</p>
http://stackoverflow.com/questions/1627756/adding-web-page-to-blank-sharepoint-site-definition1Adding web page to blank sharepoint site definitionDL2009-10-26T22:40:17Z2009-10-27T05:35:04Z
<p>I am totally new to Sharepoint (2007) so please bear with me. I would like to automatically create aspx pages when a new site is created. These pages will be linked to through tabs which will be defined by a master page. I do not have a custom site definition and was planning to apply feature stapling to the out of the box blank site definition. </p>
<p>Through my research, I think you can create a web part page and turn this into a feature. I can then staple this to the blank site definition. The problem is I haven't found any information on how to do this. So the two questions I have are:</p>
<ol>
<li>How do I create a feature that is just an aspx page?</li>
<li>How do I staple this feature to a blank site definition?</li>
</ol>
<p>I found one person asking the same question here: <a href="http://stackoverflow.com/questions/234302/how-to-add-a-web-part-page-to-a-site-definition">http://stackoverflow.com/questions/234302/how-to-add-a-web-part-page-to-a-site-definition</a>
I read the first response but it sort of goes over my head and I don't know if it really answers my question.</p>
<p>Thanks so much!</p>
http://stackoverflow.com/questions/86562/what-is-missing-in-the-visual-studio-express-editions40What is "missing" in the Visual Studio Express Editions?benefactual2008-09-17T19:15:41Z2009-10-16T19:35:18Z
<p>In particular,</p>
<ul>
<li>what functionality is not available?</li>
<li>what restrictions are there on its use?</li>
</ul>
http://stackoverflow.com/questions/1554564/web-application-feature-not-activated-by-default2Web Application Feature Not Activated By DefaultRepo Man2009-10-12T13:23:46Z2009-10-12T15:55:38Z
<p>All that I'm trying to do is deploy a simple web application-scoped feature that is activated automatically when you install it. Just to make sure that none of our corporate customizations were doing anything weird I even created a simple test web application feature and built it with WSP builder, but I still get the same results - the feature installs fine but is NOT activated by default. I've also set "AutoActivateInCentralAdmin" to true but it does nothing. Is this something that can even be done or am I wasting my time? Here is my feature XML:</p>
<pre><code><?xml version="1.0" encoding="utf-8" ?>
<Feature Id="21003D96-D88E-42ed-AF97-2C4C22BFA3CF"
Title="Test Web Application Feature"
Description="I should be activated by default."
Version="1.0.0.0"
Scope="WebApplication"
Hidden="false"
xmlns="http://schemas.microsoft.com/sharepoint/"
ActivateOnDefault="true"
AutoActivateInCentralAdmin="true"
AlwaysForceInstall="true">
</Feature>
</code></pre>
http://stackoverflow.com/questions/1151916/improvements-on-stackoverflow-frontend-user-experience0Improvements on StackOverflow frontend & user experience. [closed]kuroir2009-07-20T06:01:44Z2009-10-10T22:19:15Z
<h1>My idea</h1>
<p>I'm a new user to stackoverflow and I'm loving the usage of tags to filter questions. This feature is really good because of the huge amount of information the users post dialy, however I've found out that is somewhat tedious to filter each tag I don't want to see. </p>
<p>I mean taking into consideration the fact that SO has around <strong>24.150 tags and 227,182 questions</strong> it's just A LOT of information.</p>
<p>So how about instead of having to write the tags on the sidebar or the user profile we add small icons to the tags?</p>
<p>This would allow faster navigation and make it a lot simpler for users to understand and use SO. Allowing faster filtering and navigation to improve the user experience.</p>
<p>Here's a little example of what I'm talking about:</p>
<p><img src="http://img204.imageshack.us/img204/9213/60195753.jpg" alt="alt text" /></p>
<p>This way you can filter everything way faster than using the sidebar, thus improving the user experience and allowing the users to focus on the information they really need.</p>
<p><strong>So what do you think of this idea?</strong></p>
http://stackoverflow.com/questions/1532138/what-are-the-implications-of-deleting-a-user-account3What are the implications of deleting a user account?Oscar Reyes2009-10-07T14:50:56Z2009-10-08T09:31:04Z
<p>Most of the websites I've used in the past (including this one) do not offer an option to delete your own account.</p>
<p>I think the main reason is to avoid the orphanage of the items created (or the delete on cascade of those items).</p>
<p>Modern sites (like this one) have a place where those items go when an account is abandoned (in the case of SO it is the user "<a href="http://stackoverflow.com/users/-1/community">Community</a>").</p>
<p>What is, in your opinion, the rationale of not providing a "delete my account" feature?</p>
<p>Security? Laziness? Ignorance? Bug? Or feature?</p>
<p>We are designing a small web app, and we are discussing precisely this topic. We can't find too many reasons though for not allowing the user to delete the account.</p>
http://stackoverflow.com/questions/129655/survey-how-do-you-define-the-term-bug7Survey: How do you define the term "bug"?cori2008-09-24T20:18:30Z2009-09-26T10:04:44Z
<p>We've probably all heard the programming cliché "That's not a bug; that's a feature." I know my question may seem off-topic, but I think it's an interesting question nonetheless.</p>
<p>I'm just getting caught up on the Stackoverflow podcast, and in <a href="http://itc.conversationsnetwork.org/audio/download/ITC.SO-Episode21-2008.09.09.mp3" rel="nofollow">Episode 21</a> (at around 27:20, (transcript <a href="https://stackoverflow.fogbugz.com/default.asp?W24224" rel="nofollow">here</a>) Jeff talks about the developer who wrote the scoring code for Rock Band and how there were ways to score that he didn't even understand. I found that very interesting, and it brought to my mind the question:
"Is that a bug, or a hidden feature?"
Given that no one will ever write bug free software (or so I believe), my question here is </p>
<p><strong><em>How do you define the term "bug"?</em></strong></p>
<p>Is it any time an application does something you didn't expect? Must it be catastrohpic? Something else entirely?</p>
http://stackoverflow.com/questions/1440685/subtle-distinctive-features-of-available-cmses0Subtle distinctive features of available CMSesOrangeRind2009-09-17T18:54:21Z2009-09-17T22:25:51Z
<p>I know this question would have run across in the minds a lot of people till now, but let me rephrase it according to my doubts.<br/>
<strong>Amongst some of the more popularly known CMS, what are some of the most distinctive features that make you use a particular one?</strong><br/><br/>
Factors that you can consider are</p>
<ol>
<li>Flexibility (The degrees of websites that can be made Out of the Box)</li>
<li>Ease of Use and Reliability (Wordpress can perhaps win here. You get the cue?)</li>
<li>Extensibility (Availability of plugins and addons - much like Joomla's playground here)</li>
<li>Extensibility ease (How easy is the API to learn. SilverStripe probably sucks at this with its not so learner friendly framework. (e.g jQuery scores high here although not a CMS :D)</li>
<li>Code Quality (can get a little subjective here)</li>
<li>Support and documentation (easy to learn and develop along)</li>
<li>Any other rather distinctive feature!</li>
</ol>
<p>Please be descriptive as this will help me choose a particular CMS for my website!<br/>
<strong><em>The Objectives of my Site:</em></strong></p>
<ol>
<li>Something like <a href="http://in.com/" rel="nofollow">in.com</a> ( like a site having pretty much everything )</li>
<li>Mainly needed for my Institute and its related events (dynamic user content generation and Delivery)</li>
</ol>
http://stackoverflow.com/questions/1417739/create-sharepoint-list-and-fields-in-feature1Create SharePoint list and fields in feature78lro2009-09-13T13:25:52Z2009-09-13T21:02:27Z
<p>How can I create a new list via a feature in MOSS and also include new fields in that list?</p>
<p>I am currently using a node to create the list but I want some new fields in addition to the title field that appears with a new custom list.</p>
http://stackoverflow.com/questions/1245086/only-one-web-part-added-to-the-wp-gallery-when-multiple-webpart-files-specified-i1Only one web part added to the wp gallery when multiple webpart files specified in moduleMichhes2009-08-07T14:35:16Z2009-09-04T20:00:04Z
<p>I'm trying to deploy multiple web parts as part of the same feature. SharePoint itself seems to do this quite happily by specifying multiple File elements in a single Module element (see C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\TEMPLATE\FEATURES\SearchWebParts); in my case, only the first web part is added to the Web Parts gallery, albeit to the Miscellaneous group instead of the group specified in the Property element. </p>
<pre><code><Elements xmlns="http://schemas.microsoft.com/sharepoint/">
<Module Name="WebPartPopulation" Url="_catalogs/wp" Path="WebParts">
<File Url="Test1.webpart" Type="GhostableInLibrary">
<Property Name="Group" Value="MyGroup" />
</File>
<File Url="Test2.webpart" Type="GhostableInLibrary">
<Property Name="Group" Value="Mygroup" />
</File>
</Module>
</Elements>
</code></pre>
<p>My .webpart files are located in the same directory as the elements file; I tried setting Path="" on the Elements element but nothing gets deployed then. Switching around the two File elements deploys Test2.webpart instead of Test1 and Test1.webpart is not added on feature activation. Adding a single File per Module does work but that means duplicating the Module elements. </p>
<p>I'm self-closing the Property elements but that's surely not a sin?? What am I doing wrong?</p>
http://stackoverflow.com/questions/584285/detecting-ie6-using-jquery-support3Detecting IE6 using jQuery.supportJaime2009-02-25T00:30:33Z2009-08-14T13:09:42Z
<p>Anyone have any ideas on how to test for something specific for IE6 (and not IE7) using jquery.support?</p>
<p>My problem is that IE6 supports :hover psuedo-class only for anchor elements and IE7 does support it for all elements (as FF, Chrome, etc). So I want to do something special in case the browser does not support :hover for all elements... thus I need a way to test for this feature. (don't want to use jQuery.browser). Any ideas?</p>
http://stackoverflow.com/questions/1260943/refresh-sharepoint-site-column-definition-on-lists-that-use-it2"Refresh" SharePoint site column definition on lists that use it?Jim2009-08-11T15:03:22Z2009-08-12T11:49:00Z
<p>We deployed a feature that installs a custom site column named "Classification." It is a Choice column type. Now, we need to change the choices. We can update the XML in the feature easily enough, but it doesn't affect any of the lists already used the existing site column; they still see the old choices.</p>
<p>Is there any way to send a refresh signal or something to the lists that use our Classification site column feature to have those lists use the updated choices?</p>
http://stackoverflow.com/questions/1216852/can-a-sharepoint-lookup-field-be-pointed-to-anything-other-than-a-text-field0Can a SharePoint lookup field be pointed to anything other than a text field?Michhes2009-08-01T15:43:43Z2009-08-01T15:43:43Z
<p>A lookup field declared in a feature and using the ShowField attribute to point to a numeric column in the target list (Type="Number") doesn't persist the user's selection. Changing the target field to Type="Text" and everything works fine. </p>
<p>Are there any known limitations to the types of fields a lookup field can be pointed at? </p>
http://stackoverflow.com/questions/101294/building-a-new-operating-system17Building a new operating systemAutobyte2008-09-19T11:57:05Z2009-07-29T21:36:07Z
<p>I am toying with the idea of creating an completely new operating system and would like to hear what everyone on this forums take is on that? First is it too late are the big boys so entrenched in our lives that we will never be able to switch (wow - what a terrible thought...). But if this is not the case, what should a operating system do for you? What features are the most important? Should all the components be separate installations (in other words - should the base OS really have no user functionality and that gets added on by creating "plug-ins" kind of like a good flexible tool?)</p>
<p>Why do I want to do this... I am more curious about whether there is a demand and I am wondering, since the OSes we use most today (Linux, Windows, Mac OS X (Free BSD)) were actually written more than 20 years ago (and I am being generous - I mean dual and quad cores did not exist back then, buses were much slower, hardware was much more expensive, etc,...), I was just curious with the new technology if we would do anything differently?</p>
<p>I am anxious to read your comments.</p>
http://stackoverflow.com/questions/1158565/how-to-use-conditions-in-features-in-wix3How to use conditions in features in WiX?Tamara2009-07-21T11:12:27Z2009-07-21T15:16:46Z
<p>Hello,</p>
<p>I am trying to make simple windows intaller and I don't know how to deal with this.
I have two features - feature1 and feature2. I want feature2 to be installed only if the user selected feature1 to be installed. So I tried:</p>
<pre><code><Feature Id='core' Title='Core' Description='ØMQ 1.0.0 core functionality and C++ API' Level='1'>
<ComponentRef Id='Core_include' />
<ComponentRef Id='Core_bin' />
<ComponentRef Id='Core_lib' />
<ComponentRef Id='Core_zmq' />
<ComponentRef Id='cpp_bin' />
</Feature>
<Feature Id='core_perf' Title='core_perf' Description='0MQ core perf' Level='999'>
<Condition Level="0">NOT (&amp;core = "3")</Condition>
<ComponentRef Id='cpp_perf' />
</Feature>
</code></pre>
<p>But this doesn't install feature core_perf if the user selects feature core.</p>
<p>Can anyone give me a help with this?
Thanx</p>
http://stackoverflow.com/questions/1109205/is-there-a-php-package-i-can-plugin-to-manage-program-requests0Is there a php package I can plugin to manage program requests?cosmicbdog2009-07-10T12:19:57Z2009-07-10T12:22:34Z
<p>Hi everybody,</p>
<p>I'm just wondering what do you use for managing visitor requests on your website?</p>
<p>Basically, I'm wanting people who use my program to be able to ask for requests, or submit a bug and for people to be able to see those things and vote them up in priority. </p>
<p>ideally this program is lightweight... I've come across programs like The Trac (<a href="http://trac.edgewall.org/" rel="nofollow">http://trac.edgewall.org/</a>) which looks amazing, but its more complex then I need this to be. </p>
<p>In my travels, I have seen Get Satisfaction (<a href="http://getsatisfaction.com/" rel="nofollow">http://getsatisfaction.com/</a>) which looks perfect and seems to have all the functionality one could desire for a plugin - but for $99 a month I'm erring on the side of not using that. </p>
<p>What do you use? Is there something available out there just as good and simple as get satisfaction without the monthly price tag?</p>
<p>Thanks for any ideas!</p>
http://stackoverflow.com/questions/210974/what-are-your-must-have-editor-features9What are your must-have editor features?Pistos2008-10-17T02:59:38Z2009-07-07T15:34:02Z
<p>What are the 3 killer features of your favourite text editor that you couldn't live without; the features that keep you loyal to your editor, no matter how good other people say other editors are?</p>
<p>EDIT: Sorry for what appeared to be a dishonest, or karma whore question. I honestly didn't mean it that way. I have turned it into a community/wiki question.</p>
<p>Later EDIT: FWIW (to help soothe irritated nerves), I'm not asking this for pointless discussion. I am the author of a text editor, so I am trying to tap my target audience so I can direct my development efforts in the right directions to please more users. People very often say "editor XYZ rulez!" without saying why; I want to know the why.</p>
http://stackoverflow.com/questions/519662/how-to-upload-a-publishing-page-using-features0How to upload a publishing page using features?jaloplo2009-02-06T09:24:27Z2009-06-11T07:52:25Z
<p>Hi,</p>
<p>I'm trying to make a feature to upload a new publishing page in "Pages" library but it doesn't works the way I want. If I see the library using SharePoint Designer my publishing page appears, but it doesn't if I use Internet Explorer.</p>
<p>In the feature I configure the properties: ContentTypeId, ContentTye, Author, Title, FileRef, FileDirRef, FileLeafRef, FileType, LinkFilenameNoMenu, LinkFilename and DocIcon. In previous features, I faced the same problem and it was solved putting the ContentTypeId property. In this case, I don't know exactly where is the error.</p>