User Jonathan Schuster - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T07:38:21Z http://stackoverflow.com/feeds/user/21957 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/940435/changing-active-content-security-settings-on-wpf-webbrowser-control 1 Changing "active content" security settings on WPF WebBrowser control Jonathan Schuster 2009-06-02T16:17:12Z 2009-12-01T13:00:02Z <p>I'm putting together a WPF application that will allow users to view PowerPoint files through the WebBrowser control, once the files have been saved as either .MHT or .HTML. The problem is that the files contain ActiveX controls, and the WebBrowser control by default will display a warning every time I load these files, saying "To help protect your security, your web browser has restricted this file from showing active content that could access your computer."</p> <p>I've seen a few different places online talk about putting <a href="http://msdn.microsoft.com/en-us/library/ms537628%28VS.85%29.aspx" rel="nofollow">the mark of the web</a> into each page, but that really doesn't work for me in this case, since the content authors have control over the files, not the developers, and I'd rather not tell them that they have to open every single file in Notepad and add the mark of the web to each one.</p> <p>Is there any way to just change the WebBrowser control's settings to not display that warning message? IE has a similar setting, but it doesn't carry over into this control.</p> http://stackoverflow.com/questions/1792958/whats-the-purpose-of-claims-based-authorization 0 What's the purpose of claims-based authorization? Jonathan Schuster 2009-11-24T21:13:42Z 2009-11-24T22:06:58Z <p>I've been reading about Azure's Access Control Service and claims-based authorization in general for a while now, and for whatever reason, I still don't see the rationale behind moving from role/permission-based authorization to a claims-based model. The models seem similar to me (and they probably are), except that the list of what the client can and can't do comes from a third party and is wrapped up in some sort of token, instead of from some sort of database that the server has to query. What's the advantage of getting a third party (the token issuer) involved?</p> <p>I fully understand the advantages of outsourcing authentication to a third party. It allows apps to not have to create new users all the time, worry about storing passwords, etc. when they can just push that off to some other service that already has the infrastructure set up. It's essentially the DRY principle for authentication. </p> <p>However, in my mind, that same logic doesn't work for authorization. Each app has its own resources it has to protect, and therefore its own rules for authorizing users to perform certain actions. The infrastructure seems simple enough that each app could create it on its own (a table mapping users to roles, and possibly another mapping roles to permissions), and even if you wanted to outsource it, it seems that the claims-based model is doing something more complicated than that.</p> <p>The only partial explanation I've seen comes from <a href="http://www.theserverside.net/tt/articles/showarticle.tss?id=ClaimsBasedSecurityModel" rel="nofollow">Building a Claims-Based Security Model in WCF</a>, and it gives two main advantages to claims-based auth: more flexibility, and someone to "vouch" that the information in a claim is correct. When would you need either of those?</p> <p>Claims-based authorization seems to be gaining popularity, so I assume there must be some good rationale for it; I just haven't figured out what that is yet. Can someone please provide a concrete example of a situation where claims-based auth works better than role-based, and why it works better in that case?</p> <p>(EDIT: I missed a third benefit listed in the article: supporting single sign-on/federation. But doesn't authentication deal with that on its own without getting authorization involved?)</p> http://stackoverflow.com/questions/415434/can-automated-unit-testing-replace-static-type-checking 3 Can automated unit testing replace static type checking? Jonathan Schuster 2009-01-06T04:12:30Z 2009-11-13T06:46:16Z <p>I've started to look into the whole unit testing/test-driven development idea, and the more I think about it, the more it seems to fill a similar role to static type checking. Both techniques provide a compile-time, rapid-response check for certain kinds of errors in your program. However, correct me if I'm wrong, but it seems that a unit test suite with full coverage would test everything static type checking would test, and then some. Or phrased another way, static type checks only go part of the way to "prove" that your program is correct, whereas unit tests will let you "prove" as much as you want (to a certain extent).</p> <p>So, is there any reason to use a language with static type checking if you're using unit testing as well? A somewhat similar question was asked <a href="http://stackoverflow.com/questions/236407/python-for-large-scale-development">here</a>, but I'd like to get into more detail. What specific advantages, if any, does static type checking have over unit tests? A few issues like compiler optimizations and intellisense come to mind, but are there other solutions for those problems? Are there other advantages/disadvantages I haven't thought of?</p> http://stackoverflow.com/questions/1359236/wpf-3-d-performance-for-head-tracking-app 3 WPF 3-D performance for head-tracking app Jonathan Schuster 2009-08-31T20:22:12Z 2009-09-02T13:09:49Z <p>I’m working on creating a full-screen 3-D app (based on <a href="http://www.youtube.com/watch?v=Jd3-eiid-Uw" rel="nofollow">Johnny Lee's Wii head tracking app</a>) with some augmented reality features, and it seems that WPF is too slow to render even the simple models I’m using at a reasonable frame rate. I think the problem is that I need to change both the view and projection of the camera on just about every frame, because of the nature of the app (it uses a web cam to track your face, and uses that data to move the camera around and change its perspective).</p> <p>I've spent a lot of time trying to narrow down the problem, and it's definitely related to the graphics, and not the speed of the head-tracking API that I'm using. Also, I recreated the app in XNA, and it seems to work fine there (28 FPS versus 9 in WPF). Finally, when I remove the "walls" or make the window much smaller (say, 800 x 600), WPF's performance greatly improves, which makes me think that the bottleneck is the graphics calculations.</p> <p>As a result, I need to either find a new graphics back-end to work with, or find a way to make WPF much faster for this app. I’m mostly looking at DirectX and XNA, and possibly OpenGL. Any recommendations on which of these APIs would be best to use for this app in .NET? Or alternatively, any idea what I'm doing wrong in WPF that's slowing things down? </p> http://stackoverflow.com/questions/1308395/how-do-you-create-an-off-center-perspectivecamera-in-wpf 1 How do you create an off-center PerspectiveCamera in WPF? Jonathan Schuster 2009-08-20T19:43:50Z 2009-08-24T18:45:21Z <p>I'm trying to more or less recreate <a href="http://johnnylee.net/projects/wii/" rel="nofollow">Johnny Lee's Wii head tracking app</a>, but using an augmented reality toolkit for the tracking, and WPF for graphics. To do this, I need to create a perspective camera using the top, bottom, right, and left parameters to create my viewing frustum, instead of field of view and aspect ratio (to those familiar with OpenGL, I want to use the WPF equivalent of glFrustum instead of gluPerspective)</p> <p>The problem is, those options don't seem to be available on WPF's PerspectiveCamera class. I could probably create the projection matrix manually if I had to and use MatrixCamera, but I'd like to avoid that. Does anyone know of a better way to do this?</p> http://stackoverflow.com/questions/1308395/how-do-you-create-an-off-center-perspectivecamera-in-wpf/1324043#1324043 0 Answer by Jonathan Schuster for How do you create an off-center PerspectiveCamera in WPF? Jonathan Schuster 2009-08-24T18:45:21Z 2009-08-24T18:45:21Z <p>I never did find a built-in way to do this, so I wrote my own. <a href="http://www.opengl.org/sdk/docs/man/xhtml/glFrustum.xml" rel="nofollow">The math behind it can be found in the OpenGL glFrustum docs</a>. If anyone else ever runs into this problem, this should work for you:</p> <pre><code>public Matrix3D CreateFrustumMatrix(double left, double right, double bottom, double top, double near, double far) { var a = (right + left) / (right - left); var b = (top + bottom) / (top - bottom); var c = -(far + near) / (far - near); var d = -2 * far * near / (far - near); return new Matrix3D( 2 * near / (right - left), 0, 0, 0, 0, 2 * near / (top - bottom), 0, 0, a, b, c, -1, 0, 0, d, 0); } </code></pre> <p>Just set MatrixCamera.ProjectionMatrix to the return value of that method, and you're all set.</p> http://stackoverflow.com/questions/1151873/are-reads-and-writes-to-properties-atomic-in-c/1151898#1151898 0 Answer by Jonathan Schuster for Are reads and writes to properties atomic in C#? Jonathan Schuster 2009-07-20T05:53:59Z 2009-07-20T05:53:59Z <p>I would think not. Properties are essentially just methods with a bit of syntactic sugar on them to make them a little easier to work with. So by default they're no more thread-safe than a normal method call (which is to say, not thread-safe at all).</p> http://stackoverflow.com/questions/632290/web-based-resx-file-editor 2 Web-based .resx file editor? Jonathan Schuster 2009-03-10T21:10:35Z 2009-07-08T21:30:22Z <p>I'm working on a SharePoint site, and the site eventually needs to be localized to many different languages. We can use resource files, but we'd like for the translators to be able to update those files while the site is live, without requiring developer assistance to recompile, redeploy, etc.</p> <p>To me, I think the easiest way to do this would be to provide a web application to edit the .resx files as they sit in the App_GlobalResources directory. Does anyone know of some sort of a web-based .resx editor like that? I found one <a href="http://blog.lavablast.com/post/2008/02/RESX-file-Web-Editor.aspx" rel="nofollow">here</a>, but it displays the values for all languages at once. With the number of languages we plan on having, I think that would eventually get unwieldy.</p> <p>Any suggestions are appreciated.</p> http://stackoverflow.com/questions/940435/changing-active-content-security-settings-on-wpf-webbrowser-control/956152#956152 0 Answer by Jonathan Schuster for Changing "active content" security settings on WPF WebBrowser control Jonathan Schuster 2009-06-05T14:27:47Z 2009-06-05T14:27:47Z <p>We eventually found a decent solution to this, although I still wish there were some sort of settings on the control itself. To load the documents, we just set browser.Source to be the following:</p> <p>file://127.0.0.1/c$/path/to/the/file (where the path is an absolute path without C:\, for example, c$/Users/jschuster/mydocument.html)</p> <p>For whatever reason, the control will display files referenced by a URL in that format without a warning.</p> http://stackoverflow.com/questions/899380/programmatically-creating-list-from-checkoutstepstemplate-throws-exception 0 Programmatically creating list from CheckoutStepsTemplate throws exception Jonathan Schuster 2009-05-22T18:44:15Z 2009-05-26T17:48:51Z <p>(This question has been cross-posted on the MSDN forums <a href="http://social.msdn.microsoft.com/Forums/en-US/commserver2007/thread/e85820a0-1436-4926-8b07-ad5f008ea884" rel="nofollow">here</a>.)</p> <p>I'm working on a custom SharePoint/Commerce Server site, and I have a custom feature which is designed to do two things: provision some pages through modules, and provision a list of checkout steps, using the CheckoutStepsList template in a feature receiver. For some reason, though, in certain cases the list creation throws an exception:</p> <p>Invalid file name</p> <p>The file name you specified could not be used. It may be the name of an existing file or directory, or you may not have permission to access the file.</p> <p>When I try to navigate to the list, I'm brought to the list settings page (there should be a default view), and the list has 0 items in it. So it looks like it provisioned the list halfway, but crashed somewhere in the middle.</p> <p>It's somewhat difficult to reproduce this issue. If I activate the feature through an stsadm command on the command line, it always fail, but if I do it through the SharePoint UI, sometimes it fails, and sometimes it doesn't. Crashing through the UI seems to happen more often if the pages being provisioned through the modules don't exist yet, but I'm not sure of that yet.</p> <p>Here's the offending code:</p> <pre><code>SPListTemplateCollection listTemplateCollection = web.Site.GetCustomListTemplates(web); SPListTemplate checkoutStepsTemplate = listTemplateCollection["CheckoutStepsTemplate"]; Guid listID = web.Lists.Add(listName, String.Empty, checkoutStepsTemplate); // the exception is thrown on this line </code></pre> <p>Any idea what's going on here? I'll keep debugging this on my end, and I'd be happy to provide any information that may help diagnose the issue.</p> http://stackoverflow.com/questions/899380/programmatically-creating-list-from-checkoutstepstemplate-throws-exception/911885#911885 0 Answer by Jonathan Schuster for Programmatically creating list from CheckoutStepsTemplate throws exception Jonathan Schuster 2009-05-26T17:48:51Z 2009-05-26T17:48:51Z <p>I never found a full solution to this issue, but I did diagnose enough of the issue that we found an acceptable workaround. It turns out that the problem only occurred when provisioning elements through modules in the same feature, but when those modules are included in a different feature, everything worked fine.</p> <p>We decided to move on for now, so that's as far as I got in finding the root cause of the issue, but it's at least a good enough fix that it won't cause us headaches in the future.</p> http://stackoverflow.com/questions/893372/number-of-total-select-statement-for-particular-web-page/893458#893458 0 Answer by Jonathan Schuster for Number of total select statement for particular web page? Jonathan Schuster 2009-05-21T15:10:54Z 2009-05-21T15:10:54Z <p>If you have some sort of database layer in your code, you could modify it to write out a log message every time you run a select statement. Then just load the page once and count the number of log statements. This may or may not work, depending on how your code is structured, but it's an option.</p> <p>Edit: I misread the question. I thought you had multiple clients connecting to the same database, not the same database server. In that case, a profiler probably is the best choice.</p> http://stackoverflow.com/questions/880826/how-often-is-the-performance-of-a-programming-language-a-significant-issue 3 How often is the performance of a programming language a significant issue? [closed] Jonathan Schuster 2009-05-19T03:27:39Z 2009-05-19T23:07:11Z <p>It seems that I often hear people criticize certain programming languages because they "have poor performance", or because some other language is "faster" in general (not necessarily for a specific application). However, my experience and education have taught me that anytime you have a performance problem, at least one of the following is probably happening:</p> <ol> <li>The bottleneck isn't in the CPU, it's in some other device, such as the network or the hard drive.</li> <li>The poor performance is caused by your algorithms, not by the language you're using.</li> </ol> <p>My general impression is that the speed of a programming language itself is all but irrelevant in the vast majority of cases, with exceptions for serious data processing problems. Even in those cases, I believe you could use a hybrid approach and use a lower-level language only for the CPU-intensive pieces so that you wouldn't lose the benefits of the more abstract language altogether.</p> <p>Do you agree? Is programming language speed insignificant most of the time, or do the critics have a right to point out language performance issues?</p> <p>I hope this question isn't too subjective, but it seems to me that there should be a relatively objective answer to this.</p> http://stackoverflow.com/questions/880850/laws-of-computer-science-and-programming/880875#880875 57 Answer by Jonathan Schuster for Laws of Computer Science and Programming Jonathan Schuster 2009-05-19T03:45:19Z 2009-05-19T03:45:19Z <p><a href="http://en.wikipedia.org/wiki/Hofstadter%27s%5Flaw" rel="nofollow">Hofstadter's Law</a>:</p> <blockquote> <p>It always takes longer than you expect, even when you take into account Hofstadter's Law.</p> </blockquote> http://stackoverflow.com/questions/855577/br-tags-appearing-in-textarea-output/855625#855625 1 Answer by Jonathan Schuster for <br /> tags appearing in textarea output Jonathan Schuster 2009-05-13T01:14:10Z 2009-05-13T01:14:10Z <p>I think the <code>&lt;br /&gt;</code> tag is what you want in this case. Newline characters like \n and \r don't do anything in HTML - all whitespace, including newlines, is ignored. The <code>&lt;br /&gt;</code> tag is essentially the HTML equivalent - it stands for "break". I don't know too much about PHP specifically, so I don't know why it's putting the <code>&lt;br /&gt;</code> there for you automatically, but that's the correct HTML for what you're describing.</p> <p>Technically, there are better ways to format your output then using those tags, but that's more of an advanced topic. If you are a bit new to this, like you said, then just get it working this way for now, and then maybe sometime down the road you can learn about proper semantic HTML markup, CSS styling, etc.</p> http://stackoverflow.com/questions/854113/why-would-you-choose-oo-language-over-functional-language/854132#854132 1 Answer by Jonathan Schuster for Why would you choose OO language over functional language? Jonathan Schuster 2009-05-12T18:25:10Z 2009-05-12T18:25:10Z <p>It may not always be an either/or question. There are some languages that do a good job of blending the OO and functional paradigms (I believe F# and Scala are two that do this, to a certain extent, depending on your definition of "OO" and "functional").</p> http://stackoverflow.com/questions/848653/what-does-the-onet-in-onet-xml-stand-for 2 What does the "ONET" in ONET.xml stand for? Jonathan Schuster 2009-05-11T15:30:40Z 2009-05-11T15:40:09Z <p>In SharePoint, a file named ONET.xml is usually needed when creating a custom site definition. Out of curiosity, does anyone know what ONET stands for?</p> http://stackoverflow.com/questions/827872/during-interviews-should-candidates-write-code-on-paper-on-a-text-editor-or-an/827904#827904 2 Answer by Jonathan Schuster for During interviews, should candidates write code on paper, on a text editor, or an IDE? Jonathan Schuster 2009-05-06T03:24:20Z 2009-05-06T03:24:20Z <p>I think there are valid reasons for either one. However, I personally favor pen and paper (or alternatively, a whiteboard) for a variety of reasons:</p> <ul> <li>Most programmers are used to programming in a certain text editor/IDE. The interviewer is not going to have every IDE ever made, so the candidate might be forced to get over the learning curve of a new editor.</li> <li>Similarly, certain IDEs may favor certain programming languages, which gives an unfair advantage to candidates who write in those languages.</li> <li>Coding questions in interviews should focus more on the general idea of what the candidate is trying to accomplish, not if they know the exact syntax for a certain expression, or if they remember the name of a certain function. Whiteboards give candidates a lot more freedom to express their intent, without worrying about nitty-gritty details.</li> <li>The time constraint is actually a good one, in my opinion. It forces the candidate to plan ahead a little more before writing the code, and to generally be more aware of the time constraints within the interview.</li> </ul> http://stackoverflow.com/questions/827552/explicitly-calling-a-constructor-in-c/827568#827568 0 Answer by Jonathan Schuster for Explicitly calling a constructor in C++ Jonathan Schuster 2009-05-06T00:45:39Z 2009-05-06T00:45:39Z <p>I don't think you would typically use that for the constructor, at least not in the way you're describing. You would, however, need it if you have two classes in different namespaces. For example, to specify the difference between these two made-up classes, <code>Xml::Element</code> and <code>Chemistry::Element</code>.</p> <p>Usually, the name of the class is used with the scope resolution operator to call a function on an inherited class's parent. So, if you have a class Dog that inherits from Animal, and both of those classes define the function Eat() differently, there might be a case when you want to use the Animal version of eat on a Dog object called "someDog". My C++ syntax is a little rusty, but I think in that case you would say <code>someDog.Animal::Eat()</code>.</p> http://stackoverflow.com/questions/821470/where-can-i-get-great-documentation-about-exception-handling-in-c/821491#821491 1 Answer by Jonathan Schuster for Where can I get great documentation about Exception handling in C# Jonathan Schuster 2009-05-04T19:14:04Z 2009-05-04T19:14:04Z <p>I've found the official docs at MSDN to be the best resource on core language features. Specifically, see this page and the pages it links to: <a href="http://msdn.microsoft.com/en-us/library/ms173160%28loband%29.aspx" rel="nofollow">Exceptions and Exception Handling</a></p> http://stackoverflow.com/questions/508994/asp-net-dropdownlist-autopostback-and-google-chrome/809400#809400 0 Answer by Jonathan Schuster for Asp.Net, DropDownList, AutoPostBack and Google Chrome Jonathan Schuster 2009-04-30T22:22:57Z 2009-04-30T22:22:57Z <p>I just ran into a similar problem today (although I wasn't using Ajax), and found a fix. See the third comment down on <a href="http://weblogs.asp.net/stefansedich/archive/2008/11/04/bug-with-latest-google-chrome-and-asp-net-validation.aspx" rel="nofollow">this blog post</a>.</p> http://stackoverflow.com/questions/800852/summer-job-for-undergraduate/800973#800973 0 Answer by Jonathan Schuster for Summer job for undergraduate? Jonathan Schuster 2009-04-29T05:15:42Z 2009-04-29T05:15:42Z <p>As mentioned above, it's not too late. I once started a summer job at a local grocery store while I was in college, then was asked to interview for a programming job at a tech company in early June. Put your resume out there in as many places as you can. At this point, <em>any</em> real world programming experience is better than none at all.</p> http://stackoverflow.com/questions/797024/n-tiered-net-application-localization-guidelines/800968#800968 1 Answer by Jonathan Schuster for n-Tiered .NET application localization guidelines Jonathan Schuster 2009-04-29T05:09:43Z 2009-04-29T05:09:43Z <p>As Groo mentioned, one mega-assembly would be a bad a idea since it would cause a coupling issue. For example, if you wanted to change the button text in web site 1, you'd have to update that assembly, which then causes an update to web sites 2 and 3, even though 2 and 3 didn't need any changes at all. Just like with anything else, you want to isolate your changes where possible so that if something breaks, it breaks as little as possible.</p> <p>I would define your assemblies so that you can share some as needed, but have others that contain resources needed only for individual projects. From the description you've given, here is how I would structure your resources:</p> <ul> <li>1 UI-related resource file shared across web sites</li> <li>3 site-specific UI-related resource files</li> <li>1 business logic-related resource file in the core library</li> <li>3 site-specific business logic-related resource files, stored in their respective business logic projects</li> </ul> <p>In some cases above I may have mixed up where you just need a resource file and where you need a full standalone assembly, but the division of resources is essentially the same. And of course, you'll need one copy of each of the above files per language.</p> <p>I would absolutely recommend storing these files in source control. They're a part of the source of your app, just like the code, and source control will give you the same benefits.</p> <p>Regarding SQL Server, when you say that it sends localized e-mails, do you mean that it does that through a stored procedure, or that some other code uses data from the database to send e-mails? Either way, I don't have much of an answer. I don't know how SQL Server itself handles localization, and if it's an app that's sending the e-mails, it depends a lot on where the localized text needs to come from.</p> <p>Finally, regarding your question on categorizing the resources, it really just depends on what seems the most natural to you and (I assume) your team. From what you've described, it sounds like you might want to split your resources out into text that will be shown on web pages, and text that will be included in emails, but it's hard to say. This is a very personal choice, and it has no effect on the code other than making it easier for everyone to find the resource they're looking for, so just go with what makes the most sense to you.</p> http://stackoverflow.com/questions/606022/creating-site-templates-from-moss-publishing-sites/673902#673902 0 Answer by Jonathan Schuster for Creating Site Templates from MOSS publishing sites Jonathan Schuster 2009-03-23T15:42:42Z 2009-03-23T15:42:42Z <p>I don't think what you're describing will work (like you said, it's basically the same thing as a Publishing Portal), but there appears to be a workaround. According to <a href="http://sharepointsolutions.blogspot.com/2008/07/create-site-template-from-publishing.html" rel="nofollow">this post</a> from the SharePoint Solutions Team (apparently not related to Microsoft), you can create a publishing site, customize it as needed, deactivate the publishing feature, create a site template from it, create a new site based on the template, and then activate the publishing feature on your new site. </p> <p>It sounds like this works, but is not officially supported by Microsoft. Be careful, since it may mostly work, but I wouldn't be surprised if some small pieces of it break.</p> http://stackoverflow.com/questions/528883/how-to-display-a-standard-sharepoint-access-denied-message/529092#529092 0 Answer by Jonathan Schuster for How to display a standard SharePoint "Access Denied" message Jonathan Schuster 2009-02-09T17:33:19Z 2009-02-09T17:33:19Z <p>Depending on what you're doing, you should be able to do this by configuring the permissions on your site correctly. If you have a page that you don't want certain users to be able to view, that page's permissions should be set up accordingly. </p> <p>If this is something you're trying to do in code from some sort of event handler or another, though, you may need a different solution. There may be a specific SharePoint exception for this, but I don't know what it is off-hand.</p> <p>I guess the real question is, what exactly are you trying to do that you want to block access to?</p> http://stackoverflow.com/questions/441252/in-sharepoint-what-is-the-easiest-way-to-create-a-custom-list-schema-xml-file/461704#461704 0 Answer by Jonathan Schuster for In SharePoint What is the Easiest Way to Create a Custom List schema.xml file? Jonathan Schuster 2009-01-20T15:15:40Z 2009-01-20T15:15:40Z <p>Adding onto EG's answer, if you only want to change the fields attached to an existing list (but leave the views, etc. essentially the same), you'll have to change things in essentially two places: List/MetaData/Fields, and List/MetaData/Views/View/ViewFields.</p> <p>The Fields section is relatively straight-forward, assuming you follow <a href="http://msdn.microsoft.com/en-us/library/ms451470.aspx" rel="nofollow">the documentation</a>.</p> <p>To get the columns to show up in a given view, you'll have to edit the ViewFields section for a given view. For example, if you have columns named Title, Author, and Publisher that you want to show up in the view, find that view's ViewFields section and edit it as follows:</p> <pre><code>&lt;ViewFields&gt; &lt;FieldRef Name="Title" /&gt; &lt;FieldRef Name="Author" /&gt; &lt;FieldRef Name="Publisher" /&gt; &lt;/ViewFields&gt; </code></pre> <p>Those fields (and only those fields) should then display in that view.</p> http://stackoverflow.com/questions/422542/how-can-i-automatically-enable-content-approval-on-a-sharepoint-list/454560#454560 0 Answer by Jonathan Schuster for How can I automatically enable content approval on a SharePoint list? Jonathan Schuster 2009-01-18T02:59:49Z 2009-01-18T02:59:49Z <p>I ended up just using the feature receiver approach, since I just needed to move on. However, I later found that the <a href="http://msdn.microsoft.com/en-us/library/ms415091.aspx" rel="nofollow">List element</a> used for defining your list schema also has ModeratedList and ModerationType properties that look like they probably have something to do with this. So if anyone else is having the same problem, I would recommend giving those a shot.</p> http://stackoverflow.com/questions/422542/how-can-i-automatically-enable-content-approval-on-a-sharepoint-list 0 How can I automatically enable content approval on a SharePoint list? Jonathan Schuster 2009-01-07T23:01:04Z 2009-01-18T02:59:49Z <p>I'm trying to create a feature that both creates a list template and an instance of that list (using the <code>&lt;ListTemplate</code>> and <code>&lt;ListInstance</code>> elements. I would like for content approval to be turned on by default. According to the <a href="http://msdn.microsoft.com/en-us/library/ms462947.aspx" rel="nofollow">docs on ListTemplate</a>, setting the EnableModeration attribute to TRUE should do it. However, when I try to install the solution, I get the following error:</p> <blockquote> <p>The 'EnableModeration' attribute is invalid - The value 'TRUE' is invalid according to its datatype '<a href="http://schemas.microsoft.com/sharepoint/:TrueFalseMixed" rel="nofollow">http://schemas.microsoft.com/sharepoint/:TrueFalseMixed</a>' - The Enumeration constraint failed.</p> </blockquote> <p>A bit more searching reveals that the value accepted is actually "True", not "TRUE". That installs fine, but it seems to have no effect when the list is created - it still doesn't require content approval. Any idea what I'm doing wrong?</p> <p>Edit: If anyone could even confirm for me if they've seen "True" or "TRUE" work before, that would at least narrow down my search.</p> <p>Update: I've found that I can enable content approval using code in a feature receiver:</p> <pre><code>list.EnableModeration = true; list.Update(); </code></pre> <p>That's a bit of a hack, so it'd still be nice to be able to do this through the XML instead.</p> http://stackoverflow.com/questions/258740/what-tools-are-built-using-themselves/448696#448696 2 Answer by Jonathan Schuster for What tools are built using themselves? Jonathan Schuster 2009-01-15T22:16:26Z 2009-01-15T22:16:26Z <p>I would assume that pretty much any tool that's part of the typical development process would be involved in its own development, to whatever extent possible. This includes:</p> <ul> <li>certain programming languages, especially compiled ones</li> <li>IDEs</li> <li>text editors</li> <li>version control systems</li> <li>bug trackers</li> <li>build systems</li> </ul> <p>If you're on a team building one of these tools, and you're not developing it for a specific niche that doesn't apply to your team, I don't know why you wouldn't use it to build itself. Having developers be users of the product is one of the best ways to find possible improvements.</p> http://stackoverflow.com/questions/283005/how-do-you-answer-basic-programming-questions-on-a-forum-for-a-specific-project 0 How do you answer basic programming questions on a forum for a specific project? Jonathan Schuster 2008-11-12T04:11:30Z 2009-01-13T11:31:08Z <p>I'm currently in the process of becoming a maintainer of a small open source project (a Facebook toolkit), and of course, one of the responsibilities is to answer user questions on our forum. While I'm happy to help users learn how to work with our toolkit and deal with issues they may run into (which may eventually indicate bugs in our code), a significant amount of the questions seem to have less to do with our toolkit specifically, and more to do with knowing how to program in general.</p> <p>I'd like to help the people asking these questions, but I don't really have the time to be a full-on programming teacher. I don't want to just ignore them. They're not asking to be spoon-fed everything; they just don't know where to begin to solve their problems. Is there some way I can point them in the right direction without offending them, and without spending all my time trying to teach our users general programming skills?</p> http://stackoverflow.com/questions/1792958/whats-the-purpose-of-claims-based-authorization/1793263#1793263 Comment by Jonathan Schuster on What's the purpose of claims-based authorization? Jonathan Schuster 2009-11-25T14:36:56Z 2009-11-25T14:36:56Z Thanks, that's starting to make sense, now. I'm still a little hazy on ACS, but I think I'm at least starting to see the rationale behind claims-based auth in general, now. http://stackoverflow.com/questions/1792958/whats-the-purpose-of-claims-based-authorization/1793263#1793263 Comment by Jonathan Schuster on What's the purpose of claims-based authorization? Jonathan Schuster 2009-11-24T23:27:55Z 2009-11-24T23:27:55Z Right, but to me, that all sounds like authentication rather than authorization. I guess I'm imagining that the user gives you some token that has their authenticated ID, and the server looks up permissions based on that ID. The token could contain other claims, but I don't understand why it would. I'm looking at this mostly from the perspective of Azure's ACS, which doesn't really seem to give you these benefits, since it only accepts a couple of types of authentication. Am I wrong in viewing ACS as a pure authorization provider (no authentication) and not seeing much value in that? http://stackoverflow.com/questions/1359236/wpf-3-d-performance-for-head-tracking-app/1359294#1359294 Comment by Jonathan Schuster on WPF 3-D performance for head-tracking app Jonathan Schuster 2009-08-31T20:53:09Z 2009-08-31T20:53:09Z There is no &quot;texture&quot; per se. I'm just using the SolidColorBrush on all of my models. XNA is probably my first choice at the moment, assuming WPF isn't going to cut it. My ownly problem so far is that the way graphics work in XNA seems very odd to me, but maybe that's just a learning curve I need to get over. http://stackoverflow.com/questions/1308395/how-do-you-create-an-off-center-perspectivecamera-in-wpf Comment by Jonathan Schuster on How do you create an off-center PerspectiveCamera in WPF? Jonathan Schuster 2009-08-24T18:46:15Z 2009-08-24T18:46:15Z I meant some method that does the math for me, instead of forcing me to do it like I had to in my answer below. http://stackoverflow.com/questions/940435/changing-active-content-security-settings-on-wpf-webbrowser-control/947839#947839 Comment by Jonathan Schuster on Changing "active content" security settings on WPF WebBrowser control Jonathan Schuster 2009-06-05T14:19:04Z 2009-06-05T14:19:04Z Mostly because it adds a lot more work to our end, especially finding the end of the DOCTYPE declaration. I'm probably imagining it to be more work than it is, but right now we're just setting browser.Source to essentially a modified file path, so actually loading and parsing the file adds a bit more effort. Plus, it just seems like the WebBrowser control should have some sort of settings for this, in case the default security settings don't meet your needs. http://stackoverflow.com/questions/827872/during-interviews-should-candidates-write-code-on-paper-on-a-text-editor-or-an/827899#827899 Comment by Jonathan Schuster on During interviews, should candidates write code on paper, on a text editor, or an IDE? Jonathan Schuster 2009-05-06T03:27:58Z 2009-05-06T03:27:58Z There's a big difference between being able to communicate your ideas in written form, and writing code on a whiteboard. Usually ideas can be expressed in just a few words and/or diagrams, but writing up a full algorithm takes a lot more effort. http://stackoverflow.com/questions/826405/sharing-source-code-between-machines/826415#826415 Comment by Jonathan Schuster on Sharing source code between machines Jonathan Schuster 2009-05-05T19:03:57Z 2009-05-05T19:03:57Z I would assume that other people are working in the current branch, though, and this might cause a race condition - someone might try to check in an update on top of his untested code. http://stackoverflow.com/questions/422542/how-can-i-automatically-enable-content-approval-on-a-sharepoint-list/424298#424298 Comment by Jonathan Schuster on How can I automatically enable content approval on a SharePoint list? Jonathan Schuster 2009-01-08T16:46:32Z 2009-01-08T16:46:32Z I didn't create one, but I think it's on there by default. At leats I would assume so, since the feature receiver method (mentioned above) works. http://stackoverflow.com/questions/415434/can-automated-unit-testing-replace-static-type-checking/415495#415495 Comment by Jonathan Schuster on Can automated unit testing replace static type checking? Jonathan Schuster 2009-01-06T05:39:26Z 2009-01-06T05:39:26Z Sorry, I should clarify. I'm probably misusing the term, but by &quot;coverage&quot;, I meant something more along the lines of &quot;checking all possible states&quot; instead of &quot;lines of code executed&quot;. Either way, this wouldn't be caught by type-checking either, so it's somewhat irrelevant to the current question.