Re: Favicon and umlauts

2010-03-22 Thread Markus Weimar
>> This behavior is odd. The relative path should be computed in relation >> to index.php and not to the page. Interestingly this only happens with >> clean URLs, maybe as sub-pages translate to slashes and / means path. > > You must be exactly right. The cleanUrls no doubt confuse things. This > i

Search on boltwire.com

2010-03-22 Thread Markus Weimar
When trying to search I see: Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 15747655 bytes) in /home3/fastst/public_html/bolt_barn/boltwire/barn/scripts/engine.php on line 725 Markus -- You received this message because you are subscribed to the Google Groups "

Re: Zones

2010-03-22 Thread Markus Weimar
http://www.boltwire.com/index.php?p=docs.admin.performance On Mon, Mar 22, 2010 at 4:10 PM, The Editor wrote: > It would be a good idea to create that page, and allow people to start > adding content as they think of things... > > Cheers, > Dan > > > On Mon, Mar 22, 2010 at 11:01 AM, Markus Weima

Re: Source function

2010-03-22 Thread Markus Weimar
On Mon, Mar 22, 2010 at 4:09 PM, The Editor wrote: > On Mon, Mar 22, 2010 at 10:22 AM, Markus Weimar > wrote: >> >> First, I would list the parameters for each function above its code. >> In my opinion a good function doc string tells you what the function >> does, what the parameters are, and wh

Re: 3.4.9 Search blank screen

2010-03-22 Thread Kevin
I was backwards. 4am. On Mon, Mar 22, 2010 at 7:59 AM, The Editor wrote: > On Mon, Mar 22, 2010 at 6:56 AM, Kevin wrote: > > Did a search for header and ended up with a blank screen. > > > > the URL in the browser window says: > > > > http://www.tnet.com/main&action=search&myquery=header > > >

Re: A Twitter Clone with Info

2010-03-22 Thread The Editor
This is a great idea Martin. I'd be happy to add an auto-increment option. Info vars are easily extensible after all. The easiest option would be a simple function like [(nextinfo info.somepage)]. Reads the values and spits out the next available number. Then you could do [(info field={(nextinfo

Re: Favicon and umlauts

2010-03-22 Thread The Editor
On Mon, Mar 22, 2010 at 10:36 AM, Markus Weimar wrote: > 1) In index.php before the engine call: > $farmPath = 'http://' . $_SERVER['HTTP_HOST'] . '/boltwire/farm'; > > Leads to: > img: http://localhost:/boltwire/farm/img > farm: http://localhost:/boltwire/farm > > Good. > > This works on

Re: Zones

2010-03-22 Thread The Editor
It would be a good idea to create that page, and allow people to start adding content as they think of things... Cheers, Dan On Mon, Mar 22, 2010 at 11:01 AM, Markus Weimar wrote: > Good decision. > > New user -> small site -> performance a non-issue > > Experienced user -> docs -> "Improving p

Re: Source function

2010-03-22 Thread The Editor
On Mon, Mar 22, 2010 at 10:22 AM, Markus Weimar wrote: > > First, I would list the parameters for each function above its code. > In my opinion a good function doc string tells you what the function > does, what the parameters are, and what the function returns. At a > minimum. I'd like to see th

Re: Zones

2010-03-22 Thread Markus Weimar
Good decision. New user -> small site -> performance a non-issue Experienced user -> docs -> "Improving performance" Probably that page does not exist but the information is scattered throughout the site. On Mon, Mar 22, 2010 at 3:55 PM, The Editor wrote: > Ok, I will make this change to the c

Re: 3.4.9 Search blank screen

2010-03-22 Thread The Editor
On Mon, Mar 22, 2010 at 6:56 AM, Kevin wrote: > Did a search for header and ended up with a blank screen. > > the URL in the browser window says: > > http://www.tnet.com/main&action=search&myquery=header > > Which is not legal.  There can only be 1 &.  Subsequent passed options need > to use ? or

Re: Zones

2010-03-22 Thread The Editor
Ok, I will make this change to the core. For both top and bottom zones... However, the reason I switched them from the skin was performance. Anytime you can put something directly in the html, rather than a zone, you save yourself thousands of processing calculations. Not only do you have to read

