Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread Björnke von Gierke
sounds nice

what work exactly needs to be done? 
where can one look at example xml files? 
why do you think you need help?
will you manage and direct the efforts?

including media installers is allowed by runrev, but of course one should ask 
em beforehand.

note that the browser external is only available for mac and win. so it'd be 
probably good if the content could be shown in fields, and not use that 
external, on-rev or the web plugin. but maybe you had a different idea about 
how to do it?

have fun
björnke

On 24 Jan 2010, at 04:04, Alejandro Tejada wrote:

> 
> Looking for volunteers to create Wikipedia on CD application
> 
> Recently, the Python Users group from Argentina,
> joined efforts to develop an application that
> allows to read Wikipedia contents offline, directly
> from CD or DVD. Obviously, this application is
> written in Python and they are planning to include
> Tutorials and lessons for Python in the CD and DVD.
> 
> You could read about the application and download
> the CD or DVD from their site:
> http://python.org.ar/pyar/Proyectos/CDPedia
> 
> It's a python web server that display html pages
> (decompressed from CD or DVD) and linked images stored
> in the CD or DVD.
> 
> If many RunRev developers joint efforts, we could develop
> an application that display directly the more recently updated
> XML database of Wikipedia in every platform supported by RunRev.
> 
> This project could include (with RunRev permission) the free version of
> RevMedia and RevWeb, tutorials and Demos to introduce RevTalk to a
> wider audience and many potential developers.
> 
> How many of you could devote a few hours weekly to complete
> this project?
> 
> Thanks in advance for your comments and ideas!
> 
> Alejandro
> -- 
> View this message in context: 
> http://n4.nabble.com/Looking-for-volunteers-to-create-Wikipedia-on-CD-application-tp1288518p1288518.html
> Sent from the Revolution - User mailing list archive at Nabble.com.
> ___
> use-revolution mailing list
> use-revolution@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-revolution

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: [OT] Geometry sprouts

2010-01-24 Thread Jerry Daniels

Take it...

On Jan 23, 2010, at 4:42 PM, Mark Wieder wrote:


Jerry-

Saturday, January 23, 2010, 1:22:35 PM, you wrote:


SMOTHERS BROTHERS!


Awww... mom always liked your posts best...

--  
-Mark Wieder

mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your  
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-revolution


___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Question about a group of edit controls

2010-01-24 Thread David Coker
On the interface I'm working on, I have tab panel setup with
background behavior which is working properly. Navigation from card to
card works without any problems. I also have a group of edit controls
that I want displayed on each card, but I want the data contained in
each edit box to remain common to each card.

The edit controls need to remain editable from any card they are
displayed on without the content changing when navigating from one
card to the other. I've tried this several different ways without any
success and would appreciate any advice that you might offer.

Regards,
David C.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Question about a group of edit controls

2010-01-24 Thread Mark Schonewille

David,

save the data in a custom property. For example

on closeField
  set the cData of me to the text of me
end closeField

and in a preOpenCard handler:

on preOpenCard
  set the text of me to the cData of me
end preOpenCard

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer

TwistAWord supports Haiti. Buy a license for this word game at http://www.twistaword.net 
 and support the earthquake victims.


Op 24 jan 2010, om 18:07 heeft David Coker het volgende geschreven:


On the interface I'm working on, I have tab panel setup with
background behavior which is working properly. Navigation from card to
card works without any problems. I also have a group of edit controls
that I want displayed on each card, but I want the data contained in
each edit box to remain common to each card.

The edit controls need to remain editable from any card they are
displayed on without the content changing when navigating from one
card to the other. I've tried this several different ways without any
success and would appreciate any advice that you might offer.

Regards,
David C.



___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Question about a group of edit controls

2010-01-24 Thread J. Landman Gay

David Coker wrote:


The edit controls need to remain editable from any card they are
displayed on without the content changing when navigating from one
card to the other. I've tried this several different ways without any
success and would appreciate any advice that you might offer.


Are these just fields? If so, turn off the sharedtext property of the 
field. That way it will store different data in the same field for each 
card.


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


sleep mode

2010-01-24 Thread Peter Brigham MD
Anyone know what happens when a handler is in the middle of a long  
repeat loop and a laptop user closes up and the machine goes into  
sleep mode? I am assuming that iteration stops and nothing is saved.  
Is there a system message that can to trapped to save the execution  
contexts, or whatever? I'd like to be able to resume what was  
happening when the machine went to sleep, but I don't know if this is  
possible.


-- Peter

Peter M. Brigham
pmb...@gmail.com
http://home.comcast.net/~pmbrig

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Question about a group of edit controls

2010-01-24 Thread David Coker
Mark, Jacque,

I really appreciate the suggestions, but right after sending my
message I happened to remember how to use the "group method" for
navigating the tab control, which works well in this case. Getting all
of the various controls aligned this way is a bit more difficult, but
once that chore is over with, everything will work from the same card
without any interference to the edit boxes. Ultimately, having
everything I need available on the same card should make this
particular application much easier to code anyway...  :)

Thanks again though!

Best regards,
David C.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Print dialog question

2010-01-24 Thread Yves COPPE

Hi list


I have a handler which ends with the standar print dlog

  open printing with dialog
  if the result = "cancel" then
close stack "To_print"
exit to top
  end if
  print card "toDo"
  close printing


I'd like to know how much copies the user mentions in the print DLOG

is it possible ?


Thanks


Greetings.

Yves COPPE
yvesco...@skynet.be

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread Alejandro Tejada
Hi Bjornke,

On Sun, 24 Jan 2010 14:08:38 +0100
Bjornke von Gierke wrote:

> sounds nice

Yes, and this platform offers all the features
needed to create this CD or DVD.

> what work exactly needs to be done?

An application that seach and display the xml text
format and images used by Wikipedia, in every platform
available for Runrev.

> where can one look at example xml files?

http://meta.wikimedia.org/wiki/Help:Wikitext_examples

and every wikipedia page shows near the top an option:
View source

> why do you think you need help?
To create a multiplatform project, it's neccesary to
build and test in every platform where Runrev is
available.

> will you manage and direct the efforts?
No, i could help with some code and testing in
Windows XP and Vista.

> including media installers is allowed by runrev,
> but of course one should ask em beforehand.

Yes.

> note that the browser external is only available for mac and win.
> so it'd be probably good if the content could be shown in fields,
> and not use that external, on-rev or the web plugin. but maybe
> you had a different idea about how to do it?

Yes, a field could work too, but displaying the page inside a
web browser should be ideal.

Many thanks for your answers and interest.
Have a nice weekend! :-)

Alejandro
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread David Bovill
2010/1/24 Alejandro Tejada 

>
> > what work exactly needs to be done?
> An application that seach and display the xml text
> format and images used by Wikipedia, in every platform
> available for Runrev.
>
> > where can one look at example xml files?
>
> http://meta.wikimedia.org/wiki/Help:Wikitext_examples
>
> and every wikipedia page shows near the top an option:
> View source
>

Not sure if it is any use - but I can offer code for reading and writing to
WikiPedia from Rev - it is not a complete library - but a good start.
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread Mark Wieder
Alejandro-

Maybe I'm missing the point here.

What's the advantage of reading Wikipedia offline? Aside from the size
of the files needed, the slowness of reading from optical media, and
the static character of the data... I thought the point of wikis was
that they're constantly in flux, Wikipedia more so than most. Errors
can be corrected in realtime, new topics added, etc. As soon as the
data gets burned to disc it's out of date, no?

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Print dialog question

2010-01-24 Thread zryip theSlug
2010/1/24 Yves COPPE :
> Hi list
>
>
> I have a handler which ends with the standar print dlog
>
>  open printing with dialog
>  if the result = "cancel" then
>    close stack "To_print"
>    exit to top
>  end if
>  print card "toDo"
>  close printing
>
>
> I'd like to know how much copies the user mentions in the print DLOG
>
> is it possible ?

Hi Yves,

Try :

get the printCopies


First you have to check that your printer manage copies like this :

if "copies" is among the items of the printerFeatures then...


HTH,

-- 
-Zryip TheSlug- wish you the best! 8)
http://www.aslugontheroad.co.cc
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread Alejandro Tejada
David Bovill wrote:

> Not sure if it is any use - but I can offer code for reading and writing to
> WikiPedia from Rev - it is not a complete library - but a good start.

Hi David,

Your code reads and write to Wikipedia.
Did you use this code as an automatic bot
for reverse vandalism in selected pages?

This could be useful as a module that could track changes
in specific user selected articles.

One of the greatest problems of using an offline Wikipedia
database is to keep updated the database. The primitive and
rather wasteful method to update the xml database is to
download and index (again) the whole database.

About Mark question, probably this project is not useful in those
fortunate places with ubiquitous and cheap internet access:

http://www.internetworldstats.com/dsl.htm

Alejandro





An script that watch
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Looking for volunteers to create Wikipedia on CD application

2010-01-24 Thread Mark Wieder
Alejandro-

Sunday, January 24, 2010, 4:40:43 PM, you wrote:

> About Mark question, probably this project is not useful in those
> fortunate places with ubiquitous and cheap internet access:

Yeah, that was the one case I thought of where it might be useful to
have a static, albeit somewhat outdated, snapshot of the data. Of
course, considering that Wikipedia doesn't for the most part require
broadband access where dialup would do, the following chart is
probably more to the point:

http://www.internetworldstats.com/stats.htm

-- 
-Mark Wieder
 mwie...@ahsoftware.net

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Linux Go Stack opens in a new tab

2010-01-24 Thread Bill Vlahos
On Ubuntu when I issue a go stack  it opens the stack in a different TAB 
instead of as an overlapping window like in Windows or Mac.

Is this is the expected linux behavior and or is there a better way to deal 
with it so it doesn't happen?

Bill Vlahos
_
InfoWallet (http://www.infowallet.com) helps me remember the important details 
of my life.

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Linux Go Stack opens in a new tab

2010-01-24 Thread Richmond Mathewson

On 25/01/2010 05:18, Bill Vlahos wrote:

On Ubuntu when I issue a go stack  it opens the stack in a different TAB 
instead of as an overlapping window like in Windows or Mac.

Is this is the expected linux behavior and or is there a better way to deal 
with it so it doesn't happen?

Bill Vlahos
_
   


eschew 'Go' and use 'Open' instead . . .  :)
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Re: Print dialog question

2010-01-24 Thread Yves COPPE


Le 24-janv.-10 à 23:14, zryip theSlug a écrit :


2010/1/24 Yves COPPE :

Hi list


I have a handler which ends with the standar print dlog

 open printing with dialog
 if the result = "cancel" then
   close stack "To_print"
   exit to top
 end if
 print card "toDo"
 close printing


I'd like to know how much copies the user mentions in the print DLOG

is it possible ?


Hi Yves,

Try :

get the printCopies


First you have to check that your printer manage copies like this :

if "copies" is among the items of the printerFeatures then...





Hi,

I will ry and let you kno<

Greetings.

Yves COPPE
yvesco...@skynet.be

___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution


Haggis Ban In America ends.

2010-01-24 Thread stephen barncard
At last!

http://www.guardian.co.uk/uk/2010/jan/24/america-haggis-ban-lifted-burns

-
Stephen Barncard
San Francisco
http://houseofcubes.com/disco.irev
___
use-revolution mailing list
use-revolution@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-revolution