Download the free trial version
Basic4android Video
Features
Tutorials and manuals
Showcase
Screenshots

Go Back   Android Development Forum - Basic4android > Basic4ppc (Windows Mobile) > Share Your Creations > Open Source Projects
Documentation Wiki Register Members List B4P Search Today's Posts Mark Forums Read

Open Source Projects The place to discuss Basic4ppc open source applications.

Personal Pocket PC Wiki

Reply
 
LinkBack Thread Tools Display Modes
  #31 (permalink)  
Old 08-08-2008, 02:27 AM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default For your consideration

Digitaldon37,
I have added two menu items for a possible way to add markup. See what you think or maybe you can suggest a better way. I am not commited to this way its just a proposal. I think more buttons on screen may make it more finger friendly but will occupy to much screen space

Also back button is fixed.
Reply With Quote
  #32 (permalink)  
Old 08-08-2008, 02:00 PM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default

PPPCWiki now supports template files and file names with spaces.

See post #1
Reply With Quote
  #33 (permalink)  
Old 08-08-2008, 02:02 PM
Basic4ppc Veteran
 
Join Date: Jan 2008
Posts: 215
Default buttons

tsteward, I was thinking about moving the buttons to the right side of the screen when in landscape mode.

I don't know about putting markup language help in menu options - I probably wouldn't use them - but I've never really been good at having a knack for UI or usability. Maybe some type of pop-up that you could scroll through.
Reply With Quote
  #34 (permalink)  
Old 08-08-2008, 10:33 PM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default

Quote:
Originally Posted by digitaldon37 View Post
tsteward, I was thinking about moving the buttons to the right side of the screen when in landscape mode.

I don't know about putting markup language help in menu options - I probably wouldn't use them - but I've never really been good at having a knack for UI or usability. Maybe some type of pop-up that you could scroll through.
Yeah I agree UI is hard as its often different people use there devices in different ways etc.
I'm not that fussy where the buttons go but I probably prefer them to stay at the top because I go into landscape mode so I can read longer lines more easily or view pictures that show that way better. If we move the buttons to the side then whats the point of landscape.

And yes i'd be happy with a button operating popup form with icons on it. This would make it more finger friendly, but we can only have so many buttons. I dont have a problem with menus as my soft keys to operate them are on my keyboard so I dont have to use stylus or anything however in the future my next phone may not have a keyboard. Seems to be the trend.
Reply With Quote
  #35 (permalink)  
Old 08-09-2008, 12:20 PM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default

Lastest update is version 0.36 - see post #1
I have improved the handling of template files. It now allows for when template file has not been created. This was a bug I discovered.

Landscape mode working but the form is larger than the screen in landscape mode hence it creates a scroll bar. This is not desired as the web interface also displays a scroll bar on larger pages.
Reply With Quote
  #36 (permalink)  
Old 08-09-2008, 04:10 PM
Cableguy's Avatar
Basic4ppc Expert
 
Join Date: Apr 2007
Location: N 41º11'30.30" W 8º39'46.60"
Posts: 2,313
Awards Showcase
Forum Contributer 
Total Awards: 1
Default

Quote:
Originally Posted by tsteward View Post

Landscape mode working but the form is larger than the screen in landscape mode hence it creates a scroll bar. This is not desired as the web interface also displays a scroll bar on larger pages.
Why Not use the hardware lib resize event to re-order the controls position in landscape mode?
__________________
Paulo Gomes - Porto, Portugal - Living/Working in France-Saumur
Mobile Device: Samsung Galaxy S, Android 2.3.4 CUstom ROM
Laptop: Toshiba NB100-130 (running on Win7Ultimate)
B4PPC DLL Version Listing - B4Android DLL Version Listing
Reply With Quote
  #37 (permalink)  
Old 08-09-2008, 05:38 PM
Basic4ppc Veteran
 
Join Date: Jan 2008
Posts: 215
Default wiki - landscape

Attached is version .37 - cleaner portrait and landscape modes

The scroll bars were caused (much to my annoyance after messing with this for an hour - I'm the one who put that status label in so I should have caught that) by the status label not being moved up in landscape mode

Changes made:

>App_Start
>flb_Resize

Thanks for the suggestion cableguy - I think the problem was the programmer (me)

update: version .371
- added errorlabel to parseslashwiki (invalid syntax would throw an error)
- fixed procedure "checkwikifile" - would error on slash (extension not set)

update: version .372
- fixed procedure "parsebladewiki" - would error if markup character in position 1 (also fixes "include header")

Last edited by digitaldon37 : 08-09-2008 at 10:47 PM.
Reply With Quote
  #38 (permalink)  
Old 08-10-2008, 01:45 PM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default

Getting hard to remember what I've done.

V0.38
Can now open other wiki's via menu.
Fixed image bug on PDA
Fixed ^include links
Fixed bug leaving garbage between pics and not closing </a> tag

TODO
Check table formatting I think theres a html bug there.
Getting very close to being completely compatible with BladeWiki.
Reply With Quote
  #39 (permalink)  
Old 08-11-2008, 03:34 AM
Basic4ppc Veteran
 
Join Date: Jan 2008
Posts: 215
Default navigate to external links

Replace the code for Parse(url) with this:

Code:
Sub Parse(url)
url=ValidateURL(url)
urlType=StrIndexOf(url,
":",0)
'Msgbox(url & " = " & urltype)
If urlType=-1 OR urlType=5 Then
    url=ValidateURL(url)
    CheckWikiFile(url)
    HtmStr=ReadWikiFile(url)
    
'Msgbox(HtmStr)
    addHistory(url)
    currentpage=url
    textbox1.Text=HtmStr
    Refreshweb
Else
     url=StrReplace(url,
"%2F","/")
    
    Shell(url)
End If


End Sub
This will update the wiki from version .38 to .381

Last edited by digitaldon37 : 08-11-2008 at 04:34 AM.
Reply With Quote
  #40 (permalink)  
Old 08-11-2008, 02:15 PM
Basic4ppc Veteran
 
Join Date: Apr 2008
Location: Gosford NSW Australia
Posts: 223
Send a message via MSN to tsteward
Default

Thanks for that digitaldon37 - that fixed the external links.

I have also:
homepage
  • Fixed Tables
  • Fixed html markup
  • Fixed editing correct page after loading new wiki
  • Loads css on desktop
  • Embeds css on ppc
Version 0.4 up now
Reply With Quote
Reply


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Another Pocket Wiki digitaldon37 Open Source Projects 4 12-30-2009 03:12 AM
Written a Personal Wiki? tsteward Questions (Windows Mobile) 3 08-01-2008 05:34 AM
Pocket Chess Database JamesC Share Your Creations 3 07-27-2008 05:07 AM
B4P Wiki meinewelle Questions (Windows Mobile) 5 05-30-2008 07:55 AM
print class for pocket pc tanrikuluahmet Basic4ppc Wishlist 1 10-01-2007 10:10 AM


All times are GMT. The time now is 02:58 AM.


Powered by vBulletin® Version 3.6.12
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0