Main > Free Download Search >

portal flash version

portal flash version

Sponsored Links
Sponsored Links

portal flash version

No.
Title
Category
Price
License
Expand All
1
Internet -> HTTP
GPL GNU General Public License
Hide show
phpBB3 Portal a.k.a canverPortal which is a simple portal add-on/modification for phpBB3 Olympus. The project easy to use and improvable.

Portal which is based on phpBB3 Olympus and improved by phpBB3 Portal with sponsored by Canver Software. XHTML and UTF8 characters sets are used in the files as in the phpBB3 version.

Here are some key features of "phpBB3 Portal":

· Main menu (not dynamic)
· Login / User menu
· News (news forum id configurable via config.php)
· Recent announcment (char limiter features)
· Recent popular topic (char limiter features)
· Recent topic (char limiter features)
· Poll (poll forum id configurable via config.php)
· Welcome (manual edit from templates)
· Search (post search, author search and includes few search engines)
· Make donation
· Latest members
· Random member
· Most poster
· Link us
· Links (manual edit from templates)
· Last x visited bots (adaptation on nedkas mod)
· The team
· Who is online
· Statistics
· Flash clock

Whats New in This Release:

· The code was tested and updated to phpBB3-CVS_2007-05-08 (B6-dev).
· Czech language files were added.
· A problem with the portal block overstretching on IE6 for the prosilver theme was fixed. The jumpbox was fixed.
· The "link us" input box maxlength size was fixed/deleted.
· The main layout was changed.
· A new prosilver news block was added and tested.

2
Programming -> Libraries
Perl Artistic License
Hide show
DBIx::Version is a Perl extension for getting database software name and version.

SYNOPSIS

use DBIx::Version;

my $dbh = DBI->connect( ... );
my ($dbname, $dbver, $dbverfull) = DBIx::Version::Version($dbh);

DBIx::Version lets you query which database software and version you are connected to.

Return Examples:

(undef, undef, undef)
(mysql, 4.0.17, 4.0.17-standard-log)
(postgresql, 7.4.1, PostgreSQL 7.4.1 on i686-pc-linux-gnu, compiled by GCC gcc (GCC) 3.3.2 20031107 (Red Hat Linux 3.3.2-2))
(oracle, 8.1.7.0.0, 8.1.7.0.0)
(sqlserver, 8.00.384, Microsoft SQL Server 2000 - 8.00.384 (Intel X86)
May 23 2001 00:02:52
Copyright (c) 1988-2000 Microsoft Corporation
Standard Edition on Windows NT 5.0 (Build 2195: Service Pack 2))
(sybase,12.5.0.1,Adaptive Server Enterprise/12.5.0.1/SWR 9982 IR/P/Sun_svr4/OS 5.8/rel12501/1776/ 64-bit/FBO/Tue Feb 26 01:22:10 2002)
(sybase,12.5.0.2,Adaptive Server Enterprise/12.5.0.2/EBF 14000 IR/P/Sun_svr4/OS 5.8/rel12502/1776/64-bit/FBO/Tue Jun 4 01:22:10 2002)

Answer 1: This module is useful for cross-platform coding, and in environments like shared hosting where you actually didnt install the database yourself and are curious.

3
Multimedia -> Graphics
GPL GNU General Public License
Hide show
Flash for Linux project is a development environment for Macromedia Flash, a format widely used for web applications and vector animation.

F4L is in such early stages of design that it is not recommended for use by people without knowlege of C++, QT, Ming, etc.

F4L is a clone, or imitation, of a Macromedia, Inc. product called Flash. The most current version of Flash is MX 2004. Flash is designed to help people make programs that can be used on any computer and that can be distributed over the Internet.

Flash can even be easily included in a web page. Most browsers include a plug-in that allows users to view Flash content in web pages. If you do not have this plug-in, you may wish to visit http://www.macromedia.com/downloads/ to get it for Mozilla (or compatible), Opera, Internet Explorer, AOL, OS X, OS 9, Pocket PC, OS/2, Irix, Solaris, or HP-UX for free.

Flash offers easy development of professional applications. Flash development is based mostly on a Graphical User Interface (GUI). Through the GUI, a developer can draw their application on the screen. Drawings can be converted to animations, buttons, and other features with the development environments menus and dialog boxes.

Competing methods of development, such as C++, Java or JavaScript, require technical knowledge of a special programming language and mathematics. A Flash applications GUI features are extremely limited compared to a programming language based project. To compensate for this weakness, Macromedia added Action Scripts to Flash.

Action Scripts are a sort of programming language, but there are only a few commands to learn, and they are selected off a menu. Action Scripting is equivalent to programming a graphing calculator with BASIC; it should not take you more than a few days to learn, if you have the patience to read boring instructions.

While Flash can be developed with very few Action Scripts, the scripts add to the interactivity of the application. Most web sites using Flash do not use Action Scripts intensively, with the exception of games. Flash can also work with JavaScript.

Whats New in This Release:

· The program can now export simple objects like images, lines, rectangles, ovals (ellipses), and text.
· The "locate" command is used to find the TrueType font files needed for text.

4
Internet -> HTTP
BSD License
Hide show
neo-Portal is the most customizable portal.

Here are some key features of "neo Portal":

· full i18n localization support;

· OS,
· web server,
· database independent;

Output:

· XHTML
· PDF
· RSS
· TXT
· RTF
· WML
· and more...

5
System -> Linux-Distributions
GPL GNU General Public License
Hide show
Webconverger project is an evolution of the hybrid client for deployments in places like offices or Internet cafes where only Web applications are used.

Unlike thin or hybrid clients, Webconverger is faster and more responsive by providing a Web browser that runs locally.

Here are some key features of "Webconverger":

