syntax
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 826
Syntax CMS 1.3.0
Syntax CMS simplifies publishing varied content to a site. more>>
SyntaxCMS simplifies publishing various types of content to a site, facilitates creating and managing arbitrary relationships among content items, automates and accelerates custom development, and encourages reuse of site components with other SyntaxCMS installations.
Syntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
<<lessSyntax CMS is built using PHP and MySQL.
For Content Managers and Creators
- Create and edit site content online.
- Approve content before publishing to web.
- Set content items to publish/expire at a given time.
- Build complex site hierarchies using sections to organize content without creating HTML or template files.
- Restrict access and actions to content types by groups of users.
For Developers
- Define new content types on-the-fly. SyntaxCMS automatically provides forms for adding and editing content and base classes for working with content types in PHP code.
- Use the Collections and Filters API to query the database for matching objects without having to write SQL.
- Customize the look and layout of any part of the site using PHP.
Enhancements:
- Various performance enhancements and API improvements.
- New modules for working with RSS/Atom feeds, publishing a blog, and better default behavior.
Download (2.9MB)
Added: 2006-05-05 License: Common Public License Price:
1267 downloads
Syntax Desktop 2.3.1
Syntax Desktop is a publishing system used to manage the contents of a Web site. more>>
Syntax Desktop is a publishing system used to manage the contents of a Web site. Syntax Desktop project has an attractive GUI with DHTML elements.
You can use it to insert news, photos, documents, and tree data structures into your site. It features easy DB backup and style switching.
Syntax Desktop helps you to create and manage large web sites without any knowledge of HTML. Theres an integrated WYSIWYG editor with a friendly user interface similar to common office applications. You can create the contents and a template engine manages all the parts of the site allowing complete control of the application.
Syntax Desktop is based on PHP technology. It is a web application, so it works on a wide range of modern existing IT infrastructures. Syntax Desktop runs with other "open source" technologies (i.e. Linux, Apache, MySQL), but it works also on commercial products (i.e. Windows, IIS, Oracle DB, MS Access).
Moreover, a great virtue of Syntax is its predisposition to being indexed from search engines. Syntax is constructed to generate pages optimized for search engines.
<<lessYou can use it to insert news, photos, documents, and tree data structures into your site. It features easy DB backup and style switching.
Syntax Desktop helps you to create and manage large web sites without any knowledge of HTML. Theres an integrated WYSIWYG editor with a friendly user interface similar to common office applications. You can create the contents and a template engine manages all the parts of the site allowing complete control of the application.
Syntax Desktop is based on PHP technology. It is a web application, so it works on a wide range of modern existing IT infrastructures. Syntax Desktop runs with other "open source" technologies (i.e. Linux, Apache, MySQL), but it works also on commercial products (i.e. Windows, IIS, Oracle DB, MS Access).
Moreover, a great virtue of Syntax is its predisposition to being indexed from search engines. Syntax is constructed to generate pages optimized for search engines.
Download (4.6MB)
Added: 2005-12-15 License: GPL (GNU General Public License) Price:
1409 downloads
Chatbot::Alpha::Syntax 2.04
Chatbot::Alpha::Syntax is a Perl module for syntax checking of Chatbot::Alpha replies. more>>
Chatbot::Alpha::Syntax is a Perl module for syntax checking of Chatbot::Alpha replies.
SYNOPSIS
use Chatbot::Alpha::Syntax;
my $syntax = new Chatbot::Alpha::Syntax;
# Set strict syntax.
$syntax->syntax (strict);
# Changed my mind, use loose
$syntax->syntax (loose);
# Only allow SOME commands.
$syntax->deny_type (allow_some);
# Allow only +s and -s.
$syntax->allow (+, -);
# Syntax-check this file.
$syntax->check ("replies.cba");
Chatbot::Alpha::Syntax provides syntax checking for Alpha documents. All syntax errors result in a die so dont expect to run your syntax checking halfway through a large applications process. Doing it in initialization is always fine though.
<<lessSYNOPSIS
use Chatbot::Alpha::Syntax;
my $syntax = new Chatbot::Alpha::Syntax;
# Set strict syntax.
$syntax->syntax (strict);
# Changed my mind, use loose
$syntax->syntax (loose);
# Only allow SOME commands.
$syntax->deny_type (allow_some);
# Allow only +s and -s.
$syntax->allow (+, -);
# Syntax-check this file.
$syntax->check ("replies.cba");
Chatbot::Alpha::Syntax provides syntax checking for Alpha documents. All syntax errors result in a die so dont expect to run your syntax checking halfway through a large applications process. Doing it in initialization is always fine though.
Download (0.030MB)
Added: 2007-04-02 License: Perl Artistic License Price:
939 downloads
Embperl::Syntax::RTF 2.2.0
Embperl::Syntax::RTF is a Perl class derived from Embperl::Syntax to define the syntax for RTF files. more>>
Embperl::Syntax::RTF is a Perl class derived from Embperl::Syntax to define the syntax for RTF files. RTF files can be read and written by various word processing programms. This allows you to create dynamic wordprocessing documents or let process serial letters thru Embperl.
Currently Embperl regocnices the fields DOCVARIABLE, MERGEFIELD and NEXT. Variablenames are resolved as hash keys to $param[0] e.g. foo.bar referes to $param[0]{foo}{bar}, the @param Array can by set via the param parameter of the Execute function. NEXT moves to the next element of the @param array. If the end of the document is reached, Embperl repeats the document until all element of @param are processed. This can for example be use to tie a database table to @param and generate a serial letter.
SYNOPSIS
my $x = $Embperl::req -> component -> code ;
my ($op, $cmp, $a, $b) = XML::Embperl::DOM::Node::iChildsText (%$q%,%$x%,1) =~ /:([=])+s*"(.*?)"(?:s*"(.*?)"s*"(.*?)")?/ ;
if ($op eq =) { $op = eq }
elsif ($op eq ) { $op = gt }
elsif ($op eq >=) { $op = ge }
elsif ($op eq<<less
Currently Embperl regocnices the fields DOCVARIABLE, MERGEFIELD and NEXT. Variablenames are resolved as hash keys to $param[0] e.g. foo.bar referes to $param[0]{foo}{bar}, the @param Array can by set via the param parameter of the Execute function. NEXT moves to the next element of the @param array. If the end of the document is reached, Embperl repeats the document until all element of @param are processed. This can for example be use to tie a database table to @param and generate a serial letter.
SYNOPSIS
my $x = $Embperl::req -> component -> code ;
my ($op, $cmp, $a, $b) = XML::Embperl::DOM::Node::iChildsText (%$q%,%$x%,1) =~ /:([=])+s*"(.*?)"(?:s*"(.*?)"s*"(.*?)")?/ ;
if ($op eq =) { $op = eq }
elsif ($op eq ) { $op = gt }
elsif ($op eq >=) { $op = ge }
elsif ($op eq<<less
Download (0.65MB)
Added: 2007-07-25 License: Perl Artistic License Price:
821 downloads
Syntax::Highlight::Perl 1.0
Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures. more>>
Syntax::Highlight::Perl is a Perl module that can highlight Perl Syntactical Structures.
SYNOPSIS
# simple procedural
use Syntax::Highlight::Perl :BASIC; # or :FULL
print format_string($my_string);
# OO
use Syntax::Highlight::Perl;
my $formatter = new Syntax::Highlight::Perl;
print $formatter->format_string($my_string);
This module provides syntax highlighting for Perl code. The design bias is roughly line-oriented and streamed (ie, processing a file line-by-line in a single pass). Provisions may be made in the future for tasks related to "back-tracking" (ie, re-doing a single line in the middle of a stream) such as speeding up state copying.
<<lessSYNOPSIS
# simple procedural
use Syntax::Highlight::Perl :BASIC; # or :FULL
print format_string($my_string);
# OO
use Syntax::Highlight::Perl;
my $formatter = new Syntax::Highlight::Perl;
print $formatter->format_string($my_string);
This module provides syntax highlighting for Perl code. The design bias is roughly line-oriented and streamed (ie, processing a file line-by-line in a single pass). Provisions may be made in the future for tasks related to "back-tracking" (ie, re-doing a single line in the middle of a stream) such as speeding up state copying.
Download (0.033MB)
Added: 2007-04-03 License: Perl Artistic License Price:
935 downloads
Syntax::Highlight::HTML 0.04
Syntax::Highlight::HTML is a Perl module to highlight a HTML syntax. more>>
Syntax::Highlight::HTML is a Perl module to highlight a HTML syntax.
SYNOPSIS
use Syntax::Highlight::HTML;
my $highlighter = new Syntax::Highlight::HTML;
$output = $highlighter->parse($html);
If $html contains the following HTML fragment:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>
then the resulting HTML contained in $output will render like this:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>
This module is designed to take raw HTML input and highlight it (using a CSS stylesheet, see "Notes" for the classes). The returned HTML code is ready for inclusion in a web page.
It is intented to be used as an highlighting filter, and as such does not reformat or reindent the original HTML code.
<<lessSYNOPSIS
use Syntax::Highlight::HTML;
my $highlighter = new Syntax::Highlight::HTML;
$output = $highlighter->parse($html);
If $html contains the following HTML fragment:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>
then the resulting HTML contained in $output will render like this:
< !-- a description list -->
< dl compact="compact">
< dt>some word< /dt>
< dd>the description of the word. Plus some < a href="/definitions/other_word"
>reference< /a> towards another definition. < /dd>
< /dl>
This module is designed to take raw HTML input and highlight it (using a CSS stylesheet, see "Notes" for the classes). The returned HTML code is ready for inclusion in a web page.
It is intented to be used as an highlighting filter, and as such does not reformat or reindent the original HTML code.
Download (0.016MB)
Added: 2007-04-03 License: Perl Artistic License Price:
935 downloads
Syntax::Highlight::Shell 0.04
Syntax::Highlight::Shell is a Perl module to highlight shell scripts. more>>
Syntax::Highlight::Shell is a Perl module to highlight shell scripts.
SYNOPSIS
use Syntax::Highlight::Shell;
my $highlighter = new Syntax::Highlight::Shell;
$output = $highlighter->parse($script);
If $script contains the following shell code:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi
then the resulting HTML contained in $output will render like this:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi
This module is designed to take shell scripts and highlight them in HTML with meaningful colours using CSS. The resulting HTML output is ready for inclusion in a web page. Note that no reformating is done, all spaces are preserved.
<<lessSYNOPSIS
use Syntax::Highlight::Shell;
my $highlighter = new Syntax::Highlight::Shell;
$output = $highlighter->parse($script);
If $script contains the following shell code:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi
then the resulting HTML contained in $output will render like this:
# an if statement
if [ -f /etc/passwd ]; then
grep $USER /etc/passwd | awk -F: {print $5} /etc/passwd
fi
This module is designed to take shell scripts and highlight them in HTML with meaningful colours using CSS. The resulting HTML output is ready for inclusion in a web page. Note that no reformating is done, all spaces are preserved.
Download (0.015MB)
Added: 2007-04-03 License: GPL (GNU General Public License) Price:
935 downloads
Syntax::Highlight::Universal 0.4
Syntax::Highlight::Universal is a Perl module for syntax highlighting based on the Colorer library. more>>
Syntax::Highlight::Universal is a Perl module for syntax highlighting based on the Colorer library.
SYNOPSIS
use Syntax::Highlight::Universal;
my $highlighter = Syntax::Highlight::Universal->new;
$highlighter->addConfig("hrc/proto.hrc");
$highlighter->setPrecompiledConfig("precompiled.hrcc");
$highlighter->setCacheDir("/tmp/highlighter");
$highlighter->setCachePrefixLen(2);
my $result = $highlighter->highlight("perl", "print Hello, World!");
my $callbacks = {
initParsing => &myInitHandler,
addRegion => &myRegionHandler,
enterScheme => &mySchemeStartHandler,
leaveScheme => &mySchemeEndHandler,
finalizeParsing => &myFinalizeHandler,
};
$highlighter->highlight("perl", "print Hello, World!", $callbacks);
$highlighter->precompile("precompiled.hrcc");
ABSTRACT
This module can process text of any format and produce a syntax highlighted version of it. The default output format is (X)HTML, custom formats are also possible. It uses parts of the Colorer library (http://colorer.sf.net/) and supports its HRC configuration files (http://colorer.sf.net/hrc-ref/). Configuration files for about 100 file formats are included.
<<lessSYNOPSIS
use Syntax::Highlight::Universal;
my $highlighter = Syntax::Highlight::Universal->new;
$highlighter->addConfig("hrc/proto.hrc");
$highlighter->setPrecompiledConfig("precompiled.hrcc");
$highlighter->setCacheDir("/tmp/highlighter");
$highlighter->setCachePrefixLen(2);
my $result = $highlighter->highlight("perl", "print Hello, World!");
my $callbacks = {
initParsing => &myInitHandler,
addRegion => &myRegionHandler,
enterScheme => &mySchemeStartHandler,
leaveScheme => &mySchemeEndHandler,
finalizeParsing => &myFinalizeHandler,
};
$highlighter->highlight("perl", "print Hello, World!", $callbacks);
$highlighter->precompile("precompiled.hrcc");
ABSTRACT
This module can process text of any format and produce a syntax highlighted version of it. The default output format is (X)HTML, custom formats are also possible. It uses parts of the Colorer library (http://colorer.sf.net/) and supports its HRC configuration files (http://colorer.sf.net/hrc-ref/). Configuration files for about 100 file formats are included.
Download (0.67MB)
Added: 2007-04-13 License: Perl Artistic License Price:
924 downloads
Syntax::Highlight::Engine::Kate 0.02
Syntax::Highlight::Engine::Kate is a port to Perl of the syntax highlight engine of the Kate texteditor. more>>
Syntax::Highlight::Engine::Kate is a port to Perl of the syntax highlight engine of the Kate texteditor.
Syntax::Highlight::Engine::Kate is a port to perl of the syntax highlight engine of the Kate text editor.
The language xml files of kate have been rewritten to perl modules using a script. These modules function as plugins to this module.
Syntax::Highlight::Engine::Kate inherits Syntax::Highlight::Engine::Kate::Template.
OPTIONS
language
Specify the language you want highlighted. look in the PLUGINS section for supported languages.
plugins
If you created your own language plugins you may specify a list of them with this option.
plugins => [
["MyModuleName", "MyLanguageName", "*,ext1;*.ext2", "Section"],
....
]
format_table
This option must be specified if the highlightText method needs to do anything usefull for you. All mentioned keys in the synopsis must be specified.
substitutions
With this option you can specify additional formatting options.
<<lessSyntax::Highlight::Engine::Kate is a port to perl of the syntax highlight engine of the Kate text editor.
The language xml files of kate have been rewritten to perl modules using a script. These modules function as plugins to this module.
Syntax::Highlight::Engine::Kate inherits Syntax::Highlight::Engine::Kate::Template.
OPTIONS
language
Specify the language you want highlighted. look in the PLUGINS section for supported languages.
plugins
If you created your own language plugins you may specify a list of them with this option.
plugins => [
["MyModuleName", "MyLanguageName", "*,ext1;*.ext2", "Section"],
....
]
format_table
This option must be specified if the highlightText method needs to do anything usefull for you. All mentioned keys in the synopsis must be specified.
substitutions
With this option you can specify additional formatting options.
Download (0.34MB)
Added: 2007-06-08 License: Perl Artistic License Price:
868 downloads
Syntax::Highlight::Engine::Kate::C 0.01
Syntax::Highlight::Engine::Kate::C is a plugin for C syntax highlighting. more>>
Syntax::Highlight::Engine::Kate::C is a plugin for C syntax highlighting.
SYNOPSIS
require Syntax::Highlight::Engine::Kate::C;
my $sh = new Syntax::Highlight::Engine::Kate::C([
]);
Syntax::Highlight::Engine::Kate::C is a plugin module that provides syntax highlighting for C to the Syntax::Haghlight::Engine::Kate highlighting engine.
This code is generated from the syntax definition files used by the Kate project. It works quite fine, but can use refinement and optimization.
It inherits Syntax::Higlight::Engine::Kate::Template. See also there.
<<lessSYNOPSIS
require Syntax::Highlight::Engine::Kate::C;
my $sh = new Syntax::Highlight::Engine::Kate::C([
]);
Syntax::Highlight::Engine::Kate::C is a plugin module that provides syntax highlighting for C to the Syntax::Haghlight::Engine::Kate highlighting engine.
This code is generated from the syntax definition files used by the Kate project. It works quite fine, but can use refinement and optimization.
It inherits Syntax::Higlight::Engine::Kate::Template. See also there.
Download (0.25MB)
Added: 2006-07-06 License: GPL (GNU General Public License) Price:
1206 downloads

Crafty Syntax Live Help (linux) 2.4.16
Live help functionality that can be proactively pushed to visitors to your site. more>> Crafty Syntax Live Help (CSLH) is an open source live support solution that helps customer support with live help functionality that can be proactively pushed to visitors to your site or requested by the consumer. Crafty Syntax includes a large range of features to allow multiple operators, multiple departments and multiple languages to be used.
Crafty Syntax Live Help is free and is progammed in PHP with Mysql for the datatabase. Other highlighted features include the ability to create your own questions, auto inviting visitors, referer tracking, page tracking, ability to view what the customer is typing as they type, multiple chat sessions, sound alert, leave a message if offline, push urls, quick responses, Customizable graphics, and multiple operators. runs on your server and is open source GPL.<<less
Download (1.17MB)
Added: 2009-04-23 License: Freeware Price: Free
183 downloads
Syntax::Highlight::Engine::Kate::Java 0.02
Syntax::Highlight::Engine::Kate::Java is a Perl plugin for Java syntax highlighting. more>>
Syntax::Highlight::Engine::Kate::Java is a Perl plugin for Java syntax highlighting.
SYNOPSIS
require Syntax::Highlight::Engine::Kate::Java;
my $sh = new Syntax::Highlight::Engine::Kate::Java([
]);
Syntax::Highlight::Engine::Kate::Java is a plugin module that provides syntax highlighting for Java to the Syntax::Haghlight::Engine::Kate highlighting engine.
This code is generated from the syntax definition files used by the Kate project. It works quite fine, but can use refinement and optimization.
It inherits Syntax::Higlight::Engine::Kate::Template. See also there.
<<lessSYNOPSIS
require Syntax::Highlight::Engine::Kate::Java;
my $sh = new Syntax::Highlight::Engine::Kate::Java([
]);
Syntax::Highlight::Engine::Kate::Java is a plugin module that provides syntax highlighting for Java to the Syntax::Haghlight::Engine::Kate highlighting engine.
This code is generated from the syntax definition files used by the Kate project. It works quite fine, but can use refinement and optimization.
It inherits Syntax::Higlight::Engine::Kate::Template. See also there.
Download (0.34MB)
Added: 2007-06-04 License: Perl Artistic License Price:
874 downloads
Gettext PO syntax highlighting for Vim 20060127
Gettext PO syntax highlighting for Vim it highlights and checks Gettext PO format files for GNU, Gnome, and KDE software. more>>
Gettext PO syntax highlighting for Vim enhances the default PO syntax highlighting within vim to add the following new features and improvements:
- Gettext plurals
- KDE style plurals
- KDE style comments
- KDE desktop file entries have AAAA= highlighted
- Error checking on KDE plurals and comments
- Mark the fuzzy flag as a TODO item
- Basic HTML highlighting within msgstr and msgid
- Highlights text within HTML tags that could potentially be translated
- Highlights PO header items
- Marks header items that are unset
- Marks copyright header items that are unset
- Highlight variables of type %d
- Accelerator keys for KDE, Gnome and OpenOffice are highlighted
- msguniq and msgcat conflicts #-#-#-#-# are highlighted
Installation
- Place in your local .vim/syntax
- On Fedora at least place in /usr/share/vim/vim62/syntax for the new PO highlighting to be available to everyone
Enhancements:
- Adds highlighting for the new Gettext context information.
- Highlights unset plural form header information.
<<less- Gettext plurals
- KDE style plurals
- KDE style comments
- KDE desktop file entries have AAAA= highlighted
- Error checking on KDE plurals and comments
- Mark the fuzzy flag as a TODO item
- Basic HTML highlighting within msgstr and msgid
- Highlights text within HTML tags that could potentially be translated
- Highlights PO header items
- Marks header items that are unset
- Marks copyright header items that are unset
- Highlight variables of type %d
- Accelerator keys for KDE, Gnome and OpenOffice are highlighted
- msguniq and msgcat conflicts #-#-#-#-# are highlighted
Installation
- Place in your local .vim/syntax
- On Fedora at least place in /usr/share/vim/vim62/syntax for the new PO highlighting to be available to everyone
Enhancements:
- Adds highlighting for the new Gettext context information.
- Highlights unset plural form header information.
Download (0.001MB)
Added: 2006-01-28 License: GPL (GNU General Public License) Price:
1364 downloads
PySnippet 1.3
PySnippet is a code snippet manager for any language. more>>
PySnippet is a code snippet manager for any language.
It features a user defined folder hierarchy, syntax highlighting, automatic clipboard copying, and an XML based data file.
Enhancements:
- A snippet properties window and an about window were created.
- Four new C++ snippets were added.
<<lessIt features a user defined folder hierarchy, syntax highlighting, automatic clipboard copying, and an XML based data file.
Enhancements:
- A snippet properties window and an about window were created.
- Four new C++ snippets were added.
Download (0.014MB)
Added: 2005-10-05 License: GPL (GNU General Public License) Price:
1480 downloads
Jostraca 0.4.1
Jostraca is a general purpose code generation toolkit for software developers. more>>
Jostraca is a general purpose code generation toolkit for software developers.
Jostraca project uses JSP syntax and can be configured to use a number of different programming languages.
Jostraca is a templating tool for Generative Programming.
Jostraca generates code using the Java Server Pages syntax. However this syntax can be used with any language. Jostraca comes preconfigured for Java, JavaScript, Perl, Python, Jython, Ruby, Rebol and C, with more to come.
Enhancements:
- Classpath controls were added to the Ant task.
- JavaScript support was added (using Rhino).
- Many minor bugs were fixed.
<<lessJostraca project uses JSP syntax and can be configured to use a number of different programming languages.
Jostraca is a templating tool for Generative Programming.
Jostraca generates code using the Java Server Pages syntax. However this syntax can be used with any language. Jostraca comes preconfigured for Java, JavaScript, Perl, Python, Jython, Ruby, Rebol and C, with more to come.
Enhancements:
- Classpath controls were added to the Ant task.
- JavaScript support was added (using Rhino).
- Many minor bugs were fixed.
Download (0.92MB)
Added: 2006-06-01 License: GPL (GNU General Public License) Price:
1241 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above syntax search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed