Main > Free Download Search >

Free wml cards software for linux

wml cards

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 715
WML::Card 0.02

WML::Card 0.02


WML::Card is a Perl extension for builiding WML Cards according to the browser being used. more>>
WML::Card is a Perl extension for builiding WML Cards according to the browser being used.

SYNOPSIS

use WML::Card;
my $options= [ [Option 1, http://...], [Option 2, http://...], ];
my $c = WML::Card->guess(index,Wap Site); $c->link_list(indice, undef, 0, $options, $options); $c->print;

This perl library simplifies the creation of WML cards on the fly. It produces the most suitable wml code for the browser requesting the card. In this way the one building the cards does not have to worry about the differences in how each wap browser displays the wml code. In combination wht WML::Deck it provides functionality to build WAP applications.

Methods

$card = WML::Card->guess( $id, $title, [$user_agent] );
This class method constructs a new WML::Card object. The first argument defines the WML cards id and the second argument its title. The if the third argument is not defined, the value is obtained from $ENV{HTTP_USER_AGENT}.

$c->buttons($label, $type, $task, $href)
$c->table ($data, $title, $offset, $pager, @headers)
$c->link_list($name, $listtitle, $offset, $pager, $data, $align)
$c->value_list($name, $listtitle, $offset,$pager,$data)

The variable $data is an array reference like: my $menu_items= [ [Option 1, http://...], [Option 2, http://...], ];

The variable $pager is the number of items wanted to be displayed in each card.

$c->print
$c->info($content)
$c->img($file, $alt)
$c->input($label, $text, $name, $format, $type, $size, $target, $arg);
$c->link($target, $text);
$c->br

<<less
Download (0.005MB)
Added: 2007-03-26 License: Perl Artistic License Price:
942 downloads
Cards 3

Cards 3


Innovative 3D casino software featuring popular table games, multihand blackjack and video poker, poker variations, craps, roulette, war, and more. Mo... more>> <<less
Download (317KB)
Added: 2009-04-08 License: Freeware Price: Free
201 downloads
Nebula Cards 0.7

Nebula Cards 0.7


Nebula Cards project is a card game engine. more>>
Nebula Cards project is a card game engine.
Nebula Cards is a networked, modular card game engine written in pure Java.
The game rules, user interfaces, and computer players all take the form of pluggable Java classes, and most four-player, trick-taking games can be implemented.
It currently includes Spades and Hearts, with a computer player for Spades.
Enhancements:
- last release before a major restructuring.
- added Game class in a backward-compatible way.
- added util.proc to house the new GameProcedure library.
- added util.ui.GraphicalCardSelector (untested).
<<less
Download (MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1075 downloads
Khalkhi cards 0.2.2

Khalkhi cards 0.2.2


Khalkhi cards allows you to have cards of the entries in your addressbook floating on the desktop. more>>
Khalkhi cards allows you to have cards of the entries in your addressbook floating on the desktop, see the status in the several systems a person has an account in, and do a lot of things, like surfing to her homepage, starting an email or a chat, or dropping her a file/url.
A card lists all properties of an addressbook entry. Are status services installed for a property, the status is displayed below the property item. Actions services are available by the context menu (right click on a property item), and so called data action services by the drop menu (drag a file/url onto the card or an item).
The program is based upon the Khalkhi framework, thus endlessly extendable by plugins. It cannot be used directly, is only available by a service within the framework. So install also the framework and the Khalkhi applet for Kicker:
http://www.kde-apps.org/content/show.php?content=54450
http://www.kde-apps.org/content/show.php?content=54451
Needs 0.2.2 of the Khalkhi framework (see link above).
Enhancements:
- adaption to rename of Contacts framework to Khalkhi framework
<<less
Download (0.41MB)
Added: 2007-05-28 License: GPL (GNU General Public License) Price:
880 downloads
PHPMyEcards 1.0

PHPMyEcards 1.0


PHPMyEcards is a set of PHP pages that provides you with an e-card-sending service for your Web site. more>>
.PHPMyEcards is a set of PHP pages that provides you with an e-card-sending service for your Web site.

The main features are automatic installation and an admin section to manage your e-cards and to set the site presentation
<<less
Download (0.089MB)
Added: 2006-06-30 License: GPL (GNU General Public License) Price:
1211 downloads
Cardpics 0.4

Cardpics 0.4


Cardpics project is a set of free cards sets. more>>
Cardpics project is a set of free cards sets.

If you are programming a card game and are looking for free cards, Cardpics was made for you! Get a set of cards and include them in your project, as soon as your project is free.

Installing

1. `cd to the directory containing the packages source code and type
`./configure to configure the package for your system. If youre
using `csh on an old version of System V, you might need to type
`sh ./configure instead to prevent `csh from trying to execute
`configure itself.

Running `configure takes awhile. While running, it prints some
messages telling which features it is checking for.

2. Type `make to compile the package.

3. Optionally, type `make check to run any self-tests that come with
the package.

4. Type `make install to install the programs and any data files and
documentation.
<<less
Download (0.15MB)
Added: 2006-08-31 License: GPL (GNU General Public License) Price:
1149 downloads
Penguin Cards 1.0

Penguin Cards 1.0


Penguin Cards project is a card game. more>>
Penguin Cards project is a card game.
PenguinCards is a two-player card game. The aim is to find the pairs of cards on the board. The one who finds out more card pairs is the winner.
PenguinCards is a java-based game.
If you are unhappy with images on the cards, then simply copy your cards into images/pictures/penguins directory. That is it!
Enhancements:
- Initial release
<<less
Download (0.12MB)
Added: 2006-11-30 License: GPL (GNU General Public License) Price:
1062 downloads
Games::Cards 1.45

Games::Cards 1.45


Games::Cards is a Perl module for writing and playing card games. more>>
Games::Cards is a Perl module for writing and playing card games.

SYNOPSIS

use Games::Cards;
my $Rummy = new Games::Cards::Game;

# Create the correct deck for a game of Rummy.
my $Deck = new Games::Cards::Deck ($Rummy, "Deck");

# shuffle the deck and create the discard pile
$Deck->shuffle;
my $Discard = new Games::Cards::Queue "Discard Pile";

# Deal out the hands
foreach my $i (1 .. 3) {
my $hand = new Games::Cards::Hand "Player $i" ;
$Deck->give_cards($hand, 7);
$hand->sort_by_value;
push @Hands, $hand;
}

# print hands (e.g. "Player 1: AS 2C 3C 3H 10D QS KH")
foreach (@Hands) { print ($_->print("short"), "n") }

$Hands[1]->give_a_card ($Discard, "8D"); # discard 8 of diamonds

This module creates objects and methods to allow easier programming of card games in Perl. It allows you to do things like create decks of cards, have piles of cards, hands, and other sets of cards, turn cards face-up or face-down, and move cards from one set to another. Which is pretty much all you need for most card games.

<<less
Download (0.089MB)
Added: 2007-01-03 License: Perl Artistic License Price:
1034 downloads
WBXML Library 0.9.2

WBXML Library 0.9.2


WBXML Library project is a C library for handling WBXML (Wireless Binary XML) documents. more>>
WBXML Library project is a C library for handling WBXML (Wireless Binary XML) documents. It consists of a WBXML parser (with a SAX-like interface), and a generic WBXML encoder. The following languages are supported: WML 1.0, 1.1, 1.2, 1.3 / WTA 1.0 / WTA-WML 1.2 / CHANNEL 1.1, 1.2 / SI 1.0 / SL 1.0 / CO 1.0 / PROV 1.0 / EMN 1.0 / DRMREL 1.0 / Ericsson-Nokia OTA Settings v7.0 / SYNCML 1.0, 1.1 / Wireless Village CSP 1.1, 1.2.
Enhancements:
- Support for SyncML 1.2 and AirSync was added.
- OpenSync and Debian maintainer fixes were applied.
- An XCode project file was included. Windows and Symbian project files are currently not up to date at all.
- The license was changed back to the LGPL.
<<less
Download (0.30MB)
Added: 2006-10-09 License: LGPL (GNU Lesser General Public License) Price:
1123 downloads
LPairs 1.0

LPairs 1.0


LPairs is a classical memory game. more>>
LPairs is a classical memory game. This means you have to find pairs of identical cards which will then be removed.

Your time and tries needed will be counted but there is no highscore chart or limit to this.

<<less
Download (0.40MB)
Added: 2005-04-02 License: GPL (GNU General Public License) Price:
1667 downloads
SVG-cards 2.0.1

SVG-cards 2.0.1


SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards. more>>
SVG-cards is a set of playing cards made from pure SVG with all kings, queens, jacks, numbers, jokers, and backs of cards.
You can use SVG-cards everywhere you like : Web pages, games, the GNOME desktop, the KDE desktop, and so on...
You can print them on your color printer and make real cards or T-shirts.
The kings, queens and jacks are based on the french representation, because I find them beautiful. You can access to each either by rendering the file into a pixmap and clipping each card or by using their name with a DOM interface. All cards are inside a SVG group.
Example :
the king of spade is inside this group :
< g id="king_spade" >
...
< /g >
Names are the following :
black_joker
red_joker
back
{king,queen,jack}_{club,diamond,heart,spade}
{1,2,3,4,5,6,7,8,9,10}_{club,diamond,heart,spade}
Examples :
- the ace of club is 1_club
- the queen of diamond is queen_diamond
Enhancements:
- A bug that prevented SVG cards from being displayed in Firefox and Adobe Illustrator was fixed.
<<less
Download (0.34MB)
Added: 2006-06-30 License: LGPL (GNU Lesser General Public License) Price:
1219 downloads
cardwords 0.012

cardwords 0.012


cardwords project is a form crosswords on the cardtable with cards showing characters. more>>
cardwords project is a form crosswords on the cardtable with cards showing characters.

cardwords is a customizable, client/server, multiplayer card game. The cards show characters and points.

The players form crosswords on the card-table with their cards. By editing text files, cardwords can be customized to any language using latin-1 characters. The set of cards, the card-table, and rules for bonus and penalty points can also be customized.

<<less
Download (MB)
Added: 2006-11-27 License: GPL (GNU General Public License) Price:
1063 downloads
bingo-cards 1.02

bingo-cards 1.02


bingo-cards project consists in a program to create number, word/letter, and picture bingo cards. more>>
bingo-cards project consists in a program to create number, word/letter, and picture bingo cards.
These cards can be used for entertainment in the car, in a classroom (for example, to teach the element symbols for the Periodic Table), or just with your kids.
You could also create bingo cards with little pictures of everyday objects, then call the names out in Spanish, French, Italian, or German (or whatever you fancy).
Enhancements:
- Win32 Borland CBuilder 3 version ported to Kylix Linux. All tested. Only major issue is cannot select multiple pictures for import. Note for compilation to work, put included crt1.o in /usr/lib {it is a dependency of Kylix, and is crt1.o from glibc-devel 2.1.92}.
- First port of GUI to Linux using Kylix. Seems to work fine, apart from bulk adding of pictures fo picture bingo. (need to add one at a time).
<<less
Download (3.4MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
635 downloads
Card 304 0.6

Card 304 0.6


Card 304 project is a software version of the 304 card game. more>>
Card 304 project is a software version of the 304 card game.

304 is a very popular card game in Northern parts of Sri Lanka. I am building a software version of it, so people can play it online!

<<less
Download (MB)
Added: 2006-11-22 License: GPL (GNU General Public License) Price:
1077 downloads
CGI::WML 0.09

CGI::WML 0.09


CGI::WML is a Perl module with subclass LDSs CGI.pm for WML output and WML methods. more>>
CGI::WML is a Perl module with subclass LDSs "CGI.pm" for WML output and WML methods.

SYNOPSIS

use CGI::WML;

$query = new CGI::WML;

$content = $query->p("Hello WAP world");

print
$query->header(),
$query->start_wml(),
$query->template(-content=>$query->prev()),
$query->card(-id=>"first_card",
-title=>"First card",
-content=>$content),
$query->end_wml();

print
$query->wml_to_wmlc(-wml=>$wml_buffer,
-errorcontext=>2);

($page_title,$content) = $query->html_to_wml($buffer);

This is a library of perl functions to allow CGI.pm-style programming to be applied to WAP/WML. Since this is a subclass of Lincoln Steins CGI.pm all the normal CGI.pm methods are available. See perldoc CGI if you are not familiar with CGI.pm

<<less
Download (0.021MB)
Added: 2007-07-12 License: Perl Artistic License Price:
838 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5