Re: 3.4.9 unwanted at top of page with images

2010-03-22 Thread The Editor
Added it to the core. Thanks for testing this out for me. We'll see if we get any problems with the change in other links not working. But so far all seems ok. Cheers, Dan On Sun, Mar 21, 2010 at 9:23 PM, Kevin wrote: > This document was successfully checked as XHTML 1.0 Transitional! > > Appe

Re: Release 3.4.9

2010-03-22 Thread The Editor
The problem was the nested tables (and other things). I will have to work on that later, as it is important. But difficult... Temporarily, I just uploaded a gif of the nested table. :) I spent more time fixing all the other little mistakes and problems on this page, to get it more current and acc

Re: Favicon and umlauts

2010-03-22 Thread Markus Weimar
1) In index.php before the engine call: $farmPath = 'http://' . $_SERVER['HTTP_HOST'] . '/boltwire/farm'; Leads to: img: http://localhost:/boltwire/farm/img farm: http://localhost:/boltwire/farm Good. This works on all pages: [^$$img/boltwire.gif^] This does not work on any page and giv

Re: Source function

2010-03-22 Thread Markus Weimar
On Mon, Mar 22, 2010 at 2:45 PM, The Editor wrote: > On Mon, Mar 22, 2010 at 9:34 AM, Markus Weimar > wrote: >> I am planning to contribute: >> - tabular API-like function docs >> - concise system pages with a structuring heading here and there >> - usability improvements to boltwire.com >> - mak

Re: Source function

2010-03-22 Thread The Editor
On Mon, Mar 22, 2010 at 9:34 AM, Markus Weimar wrote: > I am planning to contribute: > - tabular API-like function docs > - concise system pages with a structuring heading here and there > - usability improvements to boltwire.com > - making the docs homogeneous and concise and add more textual str

Re: Favicon and umlauts

2010-03-22 Thread The Editor
The default values, from engine.php, are: BOLTdefault($farmPath, "$boltwire/farm"); BOLTdefault($imgPath, "$farmPath/img"); These can be preset to something else, but it must be done in index.php before calling the engine, not after. Is this how you set them? $farmPath = 'other value'; Do you

Re: Source function

2010-03-22 Thread Markus Weimar
I am planning to contribute: - tabular API-like function docs - concise system pages with a structuring heading here and there - usability improvements to boltwire.com - making the docs homogeneous and concise and add more textual structuring As a bonus I might have fewer stupid questions afterwar

Re: Source function

2010-03-22 Thread The Editor
On Sun, Mar 21, 2010 at 6:17 PM, Markus wrote: > Argh, it's in the method docs. My brain is terrible at scanning > CAPSLOCK. Are we going to create some API-like table for each function > and its parameters? If we agreed on a common presentation for one > function, the others could be created by m

Taking action: version control system

2010-03-22 Thread Markus Weimar
Hey everybody, We have been talking several times about a version control system that would make so many things so much easier. No more copy and paste this line there, better tracking of changes, easier testing of unreleased versions and so on and so on. Also it would allow to improve for example

A Twitter Clone with Info

2010-03-22 Thread Martin
A long time I considered info vars as minor compared to data fields. Now it seems that there is a rise of key - value databases. The guys who built one of these databases, Redis, provide an easy to follow tutorial on how to organize a twitter clone with key - value only. It claims to be superfast,

Re: 3.4.9 Search blank screen

2010-03-22 Thread blues
On Mar 22, 12:56 pm, Kevin wrote: > the URL in the browser window says: > > http://www.tnet.com/main&action=search&myquery=header > > Which is not legal.  There can only be 1 &.  Subsequent passed options need > to use ? or some other delimiter. this is not correct. the character separating the u

3.4.9 Search blank screen

2010-03-22 Thread Kevin
Did a search for header and ended up with a blank screen. the URL in the browser window says: http://www.tnet.com/main&action=search&myquery=header Which is not legal. There can only be 1 &. Subsequent passed options need to use ? or some other delimiter. Changing it to http://www.tnet.com/m