installing wb 2.8.x from svn 1364 remarks

Luisehahne

Hi John,

First tks for testing,

Quotebackend -> preferences ->
username and emailaddress are saved in the db table users but not visible in preferences screen.

i can't reproduce

Quotewith 280 it was possible to save it empty

Now again it can save it empty, if not empty it will be check of beginning with a letter

Dietmar
Note: Once the code has been generated, it is easy to debug. It's not a bug, it's a feature!

pcwacht

Other issue

backend -> preferences ->
username and emailaddress are saved in the db table users but not visible in preferences screen.

[url="http://www.ictwacht.nl"]http://www.ictwacht.nl[/url] = Dutch ICT info
[url="http://www.pcwacht.nl"]http://www.pcwacht.nl[/url] = My first
both still work in progress, since years.....

pcwacht

1 - search-order
I know it isn't touched, I know it is svn. Being here a while!
Just saying it should be touched or thought about instead of not touching it.

2 - sec_anchor
You say, generate then use extra code for remove?
much easier solution not to generate the anchor at all is emptying the variable
you can't empty it with current svn, with 280 it was possible to save it empty, with svn 1305 allso
Allso I never get the idea of generating a valid anchor-id and anchor-name per section. Seem not needed in most cases.


John


PS
Glad you explained the working of a droplet to me :P being one of the authors :P :P
[url="http://www.ictwacht.nl"]http://www.ictwacht.nl[/url] = Dutch ICT info
[url="http://www.pcwacht.nl"]http://www.pcwacht.nl[/url] = My first
both still work in progress, since years.....

DarkViper

#2
Hi John.

SVN is not a release. SVN is the floating develop environment.

1 - search_module_order is preset in install.php. This part is not touched yet.

2 - the mandatory setting for 'sec_anchor' is needed to generate valid anchor-id and anchor-name (must start with a alpha-char). This is to prevent 'normal' users without knowledge about naming s.o.. If somebody really wants to remove the anchors from final output, it can be done with a outputfilter-droplet using a simple regular expression like

Code (Droplet: RemoveSectionAnchors) Select
<?php
  $wb_page_data 
preg_replace'/<a class=\"section_anchor\" id=\".*><\/a>/iU',  $wb_page_data );
  return 
'';
?>


Insert this droplet somewhere in the mytemplate/index.php.
The droplet-tag will be removed and the output of WB is free of section_anchors.

Werner
[url=http://www.youtube.com/watch?v=tmzDAz6ZvFQ]Der blaue Planet[/url] - er ist nicht unser Eigentum - wir haben ihn nur von unseren Nachkommen geliehen[br]
[i]"You have to take the men as they are... but you can not leave them like that !" :-P [/i]
[i]Das tägliche Stoßgebet: [b]Oh Herr, wirf Hirn vom Himmel ![/b][/i]

pcwacht

installed a fresh svn 1364 and some things need thoughts

backend, settings -> advanced settings
1 - Module-order for searching: still filled with faqbaker,manual,wysiwyg
faqbaker and manual are non standard modules, no need to include them
much better to default to news,wysiwyg

2 - Section-Anchor text: is filled with wb_
better to leave this empty as default, hardly anyone uses this.
can't make this empty, it''l revert to old value
empty is needed to get rid of the anchorlinks in the output!!
Now phpmyadmin is needed


John



[url="http://www.ictwacht.nl"]http://www.ictwacht.nl[/url] = Dutch ICT info
[url="http://www.pcwacht.nl"]http://www.pcwacht.nl[/url] = My first
both still work in progress, since years.....