Changeset 1316

Timestamp:
12/05/06 05:53:28 (1 year ago)
Author:
scott
Message:

r2495@scott17 (orig r1273): pdcawley | 2006-09-28 15:54:36 -0700
Added a branch for experimental work.


r2496@scott17 (orig r1274): pdcawley | 2006-09-28 15:56:02 -0700
Started an experimental branch to make a restful typo that works
well with edge rails (and eventually rails 1.2)


r2497@scott17 (orig r1275): pdcawley | 2006-09-28 16:15:28 -0700
Got rid of all the deprecation warnings except for one that's thrown by image_path
which, frankly, shouldn't be thrown by Rails at all. One test is failing, but again
that appears to be a Rails bug.


r2498@scott17 (orig r1276): pdcawley | 2006-09-28 23:36:25 -0700
Ah... it turns out that the issue I had with an earlier version of the
image_path deprecation is no longer with us, but there were places
where we were doing the old, stupid thing.


That's been fixed now, so no more deprecation warnings. Huzzah!


r2499@scott17 (orig r1277): pdcawley | 2006-10-26 11:34:53 -0700
Wow! What a lot of 'start_form_tags' there were.


Getting rid of those deprecation warnings cover most of the mods here.


Other mods are getting rid of various instance variable access.


r2500@scott17 (orig r1278): pdcawley | 2006-10-26 12:29:44 -0700
A slightly more sane migration 56. It probably breaks on everything
but MySQL, but at least it documents the intent...



r2501@scott17 (orig r1279): pdcawley | 2006-10-26 23:29:15 -0700
Applied Tim Connor's fix for commenting with IE to a Scribbish themed
blog. Thanks Tim.
r2502@scott17 (orig r1280): pdcawley | 2006-10-27 12:02:04 -0700
Mmm... instance caching... you know you *want* it!
r2503@scott17 (orig r1281): pdcawley | 2006-10-29 22:46:03 -0800
Doing Blog.find_by_base_url(...) for every single request when the mapping
from base url to blog id changes once a flood and Blog.find(<id>) is,
putting it mildly, rather quicker, seems somewhat silly.


So now we calculate a mapping from base url to blog id in environment.rb and
use that. Doing this actually reduces the query count for index pages etc,
because before we were doing one find by base url and then later populating the
instance cache via a find by id.


Whee! More performance fixes coming your way soon.
r2504@scott17 (orig r1282): pdcawley | 2006-11-01 10:08:10 -0800
Fixed the case of the 'frameborder' tag in the iframe.
r2505@scott17 (orig r1283): pdcawley | 2006-11-04 11:55:12 -0800
Made sure flickr uses the key we set in config/environment.rb as its default.
Possibly rolling forward a change I think I accidentally rolled back.
r2506@scott17 (orig r1284): kevin | 2006-11-16 18:22:35 -0800
Fix TextFilter::Macro text processing to match the exact tag name.
Formerly a macro <typo:foo> would trigger if it saw <typo:foobar>.
r2507@scott17 (orig r1285): kevin | 2006-11-16 19:03:16 -0800
Fix page_header_includes so it doesn't put extra newlines between each page_header_* element in the whiteboard.
r2508@scott17 (orig r1286): kevin | 2006-11-16 19:15:26 -0800
Make the spacing for page_header match the rest of the header
r2509@scott17 (orig r1287): kevin | 2006-11-16 19:39:09 -0800
Fix typo in Amazon Domain Suffix help
r2510@scott17 (orig r1288): kevin | 2006-11-16 19:40:13 -0800
Fix some spacing in the lightbox plugin
r2511@scott17 (orig r1289): kevin | 2006-11-16 19:40:55 -0800
Allow textfilter plugins to provide an :options array for the default_config which gets translated into a dropdown menu
r2512@scott17 (orig r1290): kevin | 2006-11-16 20:13:48 -0800
Fix the new :options array for textfilter plugins to translate spaces to _
r2513@scott17 (orig r1291): kevin | 2006-11-16 20:16:03 -0800
Because many Rails hackers use TextMate?, this plugin is probably useful to other people.
Adding a new textfilter <typo:tmcode> which lets you embed HTML created from documents in TextMate?, with the appropriate theming. The way this works is you select the code in TextMate? and select Create HTML From Selection (in the TextMate? bundle). This resulting code you then wrap in a <typo:tmcode> tag. It will handle importing stylesheets as appropriate. Read the help for more help.
If you want to add styles not listed, just ping me and I'll either add it or write up docs on how to do it yourself
r2514@scott17 (orig r1292): kevin | 2006-11-16 20:49:07 -0800
Override some more properties in textmate.css to ensure blog themes don't adversely affect code themes.
Fix tabs->spaces in textmate.css
r2515@scott17 (orig r1293): kevin | 2006-11-16 22:34:08 -0800
metaWeblog methods which return a permalink now actually return a permalink, rather than just the "permalink" field of Article
r2516@scott17 (orig r1294): kevin | 2006-11-16 22:38:43 -0800
Fix the rsd.xml file to use full URLs in the apiLink parameter
r2517@scott17 (orig r1295): pdcawley | 2006-11-23 02:55:57 -0800
Fixed sidebars to work with the 'cache_classes' setting turned off.


