Go to main content

Textpattern CMS support forum

You are not logged in. Register | Login | Help

#1 2004-02-27 14:29:07

Dean
Founder (Gone, but not forgotten)
From: Languedoc
Registered: 2004-02-14
Posts: 235
Website

Gamma 1.13c Released

Available in deanload.

(A small patch or three :-) was required for g1.13)

A reminder that if you are upgrading, you need only replace the files in your /textpattern/ directory, EXCEPT config.php

Changes:

  • <txp:search_input /> now accepts a form="" parameter to use a named form for output
  • Added <txp:site_slogan /> as a Useful tag
  • Added an option in CSS to ‘copy as…’ the current style sheet
  • Added an option to ‘save as…’ while editing raw CSS data
  • Added an option to limit recent_articles output by category (thanks michaeln3)
  • Added missing whitespace between ‘a’ and ‘href’ in messy tag output for recent_articles
  • Added new form category ‘misc’ for search inputs, etc
  • Fixed a ‘txpath’ variable collision error when previewing article forms
  • Fixed a failure when saving new css files
  • Fixed a problem in the ‘write’ window where page top and css would disappear when paging through articles or changing sort order
  • Fixed a problem where changed section names weren’t being saved
  • Fixed a problem where properties were disappearing from the CSS editor when they carried a value of ‘0’
  • Fixed an ‘undefined Title’ error when posting a new article
  • Fixed how Textile handles article titles
  • Fixed incorrect time offset display in Txp comments editor
  • Improved the behaviour of article searches in write tab
  • Installer now does a better job defining doc_root (though it should still be confirmed)
  • Keyed (almost) all remaining hard-coded text in the Txp interface to the lang file (thanks to mamash for the help)
  • Removed some extremely supercilious log entries from the sql installer
  • The tags category_list, recent_articles and related_articles should now be able to accept the parameters wraptag="ul" break="li" and produce a well-formed list
  • Values in the popup selectors presented when building tags are now in alphabetical order

text*

Offline

#2 2004-02-27 15:14:29

ian
Archived Plugin Author
From: Santa Cruz, CA, USA
Registered: 2004-02-25
Posts: 6
Website

Re: Gamma 1.13c Released

Both my bugs got fixed a day after reporting them in Mantis. Now that’s service.

Offline

#3 2004-02-27 16:18:11

mamash
Member
From: Prague
Registered: 2004-02-21
Posts: 127
Website

Re: Gamma 1.13c Released

Dean, there are some problems in txp_image.php – still some strings hard-coded (line 31, 103, 113, 318) and parenthesis mismatch on line 125 that breaks the page.


Who’s gonna textdrive you home tonight?

Offline

#4 2004-02-27 16:19:58

Dean
Founder (Gone, but not forgotten)
From: Languedoc
Registered: 2004-02-14
Posts: 235
Website

Re: Gamma 1.13c Released

Oh crap. Hang on…


text*

Offline

#5 2004-02-27 16:25:45

Dean
Founder (Gone, but not forgotten)
From: Languedoc
Registered: 2004-02-14
Posts: 235
Website

Re: Gamma 1.13c Released

Whee, what a ride! g1.13b should be good.

Apologies, etc.


text*

Offline

#6 2004-02-27 16:32:24

lfm
New Member
From: Los Angeles, CA
Registered: 2004-02-24
Posts: 3
Website

Re: Gamma 1.13c Released

Just a thought, Dean: your ‘upgrade’ instructions should say to upload everything to the /textpattern/ directory “…except config.php and setup.php”. Not, I think, that this is going to pose a problem to anyone on the board.


——Ne omnes errabundi perditi sunt.——

Offline

#7 2004-02-27 16:49:13

mamash
Member
From: Prague
Registered: 2004-02-21
Posts: 127
Website

Re: Gamma 1.13c Released

You shouldn’t hurry so much, Dean. The mistakes are still present in 1.13b. The line 125 in txp_image.php now has:

<code> graf(gTxt(‘image_category’).br.selectInput(‘image_category’), $categories,$category) .
</code>

while it should read

<code>
graf(gTxt(‘image_category’).br.selectInput(‘image_category’, $categories,$category)) .
</code>

Then the hardcodeds strings – the lines below should read:

<code>
31: upload_form(gTxt(‘upload_file’),gTxt(‘upload’),‘image_insert’),
104: br.upload_form(gTxt(‘replace_image’),‘replace_image_form’,
115: upload_form(gTxt(‘upload_thumbnail’),‘upload_thumbnail’,
319: fInput(‘submit’,’‘,gTxt(‘upload’),‘smallerbox’)).
</code>

Last edited by mamash (2004-02-27 16:58:58)


Who’s gonna textdrive you home tonight?

Offline

#8 2004-02-27 17:10:48

Al
Member
From: Deep in the north woods
Registered: 2004-02-24
Posts: 20
Website

Re: Gamma 1.13c Released

Wow, what a wonderful batch of fixes. Thanks so much.

I hesitate to mention something so minor, but the fix for the ‘view site’ link in subdirectory installs (detailed here, <a href=“http://forum.textpattern.com/viewtopic.php?id=138”>http://forum.textpattern.com/viewtopic.php?id=138</a>) doesn’t seem to have made it into 1.13b.

Offline

#9 2004-02-27 17:19:42

Mr. Brownstone
New Member
Registered: 2004-02-25
Posts: 2

Re: Gamma 1.13c Released

Thanks for the fixes!

Multiple articles per-page now work, but there still is a small problem:

I have this in my page:

&lt;txp:article form=“Commentary” limit=“1” section=“Commentary” />
&lt;txp:article form=“Single” limit=“1” section=“Articles” />

Despite the seperate SECTION parameters, the most recent article of all sections is shown instead. (Essentially showing the same article twice.) The same happens if you specify a CATEGORY parameter too; instead of showing only articles from that category, the most recent article is displayed (regardless of what category it is, essentially ignoring the parameter you specified.)

Sorry if I have not explained this very well. I hope you can figure out what I’m getting at, and hope also that you get time to fix it. Thanks again! :)

Last edited by Mr. Brownstone (2004-02-27 17:20:39)


Of course, that’s just my opinion. I could be wrong.

Offline

#10 2004-02-27 17:38:06

Mr. Brownstone
New Member
Registered: 2004-02-25
Posts: 2

Re: Gamma 1.13c Released

Looks like I fixed my own problem. ;)

Instead of using SECTION, I used S instead:

&lt;txp:article form=“Commentary” limit=“1” s=“Commentary” /&gt;
&lt;txp:article form=“Single” limit=“1” s=“Articles” /&gt;

And it works! :D


Of course, that’s just my opinion. I could be wrong.

Offline

#11 2004-02-27 17:59:20

Dean
Founder (Gone, but not forgotten)
From: Languedoc
Registered: 2004-02-14
Posts: 235
Website

Re: Gamma 1.13c Released

Allright, Is that a patch over your eye or are you just glad to see me?

Now it’s g1.13c

The juxtaposition of Friday and the number 13 are working wonders here today.


text*

Offline

Board footer

Powered by FluxBB