Site Updates

Site updates:

Robyn Wrightrobyn, 2010/04/24 15:29

Just made a bunch of mostly minor cosmetic changes.

  • Games section, additions and fixes
  • Books:… section, thought about and tried splitting it into separate pages didn't like it, so just moved things around a bit.
  • Who I Am got moved to a separate page and linked in the navigation block.

Think that's it.

Robyn Wrightrobyn, 2010/01/23 13:11

update on 2009-12-25c

Everything seems to be fine, except …

I hate and I mean really hate the new 'link wiz' in the editor!! I'd like to see the link button bring up two options - old way where it either adds '[[]]' around the hi-lighted text or just inserts them, and the second options being the wizard. Or may be a second button for the wiz so you'd have both as separate buttons.

The wizard does make linking to an existing page easier, but harder to create a link around existing text or typed text.

Robyn Wrightrobyn, 2010/01/22 02:28

well back to the new dokuwiki version – it was a setting problem. looks like 2009-02-14b and 2009-12-25c are not compatible - the userewrite option “Use nice URLs” “DokuWiki internal” don't work the same way.

Robyn Wrightrobyn, 2010/01/21 23:43

Updated character data in the Guild Wars section of the main page.

Robyn Wrightrobyn, 2010/01/19 18:57

well tried Dokuwiki 2009-12-25c and as you might notice this isn't it.

What went wrong -
many pages vanished - is in not there - well as far as doku thought now I checked ownership and permissions and everything looks good. the pages are in fact there and can be seen using less, vim, and mcedit. it's just that doku thinks they haven't been created yet. heck index even show them. but click on one and nope new page please create it.

oh almost forgot - clicking on the site name didn't take you to the main page it took you to create this page.

other than those it seemed to be working, as if that wasn't enough to back out the 'upgrade'

-Robyn

Robyn Wrightrobyn, 2009/11/01 23:32

added a calendar page with my google calendar

Robyn Wrightrobyn, 2009/10/11 01:12

more missed links from the move. this time it's pictures of Chichona.
also updated Guild Wars character levels.

Robyn Wrightrobyn, 2009/10/02 01:55

oops: forgot to fix form action link in bodyproportions page.

Robyn Wrightrobyn, 2009/09/30 17:43

well the moving is done, now to see if I missed nething by removing the old content.

oh I think I'm going to try out the typeo theme for a while, and see how I like it.

(:0) Robyn

Robyn Wrightrobyn, 2009/09/30 12:59

going to be moving things around - changing namespaces and things. this will break external links. I'll try to replace the old pages with links to the new locations. so even though you don't get the page you get a link to the new page for a while, about a month.

Robyn

Robyn Wrightrobyn, 2009/09/30 12:32

moved site updates discussion to it's own page and changed start page discussion to site general topics

Robyn Wrightrobyn, 2009/09/30 11:48

split the games-computer into computer and console, added some games under console.

removes a number of zombied pages

Robyn Wrightrobyn, 2009/09/16 12:23

switch form robyns-single as the wiki start page back to the default start.

Robyn Wrightrobyn, 2009/08/10 22:11

Some general additions and clean up.

Robyn Wrightrobyn, 2009/07/30 10:23

Redid the pictures of my GW characters, resectioned Games giving each developer a section heading.

Robyn Wrightrobyn, 2009/07/29 21:30

added a Guild Wars character picture page to go along with the Guild Wars section in games.

Robyn Wrightrobyn, 2009/07/29 19:11

updated sidebar and removed sections other * from main page

Robyn Wrightrobyn, 2009/07/29 17:25

Added a Guild Wars section to Games with my characters listed

Robyn Wrightrobyn, 2009/07/29 11:12

Rearranged the sections, and some minor config changes.

Robyn Wrightrobyn, 2009/07/28 21:29

Updating the photo album section and some other stuffs

Robyn Wrightrobyn, 2009/07/26 12:31

added a blog page why no real reason, just to see what happens and oh if you do a Dokuwiki based site/home page and want to include the blog plugin.

PLEASE read the blog plugin page & “blogging tips page” first, think about them lay it out on paper them do it. you'll be mush happier.

my own little tip use the tip about date prefix but add a little to it, %Y:%m%d_ to %Y:%m%d-%H%M_ this gives a finer grain to the prefix if you leave the title blank in the new form.

Robyn Wrightrobyn, 2009/07/26 04:37

04:31 in the morning - why oh why am I still up at a hour like thing one. I know I fixed the Body Proportions page. -heheh-

had to change from using post in the from to get and

Nighty Night all, hugs and kisses and Goddess Bless
Robyn

Robyn Wrightrobyn, 2009/07/25 14:07

well lets see I converted the movie page and added a Godzilla page, the pagemove plugin has stopped working

also I switched to arctic skin, wonder if …. nay I use arctic in faeriestories and pagemove works there.

over and out 8-O robyn

Robyn Wrightrobyn, 2009/06/25 12:18

added new plugins now have available for use the following:

blog
captcha
columns
comment
database2
discussion

displaywikipage
folded
fontcolor
fortune
gallery
include

indexmenu
note
pagelist
tag
task

for usage click on the name.

Robyn Wrightrobyn, 2009/06/25 11:04

Just did some cleanup on the gallery settings, default and specific pages.

robynrobyn, 2009/06/20 00:00

Speaking of forms, brings up how I spent the last 6 hours — trying to figure out why globals aren't working right in php code imported into dokuwiki. Yes I know globals are not a good idea in code, but sometimes a global or three can save lots of typing, you just have to be real careful about your coding.

Now here's the problem I have a bunch of flags and counters shared between functions in this one page so I used globals in the code for the page. Now this code run correctly as a normal php page but when imported into a dokuwiki page, three of four functions operates correctly and the fourth doesn't the globals aren't passed and remain uninitialised but only on that one and only under dokuwiki.

It's like …

$first = "1"; $second = "2"; $third = "3";
function one() {
global $first, $second; 
    echo "one $first, $second"; }

function two() {
global $first, $second, $third; 
    echo "two $first, $second, $third"; }

function three() {
global $second, $third;
    echo "three $second, $third"; }

one();
two();
three();
normal php page under dokuwiki
one 1, 2 one 1, 2
two 1, 2, 3 two , ,
third 2, 3 third 2, 3

figure this one out if you can, oh php generates no error messages either!

Enter your comment
ZQQIQ
 
site_updates.txt · Last modified: 2010/04/24 15:31 by robyn
CC Attribution-Noncommercial-Share Alike 3.0 Unported
www.chimeric.de Valid CSS Driven by DokuWiki Recent changes RSS feed Valid XHTML 1.0