r2518@scott17 (orig r1296): pdcawley | 2006-11-23 03:07:09 -0800
Made text filters play nicely too.


r2519@scott17 (orig r1297): pdcawley | 2006-11-23 04:02:09 -0800
Squashed a deprecation in the general controller.


r2520@scott17 (orig r1298): pdcawley | 2006-11-23 06:23:53 -0800
Did a rake rails:update


r2521@scott17 (orig r1299): pdcawley | 2006-11-23 06:46:25 -0800
Made a branch in case we need to backport Rails 1.1.6 compatible fixes
from the trunk (which is about to require Rails 1.2)


r2522@scott17 (orig r1300): pdcawley | 2006-11-23 06:49:48 -0800
Whoah! 133 lines of changes?


Yup, fixing all the edge rails/rails 1.2 deprecations has been somewhat
time consuming. That's about all that happens in this changeset. Typo is
now ready and waiting to take on the challenge of Rails 1.2.


Go typo!



r2523@scott17 (orig r1301): pdcawley | 2006-11-23 10:55:24 -0800
Assorted tweaks.
r2524@scott17 (orig r1302): pdcawley | 2006-11-24 02:51:23 -0800
First step on a long needed refactoring. We're splitting the contents table into
two. We now have a contents table, which contains Pages and Articles, and a
Feedback table, which contains Comments and Trackbacks. There's still a bunch of
null columns in each table, and the indexing needs tweaking, but it's a start.


NB: The migration is untested on anything but my Mysql installation and if it
goes wrong you stand to lose all your feedback. So take a backup before you
try it. The Migration itself throws an exception by default to remind you to do the
backup. Comment it out once you're safe (or brave/foolhardy).
r2525@scott17 (orig r1303): pdcawley | 2006-11-24 02:56:34 -0800
A possible fix for an sqlite issue
r2526@scott17 (orig r1304): pdcawley | 2006-11-24 10:43:41 -0800
Removing some useless columns from the contents and feedback tables.
r2527@scott17 (orig r1305): pdcawley | 2006-11-24 22:50:24 -0800
Switched Rails to the release candidate branch


r2528@scott17 (orig r1306): kevin | 2006-11-30 04:39:26 -0800
Fix a few incorrect assert_tags. They weren't failing because of a bug in assert_tag itself.
Remove the xpath test helpers and replace the single usage of them with an assert_tag
r2529@scott17 (orig r1307): kevin | 2006-11-30 04:44:11 -0800
Run rake rails:update
r2530@scott17 (orig r1308): kevin | 2006-11-30 13:32:13 -0800
Fix deprecation warning.
We're now using RJS for adding attachments to articles when editing.
Additionally, don't bother talking to the server to remove an attachment line since it's not at all necessary.
r2531@scott17 (orig r1309): kevin | 2006-11-30 13:42:23 -0800
Add some nice blind animations to the content edit page
r2532@scott17 (orig r1310): kevin | 2006-11-30 15:41:18 -0800
Switch article edit preview from a div to an iframe.
This lets is preview a full, but minimal, HTML page, including the page_header stuff.
Basically, if you want to use something like <typo:tmcode> it'l actually work in the preview.
This works in Safari and Firefox. I hope it works in IE, but I have no way of testing
r2533@scott17 (orig r1311): kevin | 2006-11-30 15:54:58 -0800
Fix preview tests for the new data: URI format
r2534@scott17 (orig r1312): kevin | 2006-11-30 15:55:05 -0800
Remove now-defunct test for attachment_box_remove
r2535@scott17 (orig r1313): kevin | 2006-11-30 16:00:03 -0800
Add charset to theme stylesheets/javascripts, as the test indicates it should be there
r2536@scott17 (orig r1314): kevin | 2006-11-30 16:02:15 -0800
Replace two instances of @flash with flash
r2537@scott17 (orig r1315): kevin | 2006-12-04 09:49:55 -0800
Tag.to_prefix should be "tag" not "tags"

(No files)

    Legend:

    Unmodified
    Added
    Removed
    Modified
    Copied
    Moved