summaryrefslogtreecommitdiff
path: root/themes
Commit message (Collapse)AuthorAge
* A lot of small changes (search-n-replace) make a big commit:Dries Buytaert2001-04-06
| | | | | | | | | | - fixed update bug in book.module - provide a log message when both adding and updating book pages - all configurable variables are now accessed through "variable_get()": - rewrote watchdog and submission throttle and removed watchdog.inc - improved robustness of sections.inc - imporved story.module - updated ./database/database.sql
* Commiting my work of last Sunday:Dries Buytaert2001-04-02
| | | | | | | | | | | | | | | | | | | | | | - removed ban.inc and ban.module and integrated it in account.module under the name "access control" --> the ban code was not really up to standard so this has now been dealt with. This refactoring and reintegration cuts down the code size with 100 lines too. :-) (The ban.module code was really old and it showed.) - added node.module and made the other modules reuse some of this code --> cut down the code size of modules by at least 100 lines and adds stability. - added a status() function to admin.php to display a conform status message where appropriate. See admin.php for usage. - removed $theme->control() and made comments.inc handle this itself wrapped in a $theme->box(). No need to clutter the themes with such complexity --> updated all themes already. :-) - some small visual changes to some administration pages to be more consistent across different modules.
* Make the logo slightly better... removed the color from the center dots.Steven Wittens2001-03-31
|
* Fixed article/body bugSteven Wittens2001-03-31
|
* Fixed bug with $story->bodySteven Wittens2001-03-31
|
* Fixed bug:Steven Wittens2001-03-31
| | | | "na" appeared when a story didn't have "read more"
* - fixed "you-have-to-logout-and-login-before-permissions-change" bugDries Buytaert2001-03-31
| | | | | | | (reported by UnConeD) - added "add node" link to book selection box and made it display the current location - removed tabs and whitespaces from themes - done automatically
* Added/updated the theme-description at the top...Steven Wittens2001-03-31
|
* - visual improvements to example.theme, simplified HMTL code (- 20Dries Buytaert2001-03-31
| | | | | | lines) - made node.inc more robust: it should roll-back when something goes fubar and it should work in subdirectories
* - fixed small problem in example.themeDries Buytaert2001-03-28
|
* - large commit of everything else that has been queued in my backlog:Dries Buytaert2001-03-25
| | | | it's not 100% stable yet
* - themes now get there header/footer links through theme_link();Dries Buytaert2001-03-24
| | | | - tidied up example.theme
* - removed all trailing whitespaces and replaced tabs by 2 spacesDries Buytaert2001-03-24
| | | | (done automatically by my script)
* - fixed potential quote problem: wrapped $story->section in a check_outputDries Buytaert2001-03-24
| | | | - removed all $story->update related logic - the update field is redundant
* - changes to the fontDries Buytaert2001-03-24
| | | | - removed all $story->update related logic - the update field is redundant
* Hey,Jeroen Bensch2001-03-24
| | | | | | I changed cellpadding="0" to cellpadding is="1" in the box function. I saw on http://drop.org/ that the box subjects sticked to the border. This shoud fix it. Jeroen.
* Moved the style sheet back IN the theme. It seems Netscape resolves url's ↵Steven Wittens2001-03-23
| | | | inside stylesheets relative to the page it is in, while IE/Opera resolve them relative to the path of the stylesheet.
* oopsSteven Wittens2001-03-23
|
* theme updateSteven Wittens2001-03-23
|
* - fixed quote problem reported by JaredDries Buytaert2001-03-22
|
* fixed the backgroundSteven Wittens2001-03-21
|
* Hopefully this will fix the theme, but I doubt it... some very strange ↵Steven Wittens2001-03-21
| | | | things are going on here.
* Added my new theme "Goofy". It's bright and very summer-ish.Steven Wittens2001-03-20
| | | | Test it out :) (I wouldn't put it on drop.org yet)
* oops small typoSteven Wittens2001-03-20
|
* Theme update:Steven Wittens2001-03-20
| | | | - added a small 'info header' in comments... might be better for when we get more themes.
* theme update:Steven Wittens2001-03-20
| | | | | - removed the department stuff - boxed the comment controls
* - removed useless slashesDries Buytaert2001-03-19
|
* Hey,Jeroen Bensch2001-03-12
| | | | | | | | | | | | | | Fixed jeroen.theme. 1. comment() function only gets 2 arguments. And as I made example.theme from jeroen.theme I don't see how thread got in there. 2. That must have sneaked in while I stripped down my theme to get to example.theme. 3. Fixed, it was already done in my top-right navigation box, but I must've forgotten it at the bottom. 4. OK, no more variable timestamp but straigt in the code. :) Jeroen.
* During my nigthly session I fixed a few glitches in the example theme.Dries Buytaert2001-03-12
| | | | | | | | | | | | | | | | | | | Read them carefully because the other theme might need updating too (I don't think so though). I could only commit it now because I didn't had the time to write up these comments/remarks yet. So here goes: 1. the comment() function only takes 2 arguments - $thread is no longer needed and shouldn't be used in the code either. 2. I added 2 COLSPAN's to fix a <TD> problem in the story() function. 3. <A HREF="">home</A> is will not work properly when using drupal in a subdirectory! Simply use <A HREF="index.php">home</A> instead - it does matters. ;-) 4. Removed the $timestamp = format_timestamp(...)'s and used them "directly" just like this is done for format_username and others. It's generally more consistent now. :-)
* Hey,Jeroen Bensch2001-03-11
| | | | | | did some stupid things in my previous update. But now it's OK (I did </BR> instead of <BR>. Jeroen.
* Hey,Jeroen Bensch2001-03-11
| | | | | | | OK, this is perfectionism. I had http://jeroen.drop.org/ validated once again, and noticed an error with a </P>, it said that the paragraph wasn't opened. But it occured near a story as we do <P> check_output(story->abstract) </P> I was pretty certain the paragraph was open. :) OK, so it wasn't the theme's fault, neither was it the engine. Then I went to take a look at the actual story and what did I see. It used a BLOCKQUOTE. After deleting the BLOCKQUOTE, messing around with the HTML, trying to insert it again. It always gave me the error when it was inserted... What's my conclusion? BLOCKQUOTE isn't allowed inside a paragraph... Solution? We could take the option to use the blockquote HTML tag in a story or comment out of drupal. But I really like blockquote. So I now changed <P> check_output(story->abstract) </P> to <BR> check_output(story->abstract) </BR> because, basicly, that does the same thing. I'd advise you to do so too, I might do it for you if you please. Not that I really care about it, but lately we've got some queer w3-lovers on our back. Let's shake them off, allright? ;) Jeroen.
* Hey,Jeroen Bensch2001-03-11
| | | | | | | | If we're lucky this tiny jeroen.theme update might just save us from 5 HTML 4.01 bugs. If we're very lucky it'll solve 7. If we're unlucky only the code has improved. Jeroen.
* Hi,Jeroen Bensch2001-03-11
| | | | | | OK and this should be marvin.theme. We gained like 20 lines or so. But there aren't many graphics in marvin and a lot of stuff I'd put on several lines, Dries doesn't. Nevertheless, a good optimalization. Glad Dries came up with this. :) Jeroen.
* Hi,Jeroen Bensch2001-03-11
| | | | | | | OK I fixed UnConeD's theme. Let's hope I didn't break anything. It were 256 lines and now there are 227 left. A save of 30 lines. Not too bad huh? Let me check Dries' theme now. Jeroen.
* OK, lets hope this works... I should've added a directory example/ in ↵Jeroen Bensch2001-03-10
| | | | | | themes/ and in example/ there should be example.theme Jeroen.
* Tidyed up the code a bit, so it'd generate less errors when running it ↵Jeroen Bensch2001-03-10
| | | | | | | | throught w3's HTML validator. Couldn't check it because I don't have any working webspace, so Dries, upload it and I'll check, I am pretty certain that it'll solve a whole lot of errors, since I fixed a bug in story... story being generated about ten times in the HTML code on drop's main page. I expect about 30 errors less... Jeroen. P.S.: I don't think I'll get unconed.theme and marvin.theme updated today. But I promise I'll do it tomorrow. Had to go eat with my family, just got back and in 2 hours I am leavin for the movies. Hope you don't mind, but it's always cooler to commit patches closer to the release date... gives you this "rush" feeling. Ahh, deliberately doing stuff on the nick of time... sweet :)
* - applied David Norman's patch to turn all <?'s into fully qualifiedDries Buytaert2001-03-10
| | | | <?php's.
* I think you all read the mail about what has changed, I also did the tiny ↵Jeroen Bensch2001-03-09
| | | | | | abstract/Editor's note update. :) Jeroen.
* - some important changes to our theme API which can be summerized as:Dries Buytaert2001-03-08
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | abstract() + article() = story() abstract() and article() have been merged into a new function story() which looks like: function story($story_object, $reply) { if (!reply) { // full story } else { // main page version / abstract } } This should allow you to "compress" your theme as abstract() and article() tended to be 98% identical. => I didn't really merge your themes so I leave it up to *you* to improved the code!!! Do it ASAP as we release drupal 2.00 in 7 days. In future we'll have similar functions for other content types as for example: review($review, $reply); enquete($enquete, $reply); ...
* Oh, yes, I remember, I took away the drop META tags as Dries requested, also ↵Jeroen Bensch2001-03-05
| | | | | | | | I changed the ALT="drop.org logo" to ALT="". But Dries, I can't make everything drop independant. Since I work with the random logo's... Also removed a style tag that I didn't use. Jeroen.
* Has he gone insane! No. I just (but that's just my opinion) made a major ↵Jeroen Bensch2001-03-05
| | | | | | | | improvement to my theme. In one of my unentertained moments I often just browse to drop and stare at my theme for a while. ;) Then I saw that the border around my boxes was 2 pixels wide and grey. Cool. But I thought, let's try it the same way as I do the stories. With a slick 1 pixel wide black border. And so I did. And I admit, it just looks a whole lot better, slicker, smoother, professional. You probably won't notice it at all, and probably no-one would notice. But again, I'd advise you to take a look at http://jeroen.drop.org and look at the boxes before Dries updates these .gifs. Another thing, Unconed, you probably know more or this. What do you think I should use for my images? .gif or .png. What's the advantage of .png, and most of all, is it smaller in size? Jeroen. P.S.: another jeroen.theme is coming up. Don't even know what I changed anymore but I changed something...
* Hey,Jeroen Bensch2001-03-05
| | | | | | I updated some things, remove some PHP lines in the comment function, that I think weren't necessary (did that in the previous commit but forgot to mention it) also I renamed all the PHP?> tags to ?>. I read in the docs at http://php.net that this is the way to go. Also I renamed all <? to <?PHP. I added a BCGOLOR again, so my theme's build up is a little nicer again. Spotted four (yes 4) bugs. I now use regular HTML to assign colors but in abstract and article, the sections were still done the old way. Fixed that now, but left them black. Oh yeah, I fixed that weird rendering of my theme I think Dries was talking about. He didn't exactly mention what was wrong but I assume that it were the links in abstract and article that didn't display at the right of the story. Because I deleted some tables I had to add COLSPAN="2". However, when I loaded my page locally on eden it displayed correct. But when I browsed to drop it didn't (in the same browser) Do you get it? I sure don't. It was the same HTML code, but seems differently parsed when coming from an outside server. Allthough I don't see why Netscape would see apache locally as something different than another one. Nevertheless, I think it's fixed. Jeroen.
* Hi all,Jeroen Bensch2001-03-05
| | | | | | I tweaked my theme a bit, don't know if it'll help much but I was able to squeeze a table out of abstract and article. So what you'd say? Well, since the abstract function is called for every post on the main page, I thought that it'd improve it a bit. Of course it isn't much but less tables to show the same is always a good thing. Also, due of the deleted table, I could delete some backgrounds (less traffic from the server to the client) and placed them once in a TABLE header. OK, but a cool side-effect is that it's more HTML 4.01 compliant. Because BACKGROUNDs are allowed in TABLEs and I think it's a bit unclear if they can be in TD yes or no. Either way, this brought to my attention that my !DOCTYPE is strict... I started of strict though... But I think it's a better idea to switch to transitional/loose. OK I think that was it... Oh also because of the changed TABLE structure I had to delete some BGCOLORs. Again, it might be a teeny weeny bit faster, but when you see my site being build up it isn't that nice anymore. (bgcolors are displayed faster than backgrounds). Nevertheless its the result that counts not? Let's hope everything still works. Jeroen.
* - various smaller updates before I start watching Formula 1 with [a] aDries Buytaert2001-03-04
| | | | | 0.5 liter box of Haagen-Dhaz (Belgian Choclate) and [b] my laptop on my lap for drupal hacking. Life hardly can get any better than this.
* code revision:Dries Buytaert2001-03-03
| | | | | - small "path"-fix with logo which could have triggered when running drupal in a subdirectory
* - As I'm working down my TODO list, I updated your themes:Dries Buytaert2001-03-03
| | | | | | $theme->comment() only takes 2 parameters ever since the comment system rewrite 2 months ago. Make sure to update your local tree before you start hacking away on your themes.
* Added 3D drop :)Steven Wittens2001-03-02
|
* - removed all hardcoded references to "drop.org" from my themeDries Buytaert2001-03-02
|
* - forgot to wrap the links in the footer and header in t()-functionsDries Buytaert2001-03-02
| | | | (Is your theme 100% translatable or not?)
* - fixed small translation glitch in format_intervalDries Buytaert2001-03-01
| | | | | | - added a couple of missing t() functions - improved the comments module, fixed the score problem Jeroen reported earlier -> it's slicker but I hope it won't break anything