User Brian G - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T21:54:03Z http://stackoverflow.com/feeds/user/3208 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/244212/submit-multiple-forms-on-one-page-asp 2 Submit multiple forms on one page ( ASP ) Brian G 2008-10-28T18:00:18Z 2009-11-16T20:38:34Z <p>I have a table where each row will represent a form. There could be over 25 rows in the table.</p> <p>I need to post the rows that have a checkbox checked and get the results and display success of fail. I am posting to a site that I do not have any control over and they take one rows worth of data.</p> <p>I tried this using IFrames and it seemed to work ok but not in IE7 without browser config changes which is not possible in my case.</p> <p>I have figured out enough to get all the forms to submit but then how do I get the results.</p> http://stackoverflow.com/questions/55139/what-is-your-favorite-ide-for-perl-development 10 What is your favorite IDE for Perl development? Brian G 2008-09-10T19:49:58Z 2009-11-02T06:01:31Z <p>What is your favorite IDE for Perl development and why?</p> <p>Here are the choices so far:</p> <ul> <li><p>Vim</p></li> <li><p>EPIC + </p></li> <li><p>UltraEdit</p></li> <li><p>VIM</p></li> <li><p>TextMate</p></li> <li><p>E</p></li> <li><p>Komodo</p></li> <li><p>Emacs</p></li> <li><p>TextPad</p></li> <li><p>Padre</p></li> <li><p>XEmacs</p></li> <li><p>WordPad</p></li> <li><p>Jedit</p></li> <li><p>Nedit</p></li> <li><p>SlickEdit</p></li> <li><p>Cream</p></li> <li><p>Trinity</p></li> <li><p>MacVim</p></li> </ul> http://stackoverflow.com/questions/121945/how-do-you-like-your-comments-best-practices 7 How do you like your comments? ( Best Practices ) Brian G 2008-09-23T15:58:36Z 2009-11-02T05:17:21Z <p>What are your best practices for comments. when to use them and what they should contain. Do we even need them ( I think we do ) </p> http://stackoverflow.com/questions/166588/how-to-become-a-programmer-for-hire 13 How to become a programmer for hire? Brian G 2008-10-03T12:34:20Z 2009-10-27T10:37:54Z <p>Anyone know how to successfully start your own business as a programmer for hire. Consultant or contractor or whatever you want to call it.</p> http://stackoverflow.com/questions/133008/what-is-big-o-notation-do-you-use-it 8 What is Big O notation? Do you use it? Brian G 2008-09-25T12:29:50Z 2009-10-18T14:27:14Z <p>What is Big O notation? Do you use it?</p> <p>I missed this university class I guess :D</p> <p>Does anyone use it and give some real life examples of where they used it?</p> <p><hr /></p> <h3>See also:</h3> <p><a href="http://stackoverflow.com/questions/107165/big-o-for-eight-year-olds">Big-O for Eight Year Olds?</a><br /> <a href="http://stackoverflow.com/questions/3255/big-o-how-do-you-calculateapproximate-it">Big O, how do you calculate/approximate it?</a><br /> <a href="http://stackoverflow.com/questions/111426/did-you-apply-computational-complexity-theory-in-real-life">Did you apply computational complexity theory in real life?</a></p> http://stackoverflow.com/questions/306572/app-config-custom-section-not-working 1 App.config - custom section not working. Brian G 2008-11-20T19:36:37Z 2009-10-13T20:03:33Z <p>I recently started building a console version of a web application. I copied my custom sections from my web.config. to my app.config. When I go to get config information i get this error:</p> <p>An error occurred creating the configuration section handler for x/y: Could not load type 'x' from assembly 'System.Configuration</p> <p>The line that it is not liking is:</p> <p>return ConfigurationManager.GetSection("X/Y") as Z;</p> <p>Anyone run into something like this?</p> <p>I was able to add </p> <pre><code>&lt;add key="IsReadable" value="0"/&gt; </code></pre> <p>in the appSettings and read it.</p> <p>Addition:</p> <p>I do actually have this defined about the custom section:</p> <pre><code> &lt;configSections&gt; &lt;sectionGroup name="x"&gt; &lt;section name="y" type="zzzzz"/&gt; &lt;/sectionGroup&gt; &lt;/configSections&gt; </code></pre> http://stackoverflow.com/questions/129607/what-is-the-difference-between-my-and-local-in-perl 13 What is the difference between my and local in Perl? Brian G 2008-09-24T20:12:59Z 2009-10-13T18:55:33Z <p>I am seeing both of them used in this script I am trying to debug and the literature is just not clear. Can someone demystify this for me?</p> http://stackoverflow.com/questions/1493876/mysql-performance-inquiry 0 MySQL Performance inquiry Brian G 2009-09-29T17:18:52Z 2009-09-29T17:31:19Z <p>I have moved my drupal site from one mysql server to another one.</p> <p>Old Machine has 1 cpu, 1GB Ram New Machine has 4 cpu, 4GB Ram.</p> <p>I have a huge negative difference in perfomance on this query ( 2 mins vs 2 secs ) </p> <pre><code> select distinct c.client from client_table c LEFT JOIN reps r on ( c.client = r.client ) where r.user_id is NULL AND c.client not in ( select distinct client from billing where first_purchase = 1 ) NEW OLD | connect_timeout 10 |connect_timeout 5 | have_federated_engine DISABLED | have_federated_engine YES | max_connections 100 | max_connections 400 | max_seeks_for_key 18446744073709551615 | max_seeks_for_key 4294967295 | max_write_lock_count 18446744073709551615 | max_write_lock_count 4294967295 | myisam_max_sort_file_size 9223372036853727232 | myisam_max_sort_file_size 2147483647 | max_binlog_cache_size 18446744073709547520 | max_binlog_cache_size 4294967295 | myisam_recover_options BACKUP | myisam_recover_options OFF | range_alloc_block_size 4096 | range_alloc_block_size 2048 | table_cache 457 | table_cache 307 | version 5.0.67-0ubuntu6-log | version 5.0.51a-3ubuntu5.4-log | version_compile_machine x86_64 | version_compile_machine i486 ONLY on NEW | relay_log | ONLY on NEW | relay_log_index | ONLY on NEW | relay_log_info_file | relay-log.info ONLY on NEW innodb_adaptive_hash_index | ON </code></pre> <p>Any ideas on how to identify what is causing the problem or how to fix it?</p> http://stackoverflow.com/questions/1493722/mysql-command-for-showing-current-configuration 0 mysql command for showing current configuration Brian G 2009-09-29T16:49:03Z 2009-09-29T16:53:13Z <p>Can not find a command that displays the current configuration of mysql from within the database.</p> <p>I know I could look at /etc/mysql/my.cnf but that is not what I need.</p> http://stackoverflow.com/questions/781873/how-to-figure-out-size-of-indexes-in-mysql 1 How to figure out size of Indexes in MySQL Brian G 2009-04-23T14:05:17Z 2009-09-22T17:06:57Z <p>I want to determine the size of my indexes, they are primary key indexes. This happens to be on mysql cluster but I don' think that is significant.</p> http://stackoverflow.com/questions/1460100/drupal-use-l-or-url-function-for-mailto-links 0 Drupal - use l or url function for mailto links Brian G 2009-09-22T13:26:08Z 2009-09-22T14:33:05Z <p>Does anyone know how to use the l() or url() function to create mailto links?</p> <p>I am running drupal 6.</p> http://stackoverflow.com/questions/188510/how-to-format-a-string-as-a-telephone-number-in-c 2 How to format a string as a telephone number in C# Brian G 2008-10-09T18:19:37Z 2009-09-15T23:09:21Z <p>I have a string "1112224444' it is a telephone number. I want to format as 111-222-4444 before I store it in a file. It is on a datarecord and I would prefer to be able to do this without assigning a new variable.</p> <p>I was thinking:</p> <p>String.Format("{0:###-###-####}", i["MyPhone"].ToString() );</p> <p>but that does not seem to do the trick.</p> <p>** UPDATE **</p> <p>Ok. I went with this solution</p> <p>Convert.ToInt64(i["Customer Phone"]).ToString("###-###-#### ####")</p> <p>Now its gets messed up when the extension is less than 4 digits. It will fill in the numbers from the right. so</p> <p>1112224444 333 becomes</p> <p>11-221-244 3334</p> <p>Any ideas?</p> http://stackoverflow.com/questions/1412339/cannot-log-in-with-created-user-in-mysql 0 Cannot log in with created user in mysql Brian G 2009-09-11T17:44:03Z 2009-09-11T18:07:41Z <p>Using this command</p> <pre><code>GRANT ALL PRIVILEGES ON *.* to 'brian'@'%' identified by 'password'; </code></pre> <p>I try to login with:</p> <pre><code> mysql -u brian -ppassword </code></pre> <p>The error is:</p> <pre><code>ERROR 1045 (28000): Access denied for user 'brian'@'localhost' (using password: YES) </code></pre> <p>I am doing this as root and I did try to flush privileges.</p> <p>I tried this with countless users but it does not seem to work. I can create a user with no password and login works. Command line and from phpmyadmin</p> <p>Also check to see if the user was in mysql.user which it is.</p> <p>Show grants for brian shows:</p> <pre><code>| GRANT ALL PRIVILEGES ON *.* TO 'brian'@'%' IDENTIFIED BY PASSWORD '*2470C0C06DEE42FD1618BB99005ADCA2EC9D1E19' | </code></pre> http://stackoverflow.com/questions/136204/whats-the-point-of-perls-map 13 What's the point of Perl's map? Brian G 2008-09-25T21:17:31Z 2009-09-10T13:52:38Z <p>Not really getting the point of the map function. Can anyone explain with examples its use?</p> <p>Are there any performance benefits to using this instead of a loop or is it just sugar?</p> http://stackoverflow.com/questions/127916/is-programming-style-important-how-important 22 Is Programming Style important? How Important? Brian G 2008-09-24T15:35:16Z 2009-09-09T18:41:02Z <p>Last year I was troubleshooting a team member's code and it was lacking indents and comments. I was talking to him about it telling him it was not a good idea but he got offended. He was/is smarter than me or certainly more educated. </p> <p>Since then I found out he applied to Microsoft and when they had him do a doubly linked list implementation, he wrote it without indentation or comments, stating that he did not have time to worry about style. ( It was an email submission for which there were 2 hours to complete ) </p> <p>Microsoft did not call him back..... How do you think they responded, how would you respond?</p> <p><strong>Anyone from Microsoft on here that can suggest what they would do in this case?</strong></p> http://stackoverflow.com/questions/451745/drupal-views2-exposed-form-how-to-change 1 Drupal Views2 Exposed Form how to change Brian G 2009-01-16T19:59:22Z 2009-08-29T03:47:32Z <p>I have a View with an exposed form . I am trying to a few things on it. Ideally I would like to have a dropdown that fires the form with no button. If that is not possible then I would like to have the button text something different than apply.</p> <p>I hacked it for now and change views_form in views.module but that does not seem like the right way to do it. I only have one exposed form right now, but what if I add more?</p> <p>Please see <a href="http://www.wiredvillage.ca/News" rel="nofollow">http://www.wiredvillage.ca/News</a> for my example.</p> <p>I am poking around drupal.org and seeing others with the same problem but no solutions so far. Not sure where the best place to get Drupal help is.</p> <p>Here is the change I made so far:</p> <pre><code>function views_exposed_form(&amp;$form_state) { // Make sure that we validate because this form might be submitted // multiple times per page. $form_state['must_validate'] = TRUE; $view = &amp;$form_state['view']; $display = &amp;$form_state['display']; $form_state['input'] = $view-&gt;get_exposed_input(); // Let form plugins know this is for exposed widgets. $form_state['exposed'] = TRUE; $form['#info'] = array(); if (!variable_get('clean_url', FALSE)) { $form['q'] = array( '#type' =&gt; 'hidden', '#value' =&gt; $view-&gt;get_url(), ); } // Go through each filter and let it generate its info. foreach ($view-&gt;filter as $id =&gt; $filter) { $view-&gt;filter[$id]-&gt;exposed_form($form, $form_state); if ($info = $view-&gt;filter[$id]-&gt;exposed_info()) { $form['#info']['filter-' . $id] = $info; } } // I CHANGED The VALUE OF THIS SUBMIT BUTTON TO GO $form['submit'] = array( '#name' =&gt; '', // prevent from showing up in $_GET. '#type' =&gt; 'submit', '#value' =&gt; t('go'), ); $form['#action'] = url($view-&gt;get_url()); $form['#theme'] = views_theme_functions('views_exposed_form', $view, $display); $form['#id'] = views_css_safe('views_exposed_form-' . check_plain($view-&gt;name) . '-' . check_plain($display-&gt;id)); // $form['#attributes']['class'] = array('views-exposed-form'); // If using AJAX, we need the form plugin. if ($view-&gt;use_ajax) { drupal_add_js('misc/jquery.form.js'); } views_add_js('dependent'); return $form; } </code></pre> http://stackoverflow.com/questions/114342/what-are-code-smells-what-is-the-best-way-to-correct-them/127784#127784 5 Answer by Brian G for What are Code Smells? What is the best way to correct them? Brian G 2008-09-24T15:15:09Z 2009-08-28T17:54:10Z <p>How about code without indentation. I seen a friend of mine with a master's degree write software without indentation and using variables like x, x2 and y. He actually applied to a position at Microsoft and sent them a code sample like this. How fast do you think they tossed it in the garbage???</p> <p>Code is for humans to read.</p> <p>Please indent.</p> <p>What would you do if you received un-indented code as a part of an interview?</p> http://stackoverflow.com/questions/273410/how-many-dimensions-in-my-array-or-get-the-last-one 1 How many dimensions in my array or get the last one Brian G 2008-11-07T19:49:40Z 2009-08-27T16:00:19Z <p>How can I find out the number of dimensions in an array in Classic ASP ( VBScript ) .</p> <p>I am being passed an Array with multiple dimensions but I only want to look at the last. Seems easy in other languages.</p> http://stackoverflow.com/questions/530895/drupal-how-to-get-a-view-to-display-as-columns-rather-than-rows 1 Drupal How to get a view to display as columns rather than rows Brian G 2009-02-10T02:28:47Z 2009-07-13T09:18:42Z <p>I am trying to get a drupal 6 view to display in a column format rather than rows. Basically I want to group my pictures/video by taxonomy and display them in a table. Similar to what I have below. I tried enabling grouping with a grid layout but that did not seem to do it.</p> <p>Cows Horses Dogs Cats <br/> Picture Picture Picture Picture<br/> Picture Picture Picture Picture<br/> Picture Picture Picture Picture<br/> Picture Picture Picture Picture<br/> Picture Picture Picture Picture</p> <p>Hope this makes sense.</p> http://stackoverflow.com/questions/182542/email-address-validation-for-asp-net 1 Email Address Validation for ASP.NET Brian G 2008-10-08T12:46:21Z 2009-07-13T08:30:44Z <p>What do you use to validate an email address on a ASP.NET form. I want to make sure that it contains no XSS exploits.</p> <p>This is ASP.NET 1.1</p> http://stackoverflow.com/questions/63787/what-makes-drupal-better-different-from-joomla 2 What makes Drupal better/different from Joomla Brian G 2008-09-15T15:11:45Z 2009-07-04T23:27:17Z <p>I talked to a few friends that say Drupal is amazing and that it is way better than Joomla. What are the major differences/advantages.</p> http://stackoverflow.com/questions/1074290/calculate-the-difference-between-date-times-in-php 4 Calculate the difference between date/times in PHP Brian G 2009-07-02T13:19:05Z 2009-07-02T17:34:17Z <p>I have a Date object ( from Pear) and want to subtract another Date object to get the time difference in seconds.</p> <p>I have tried a few things but the first just gave me the difference in days, and the second would allow me to convert one fixed time to unix timestamp but not the Date object.</p> <pre><code> $now = new Date(); $tzone = new Date_TimeZone($timezone); $now-&gt;convertTZ($tzone); $start = strtotime($now); $eob = strtotime("2009/07/02 17:00"); // Always today at 17:00 $timediff = $eob - $start; </code></pre> <p>** Note ** It will always be less than 24 hours difference.</p> http://stackoverflow.com/questions/836054/mysql-load-file-fails-on-date 1 MySQL load file fails on date Brian G 2009-05-07T17:40:31Z 2009-06-26T16:00:03Z <p>I am trying to do a MySQL LOAD DATA. But everytime I load the date gets 0000-00-00 or null. So far I have tried the following:</p> <pre><code> LOAD DATA LOCAL INFILE "/home/x/y/small" INTO TABLE daily_stats FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED BY '"' (@thedate,x,email,domain,test0,test1,test2,test3) set date = str_to_date(@thedate, '%Y%m%d'); LOAD DATA LOCAL INFILE "/home/x/y/small" INTO TABLE daily_stats FIELDS TERMINATED BY '|' OPTIONALLY ENCLOSED BY '"' (date,x,email,domain,test0,test1,test2,test3) </code></pre> <p><strong>Data:</strong> 20090404|test|test@haotmail.com|haotmail.com|0|0|0|1</p> <p>Any ideas?</p> http://stackoverflow.com/questions/49925/what-is-the-difference-between-union-and-union-all 6 What is the difference between UNION and UNION ALL Brian G 2008-09-08T15:19:33Z 2009-06-15T10:42:42Z <p>What is the difference between UNION and UNION ALL.</p> http://stackoverflow.com/questions/135203/whats-the-difference-between-javascript-and-jscript 14 What's the difference between JavaScript and JScript? Brian G 2008-09-25T18:52:02Z 2009-06-05T22:07:35Z <p>I have always wondered what the heck is the difference between JScript and JavaScript.</p> http://stackoverflow.com/questions/907709/drupal-6-views2-how-to-build-a-view-of-non-nodes 1 Drupal 6 - Views2 - How to build a view of non-nodes Brian G 2009-05-25T18:50:24Z 2009-06-02T01:24:02Z <p>I have a need to build views in drupal of non-nodes, actually objects external to drupal. The api that I am calling against passes me back a stdClass object.</p> <p>Anyone have ideas on how to get Views2 to display non-node objects?</p> http://stackoverflow.com/questions/916118/classic-asp-how-to-convert-string-to-utf8-to-usc2 2 Classic ASP - How to convert string to UTF8 to USC2 Brian G 2009-05-27T14:43:33Z 2009-05-28T11:33:10Z <p>I have a problem where I am storing a UTF8 string in SQL Server as USC2, when I pull it out to display on a page with content-type set to UTF-8 it works fine. But I have a third party javascript component which when I pass it the string for the database it renders it as USC2. or not UTF8.</p> <p>Is there a way in ASP to convert this string to UTF-8 after reading it from the database to pass it to the third party component ( obfuscated ) .</p> <p>Hope this makes sense.</p> http://stackoverflow.com/questions/118531/what-is-the-best-way-to-unit-test-webforms-apps-asp-net 11 What is the best way to unit test webforms apps ( ASP.NET ) Brian G 2008-09-23T01:01:46Z 2009-05-26T20:49:22Z <p>What is the best way to Unit test my webforms applications?</p> <p>Looks like people are loving Watin, and selenium.</p> http://stackoverflow.com/questions/129628/what-is-declarative-programming 14 What is declarative programming? Brian G 2008-09-24T20:15:26Z 2009-05-06T06:30:23Z <p>I keep hearing this term tossed around in several different contexts. What is it?</p> http://stackoverflow.com/questions/495443/is-your-qa-team-effective 4 Is your QA Team effective? Brian G 2009-01-30T13:07:46Z 2009-04-17T18:25:58Z <p>Is your QA Team effective. I am finding that many QA people that I have encountered are more verifiers and software breaking experts.</p> <p>What I mean by verifiers is, they step through all scenarios provided, basically walking through the application and ensuring that it does what is supposed to. </p> <p>What I mean by breakers is, they verify but they also diligently seek out scenarios that break the software and uncover defects. </p> <p>Are your findings similar?</p> <p>Of historical note on breaking software There was a team inside IBM in the 80's called the Black Team. They had a culture of saying that they had "succeeded" when they broke the software to encourage the identification of defects. They considered their work a "failure" when they failed to find/identify any faults in the software. On the other hand, the outcome of their "failure" was great reliable software...</p> <p>And the book: "How to Break Software: A Practical Guide to Testing" by James Whittaker </p> http://stackoverflow.com/questions/1493876/mysql-performance-inquiry Comment by Brian G on MySQL Performance inquiry Brian G 2009-09-29T17:25:13Z 2009-09-29T17:25:13Z I could try that. although it may bring my site to a halt. http://stackoverflow.com/questions/1412339/cannot-log-in-with-created-user-in-mysql/1412356#1412356 Comment by Brian G on Cannot log in with created user in mysql Brian G 2009-09-14T13:23:29Z 2009-09-14T13:23:29Z Any more information on this. I am almost positive this is my issue. but I cannot find any more information on it. http://stackoverflow.com/questions/1412339/cannot-log-in-with-created-user-in-mysql/1412356#1412356 Comment by Brian G on Cannot log in with created user in mysql Brian G 2009-09-11T17:51:09Z 2009-09-11T17:51:09Z I do have that in fact. is there a better way without impacting my production. http://stackoverflow.com/questions/1068556/how-drupal-works/1069613#1069613 Comment by Brian G on How Drupal works? Brian G 2009-07-03T14:16:54Z 2009-07-03T14:16:54Z Great explanation Eaton, Thanks for hanging out here. My question for you is, how do you debug all this, other than putting var_dump in each module to find out what happened? http://stackoverflow.com/questions/1074290/calculate-the-difference-between-date-times-in-php Comment by Brian G on Calculate the difference between date/times in PHP Brian G 2009-07-02T14:44:37Z 2009-07-02T14:44:37Z The purpose which I should have stated is to find out how much time do I have until 17:00 in another timezone, actuallys its a look so many other timezones. http://stackoverflow.com/questions/907709/drupal-6-views2-how-to-build-a-view-of-non-nodes/907840#907840 Comment by Brian G on Drupal 6 - Views2 - How to build a view of non-nodes Brian G 2009-05-27T15:05:23Z 2009-05-27T15:05:23Z Thanks. but what I am not seeing is a way to have Views display something that does not come from a table. Any ideas on that? http://stackoverflow.com/questions/781873/how-to-figure-out-size-of-indexes-in-mysql/781888#781888 Comment by Brian G on How to figure out size of Indexes in MySQL Brian G 2009-04-23T14:22:12Z 2009-04-23T14:22:12Z I did not downvote it, but for some reason it does not work for calculating the size of primary key indexes on cluster http://stackoverflow.com/questions/714813/how-can-i-remove-all-tokens-with-non-word-characters-in-perl/714842#714842 Comment by Brian G on How can I remove all tokens with non-word characters in Perl? Brian G 2009-04-03T17:28:14Z 2009-04-03T17:28:14Z This works except that it still keeps strings containing numbers http://stackoverflow.com/questions/530895/drupal-how-to-get-a-view-to-display-as-columns-rather-than-rows/530934#530934 Comment by Brian G on Drupal How to get a view to display as columns rather than rows Brian G 2009-02-10T11:08:09Z 2009-02-10T11:08:09Z Is Panels ready for Drupal 6 yet? http://stackoverflow.com/questions/311383/script-to-publish-my-so-qs-and-as-on-my-twitter/521142#521142 Comment by Brian G on Script to publish my SO Q's and A's on my twitter? Brian G 2009-02-06T18:44:32Z 2009-02-06T18:44:32Z a Summary would be cool too. You may have to build a parser for that. http://stackoverflow.com/questions/520593/how-do-you-clear-your-visual-studio-cache-on-windows-vista/520684#520684 Comment by Brian G on How do you clear your Visual Studio Cache on Windows Vista Brian G 2009-02-06T16:16:56Z 2009-02-06T16:16:56Z That worked in removing my cache. Thank you very much. http://stackoverflow.com/questions/520593/how-do-you-clear-your-visual-studio-cache-on-windows-vista Comment by Brian G on How do you clear your Visual Studio Cache on Windows Vista Brian G 2009-02-06T15:33:50Z 2009-02-06T15:33:50Z yes, it is Team Edition for Software Architects http://stackoverflow.com/questions/38670/asp-net-controls-cannot-be-referenced-in-code-behind-in-visual-studio-2008/38704#38704 Comment by Brian G on ASP.NET controls cannot be referenced in code-behind in Visual Studio 2008 Brian G 2009-02-06T14:56:05Z 2009-02-06T14:56:05Z Do you know where this cache is in Vista? http://stackoverflow.com/questions/107867/what-was-your-best-heroic-moment/107886#107886 Comment by Brian G on What was your best heroic moment? Brian G 2009-02-05T13:34:22Z 2009-02-05T13:34:22Z Do you think your boss is wiser now? http://stackoverflow.com/questions/512144/drupal-customize-a-create-content-form-for-a-certain-content-type/512533#512533 Comment by Brian G on Drupal - Customize a create content form for a certain content type Brian G 2009-02-04T18:17:58Z 2009-02-04T18:17:58Z This is also relevant to Drupal 5, I guess?