· Ideal just for Web applications
· Free & open software
· Low system requirements
· Good security
· Painless to deploy and setup
· Features a Web standards compliant browser
· Cost effective
· Does not require registration or accounts
· Flash and a PDF viewer installed by default
· Easy for new users to learn and use
· Low maintenance costs
· Long term support

Whats New in This Release:

· This is a 100% Free software version of Webconverger without Adobe Flash is now available for download. Webconvergers main version (trunk) will still include Flash.

6
Programming -> Libraries
Perl Artistic License
Hide show
Test::Version is a Perl module that has the role to check for VERSION information in modules.

SYNOPSIS

use Test::Version;
plan tests => $num_tests;
version_ok( $file );

FUNCTIONS

version_ok( FILENAME, [EXPECTED, [NAME] ] )
version_ok requires a filename and returns one of the three values:

NO_FILE Could not find the file
NO_VERSION File had no VERSION information
VERSION_OK VERSION information exists

version_ok okays a test without an expected result if it finds VERSION information, or if an expected result is specified and it finds that condition. For instance, if you know there is no VERSION information,

version_ok( $file, NO_VERSION );

When it fails, version_ok will show error information.

The optional third argument NAME is the name of the test which version_ok passes through to Test::Builder. Otherwise, it choose a default test name "VERSION test for FILENAME".

7
Programming -> Libraries
Perl Artistic License
Hide show
NetServer::Portal is a Perl module used to interactively manipulate daemon processes.

SYNOPSIS

require NetServer::Portal;

NetServer::Portal->default_start(); # creates server
warn "NetServer::Portal listening on port ".(7000+($$ % 1000))."n";

This module implements a framework for adding interactive windows into daemon processes. The portal server listens on port 7000+($$%1000) by default.

A top-like server is included that can help debug complicated event loops.

8
Programming -> Libraries
Perl Artistic License
Hide show
Wx::ActiveX::Flash is an ActiveX interface for Shockwave Flash.

SYNOPSIS

use Wx::ActiveX::Flash ;
my $flash = Wx::ActiveX::Flash->new( $parent , -1 , wxDefaultPosition , wxDefaultSize );

$flash->LoadMovie(0,"file:///F:/swf/test.swf") ;
$flash->Play ;

EVT_ACTIVEX($this, $flash ,"FSCommand", sub{
my ( $this , $evt ) = @_ ;
my $cmd = $evt->{command} ;
my $args = $evt->{args} ;
...
}) ;

ActiveX control for Shockwave Flash. The control comes from Wx::ActiveX, and all methods/events from there exit here too.

** You will need to already have the Flash player installed.

new ( PARENT , ID , POS , SIZE )

This will create and return the Flash object.

9
Programming -> Libraries
GPL GNU General Public License
Hide show
Portal.CLI project is a set of bindings that target the Common Language Infrastructure and which cover common free and open source UNIX/Linux libraries that do not yet maintain their own CLI bindings.

10
Miscellaneous -> Education
GPL GNU General Public License
Hide show
SchoolAlumni Portal project is a Web portal for a high school alumni site.

It features a content management system and online news publishing tools.

It can create an unlimited weblink category, publish articles with images, run an alumni list with edit-delete-update features, provide a forum, provide classified ads, and more.

Whats New in This Release:

· You can now log out from two places; if you are logged in as the admin you can logout from the admin screen, and you can logout a user from the main list page.
· If you click on edit while viewing someone elses record, and you are logged in, you will get your record, otherwise you will be prompted to login.

11
System -> Linux-Distributions
GPL GNU General Public License
Hide show
The Compact Flash Linux Project is a Linux distribution designed to run on a compact flash card in read-only mode. It is as small as possible, and currently needs around 14 MB.

Compact Flash Linux Project includes OpenSSH, quagga, iptables, hostap, madwifi, wireless-tools, pppoe, tcpdump, bridge-utils, and more. The initial release was v0.1.1, dated January 8, 2004. Version 0.1.4 was released July 23, 2004.

Whats New in This Release:

· Many packages were upgraded.
· The package manager was improved a bit.

12
Internet -> HTTP
Free To Use But Restricted
Hide show
X Portal project is a powerful CMS (content management system) which can handle multiple language files.

English and Hungarian languages are included in the basic package. The engine was taken from phpnuke-textportal.

Whats New in This Release:

· autoHALT automatically logs out when the browser is closed.
· Security was enhanced with lots of new security tools.

13
Internet -> HTTP
GPL GNU General Public License
Hide show
Direct Democracy Portal is a portal for online organizations governed through direct democracy.

It uses Maven 2, MySQL, hibernate3, Spring, Struts Tiles, and JSTL on JBoss.
14
Internet -> HTTP
GPL GNU General Public License
Hide show
DCP-Portal is a content management system with advanced features like Web-based update, link, file, member management, poll, calendar, etc.

Its main features include an admin panel to manage the entire site, a smart HTML editor to add news, content, and annoucements, the ability for members to submit news/content and write reviews, and much more.

Whats New in This Release:

· Left member menu shows todays and this weeks activities
· Some graphics errors fixed
· htmlarea 3.0 Beta replaced with htmlarea 3.0 RC1
· Security bugs fixed
· install.php database creation error fixed
· and other small bugs also fixed...

15
Programming -> Libraries
Perl Artistic License
Hide show
Lemonldap::Portal::Session is a Perl extension for Lemonldap websso.

SYNOPSIS

use Lemonldap::Portal::Session;

my $paramxml = $test->{DefinitionSession} ; # $test is the result of XML parsing
my $obj = Lemonldap::Portal::Session->init ($paramxml,entry =>$entry) ;

Lemonldap::Portal::Session is a parser of XML description of session to keys,values of hash .

It is a piece of lemonldap websso framework . see eg directory for implementation .