navid
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Changelog RSS feedThis sort of daily documenting is a burden for the developers and will take time away from real development. The nightlies are supposed to be for the cutting edge folk. It’s a shame that 1.5 is soo good that there are soo many people running them. It’s really not supposed to be that way!
Maybe some sort of public cvs label sniffer would work best.
Forum: Fixing WordPress
In reply to: Pages FunctionalityCan you clarify which template tags you are referring to? While I was developing my WP Lists plugin, I too thought that the RunPHP was overkill and I wrote my own little parser which interprets custom HTML tags into executable code. For example:
<list id="#" showlinks="true" />Forum: Fixing WordPress
In reply to: login ErrorMoxie, if I recall correctly, someone rewrote the login.php again recently too. If it’s solid, then I’m sure it will get incorporated into the 1.5 final release.
Forum: Fixing WordPress
In reply to: Theme/Style methods changed?WordPress is right now in a snag — the development pace and support is phenomenal (thanks to allusion and rboren) and as consequence, there are a lot more people using the nightly builds then people normally would… I guess the best part is that although the developers may feel overwhelmed, the general consensus is that early and frequent reports only creates a better and more stable product down the ways. I heart WordPress.
Forum: Fixing WordPress
In reply to: nobreakspace / validation issuesWhat text editor are you using to open sidebar.php up?
Forum: Fixing WordPress
In reply to: \’ backslash appears before apostrophe in commentsI think you simply will need to find the plugin and the last line will be something like:
return $text;You should change it to something like:
return stripslashes($text);Then again, I could be talking out of my ass.
Forum: Fixing WordPress
In reply to: Different Homepage while keeping site in WPI believe you can have a blog URI and a site URI. Just point your site URI to: http://www.mysite.com/wp/ and have your blog URI point to: http://www.mysite.com and I think it will do what you people are explaining.. I have that currently setup at http://www.navidazimi.com (everything is driven by WP 1.5 even though its not installed in the root folder)
Forum: Everything else WordPress
In reply to: Recommend a host for my blogI have been hosted happily by http://www.hostrocket.com for 5+ years now. I have had zero problems. I love them to death. They may appear slightly pricer then “free” but I guarantee that the service and quality is there.
Forum: Fixing WordPress
In reply to: Hackers mailing lists (still down according to Podz)Forum: Everything else WordPress
In reply to: 2005 Weblog AwardsCan we get a URL?
It hardly appears you will need multiple installations of WP, but rather, you need to tweak your index so it recognizes where it is coming from (2-col vs. 3-col) and deals with it accordingly.
There are probably a number of ways to do this; cookies, url parameters, etc. But probably the cleanest and best way to do this is using a hidden form attribute to pass the page style to the next page.
It would probably look something like:
<form ...>
<input type="hidden" name="page_style" value="<?php $page_style ?>" />
....
</form>I hope I understood your problem… Good luck.
Forum: Installing WordPress
In reply to: general Step 3.I believe WP is not yet compatible with PHP 5.0+
Forum: Themes and Templates
In reply to: Easy tables in WordPressYou might want to try to use lists… http://www.navidazimi.com/projects/wp-lists/
Forum: Plugins
In reply to: Plugin Request: Underline quicktag in editorI don’t think it would take much effort to implement, but I think the main reason it has been omitted to begin with is that it’s pretty bad usability to underline something that is not a link.
Generally, if you are trying to make things standout, you bold them.Forum: Fixing WordPress
In reply to: Bug: Quotemarks in LinksDid you post this bug in the bug database? Last time I posted a bug it was fixed within 8 hours and was available in the next nightly build. Let me know if you need a url.