ez red skin fix
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 4640
EZ Red Skin Fix
EZ Red Skin Fix is a script-fu that can be used to improve skin that has a reddish tint. more>>
EZ Red Skin Fix is a script-fu based on a technique by lylejk of dpreview.com that can be used to improve skin that has a reddish tint.
<<less Download (MB)
Added: 2006-09-15 License: GPL (GNU General Public License) Price:
1139 downloads
eZ region 1.1.4
eZ region provides updated eZpublish modules that provide Regions/States. more>>
eZ region provides updated eZpublish modules that provide Regions/States.
eZ region is a PHP class and an updated set of eZ publish modules that provide support for regions or states to eZ publishs eZ address and eZ user modules.
eZ region is not a killer app, but it made eZ publish one for me!
eZ region provides a lookup table of what some
call regions or states, depending on the country.
eZ region is an added dependacy to eZ address.
eZ region was based off the eZ country module.
eZ regions are each associated with an eZ country.
eZ region design is dependant on the eZ address and eZ country modules.
eZ region can be used in at least the following ways:
Default - Providing ezuser/user/userwithaddress with a region or stat list.
Requiring only eZ address, and eZ user .
Trade - Providing eztrade/user with a region list included in the trade transaction.
Requiring eZ address, eZ user and eZ trade.
Note: eZ region 1.1.4 does not contain the eZ trade user
functions to meet the trade use dependancy, though future releases (1.1.5) will.
International Regions / States:
eZ region can be used to support non-US States.
Only states from the United States of America are included in eZ region 1.1.4.
Regions from any country can be used in conjunction with U.S. states.
The missing dependancy for other regions is a list of
South American and European regions and some sql additions.
All countries have regions in some fashion or style.
A fair amount of North America has states. Other countries
Canada, Mexico, South & Central America & Europe use other names to lable their regions.
Users from other countries can use eZ region by populating
the eZAddress_Region table with a list of regions/states/provinces associated to their countrys ez country ID.
Note: International users feel free to contact me regarding,
including your countrys regions in eZ region.
<<lesseZ region is a PHP class and an updated set of eZ publish modules that provide support for regions or states to eZ publishs eZ address and eZ user modules.
eZ region is not a killer app, but it made eZ publish one for me!
eZ region provides a lookup table of what some
call regions or states, depending on the country.
eZ region is an added dependacy to eZ address.
eZ region was based off the eZ country module.
eZ regions are each associated with an eZ country.
eZ region design is dependant on the eZ address and eZ country modules.
eZ region can be used in at least the following ways:
Default - Providing ezuser/user/userwithaddress with a region or stat list.
Requiring only eZ address, and eZ user .
Trade - Providing eztrade/user with a region list included in the trade transaction.
Requiring eZ address, eZ user and eZ trade.
Note: eZ region 1.1.4 does not contain the eZ trade user
functions to meet the trade use dependancy, though future releases (1.1.5) will.
International Regions / States:
eZ region can be used to support non-US States.
Only states from the United States of America are included in eZ region 1.1.4.
Regions from any country can be used in conjunction with U.S. states.
The missing dependancy for other regions is a list of
South American and European regions and some sql additions.
All countries have regions in some fashion or style.
A fair amount of North America has states. Other countries
Canada, Mexico, South & Central America & Europe use other names to lable their regions.
Users from other countries can use eZ region by populating
the eZAddress_Region table with a list of regions/states/provinces associated to their countrys ez country ID.
Note: International users feel free to contact me regarding,
including your countrys regions in eZ region.
Download (0.41MB)
Added: 2007-04-05 License: GPL (GNU General Public License) Price:
936 downloads
Shed Skin 0.0.23
Shed Skin is an experimental Python-to-C++ compiler. more>>
Shed Skin is an experimental Python-to-C++ compiler. Shed Skin accepts pure Python programs, and generates optimized C++ code. This means that, in combination with a C++ compiler, it allows for translation of Python programs into highly efficient machine language. For a set of 16 non-trivial test programs, measurements show a typical speedup of 2-40 over Psyco, about 12 on average, and 2-220 over CPython, about 45 on average (see Section 5 of my Masters Thesis on the right). Shed Skin also outputs annotated source code.
The high performance and elegant approach of Shed Skin (it is only 6000 lines!) come at a cost. First, it currently only accepts programs that are statically typed. This simply means that variables can only ever have a single type. So e.g. a = 1; a = 1 is not allowed. Of course, a single type can be abstract or generic (as in C++), so that e.g. a = A(); a = B(), where A and B have a common base class, is allowed.
Second, Python programs cannot currently freely use the Python standard library. However, some common imports are supported (see *_.py), and many others can be easily added. The problem is a practical one, since in theory it is possible to create bindings for most library modules. A simple work-around can be to only compile critical parts of a Python program, and communicate with it through e.g. files and standard in- and output. This way, the main program can use the full Python dynamics and standard library, and the whole program is written in pure Python.
Shed Skin is still alpha software, and there are some other minor, mostly temporary, limitations. Please read the Limitations section carefully, before trying to compile a program. The only thing I ask in return for making the software available under the GPL, is that you send me an email when you encounter a problem, that is not listed among these limitations. This is the fastest way to getting your program supported, since I typically do not fix problems I do not know about. Please also let me know if you would like me to implement certain library calls.
Enhancements:
- Support for __iadd__, __imul__, and such was added (but not for __ipow__ and __imod__).
- The set implementation was optimized.
- A string formatting problem was fixed (%% did not always work).
- Some bugs were fixed in generating extension modules.
- A particular inheritance problem was fixed.
<<lessThe high performance and elegant approach of Shed Skin (it is only 6000 lines!) come at a cost. First, it currently only accepts programs that are statically typed. This simply means that variables can only ever have a single type. So e.g. a = 1; a = 1 is not allowed. Of course, a single type can be abstract or generic (as in C++), so that e.g. a = A(); a = B(), where A and B have a common base class, is allowed.
Second, Python programs cannot currently freely use the Python standard library. However, some common imports are supported (see *_.py), and many others can be easily added. The problem is a practical one, since in theory it is possible to create bindings for most library modules. A simple work-around can be to only compile critical parts of a Python program, and communicate with it through e.g. files and standard in- and output. This way, the main program can use the full Python dynamics and standard library, and the whole program is written in pure Python.
Shed Skin is still alpha software, and there are some other minor, mostly temporary, limitations. Please read the Limitations section carefully, before trying to compile a program. The only thing I ask in return for making the software available under the GPL, is that you send me an email when you encounter a problem, that is not listed among these limitations. This is the fastest way to getting your program supported, since I typically do not fix problems I do not know about. Please also let me know if you would like me to implement certain library calls.
Enhancements:
- Support for __iadd__, __imul__, and such was added (but not for __ipow__ and __imod__).
- The set implementation was optimized.
- A string formatting problem was fixed (%% did not always work).
- Some bugs were fixed in generating extension modules.
- A particular inheritance problem was fixed.
Download (0.16MB)
Added: 2007-06-29 License: GPL (GNU General Public License) Price:
850 downloads
Red Hat Linux 9
Red Hat Linux is probably the best-known Linux distribution. more>>
Red Hat Linux is probably the best-known Linux distribution. Red Hat Linux is well-supported by commercial software, and tends to be easy to install and have good hardware support out of the box.
Compaq has taken over the maintenance for Red Hat for their Alpha processor - theres a link to their Alpha Red Hat page below.
Red Hat 9 is the last version of Red Hat Linux per se, and Red Hat will stop supporting it soon. Instead they offer a commercial Linux distribution, "Red Hat Enterprise Edition", and a free distribution, "The Fedora Project".
<<lessCompaq has taken over the maintenance for Red Hat for their Alpha processor - theres a link to their Alpha Red Hat page below.
Red Hat 9 is the last version of Red Hat Linux per se, and Red Hat will stop supporting it soon. Instead they offer a commercial Linux distribution, "Red Hat Enterprise Edition", and a free distribution, "The Fedora Project".
Download (638MB)
Added: 2005-04-06 License: GPL (GNU General Public License) Price:
1092 downloads
Freedom Plone Skin 1.3.1
Freedom Plone Skin provides a skin based on Plone Skin Dump product. more>>
Freedom Plone Skin provides a skin based on Plone Skin Dump product.
Freedom is one of Plone skins from Alternative Plone Skins project.
You can install Freedom Plone skin in the same way as other Plone products:
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: Freedom Plone skin was created with Plone skin dump product.
<<lessFreedom is one of Plone skins from Alternative Plone Skins project.
You can install Freedom Plone skin in the same way as other Plone products:
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: Freedom Plone skin was created with Plone skin dump product.
Download (0.018MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
941 downloads
Beyond The Red Line Demo
Beyond the Red Line is a stand-alone total conversion for the award-winning Freespace 2. more>>
Beyond the Red Line project is a stand-alone total conversion for the award-winning Freespace 2 released by Volition and Interplay for the PC. It is based on the popular new tv-show Battlestar Galactica. No, not the one from the 70s.
Will I need Freespace 2 to play it?
No, Beyond the Red Line is a stand-alone conversion and will not require Freespace 2. All you need for playing will be included in the download.
Is it free?
Absolutely. The game is made by fans for the fans, no profit is being made from any part of the project. Although we could use some pizzas and coke to keep our mortal bodies running.
That about covers it... a BSG total conversion of FS2 that has just released a demo version. it plays really well and looks amazing. a must for any BSG fan.
Enhancements:
- This demo contains spoilers for the second season of BSG, so if you havent seen that season yet you should pass on this game for now.
<<lessWill I need Freespace 2 to play it?
No, Beyond the Red Line is a stand-alone conversion and will not require Freespace 2. All you need for playing will be included in the download.
Is it free?
Absolutely. The game is made by fans for the fans, no profit is being made from any part of the project. Although we could use some pizzas and coke to keep our mortal bodies running.
That about covers it... a BSG total conversion of FS2 that has just released a demo version. it plays really well and looks amazing. a must for any BSG fan.
Enhancements:
- This demo contains spoilers for the second season of BSG, so if you havent seen that season yet you should pass on this game for now.
Download (MB)
Added: 2007-04-23 License: Freeware Price:
925 downloads
LBlueGray Plone Skin 2.1.2
LBlueGray Plone Skin provides a skin based on Plone Skin Dump product. more>>
LBlueGray Plone Skin provides a skin based on Plone Skin Dump product.
LBlueGray is one of Plone skins from Alternative Plone Skins project.
You can install LBlueGray Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LBlueGray Plone skin was created with Plone skin dump product.
<<lessLBlueGray is one of Plone skins from Alternative Plone Skins project.
You can install LBlueGray Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: LBlueGray Plone skin was created with Plone skin dump product.
Download (0.014MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
945 downloads
WhiteBlack Plone Skin 1.1.0
WhiteBlack Plone Skin provides a white-black skin for Plone. more>>
WhiteBlack Plone Skin provides a white-black skin for Plone.
WhiteBlack is one of Plone skins from Alternative Plone Skins project.
Install
You can install WhiteBlack Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: WhiteBlack Plone skin was created with Plone skin dump product.
<<lessWhiteBlack is one of Plone skins from Alternative Plone Skins project.
Install
You can install WhiteBlack Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: WhiteBlack Plone skin was created with Plone skin dump product.
Download (0.037MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
940 downloads
eZ calendar 2.1
eZ calendar provides a calendar extension for the eZ publish CMS. more>>
eZ calendar provides a calendar extension for the eZ publish CMS.
eZ calendar is an eZ publish 2 module that provides an advanced Web based calendar application.
It supports recurring events, comments, groups, types, categories, priorities, status, comments, files, links, sorting, month, week, day, and year views, tooltips, JSCalendar date selection, and new design templates.
It features very flexible security and supports permissions on the groups that can view, add, edit, and delete events.
Main features:
- With eZ calendar you can filter the events based on the event type and for which group of people the event concerns. The eZ calendar features very flexible security and permissions on calendar administration depending on user groups specified in the admin which can view, add, edit, delete events. The public user in the prerequisite group can view either by day, month or year.
- It also supports a new dhtml, css user interphase, advanced repeat event, file/image/map attachments, directions link, html descriptions, multi-tier event groupings and many more features .
- eZ calendar is a powerful component to add into any existing eZ publish installation, especially used for collaborative and informative sites.
- eZ calendar provides calendar features which match most handheld and computer desktop datebook / calendar applications.
- eZ calendar has been extended to support every possible kind of reoccurring event type you can imagine.
- eZ calendar is a standalone module, which depends on the eZ publish framework, modules and classes.
- A special thanks goes out to everyone in the eZ publish user community who contributed to eZ calendars design, development, motivation, funding, testing, extension, feedback and so much more .
<<lesseZ calendar is an eZ publish 2 module that provides an advanced Web based calendar application.
It supports recurring events, comments, groups, types, categories, priorities, status, comments, files, links, sorting, month, week, day, and year views, tooltips, JSCalendar date selection, and new design templates.
It features very flexible security and supports permissions on the groups that can view, add, edit, and delete events.
Main features:
- With eZ calendar you can filter the events based on the event type and for which group of people the event concerns. The eZ calendar features very flexible security and permissions on calendar administration depending on user groups specified in the admin which can view, add, edit, delete events. The public user in the prerequisite group can view either by day, month or year.
- It also supports a new dhtml, css user interphase, advanced repeat event, file/image/map attachments, directions link, html descriptions, multi-tier event groupings and many more features .
- eZ calendar is a powerful component to add into any existing eZ publish installation, especially used for collaborative and informative sites.
- eZ calendar provides calendar features which match most handheld and computer desktop datebook / calendar applications.
- eZ calendar has been extended to support every possible kind of reoccurring event type you can imagine.
- eZ calendar is a standalone module, which depends on the eZ publish framework, modules and classes.
- A special thanks goes out to everyone in the eZ publish user community who contributed to eZ calendars design, development, motivation, funding, testing, extension, feedback and so much more .
Download (0.46MB)
Added: 2007-02-01 License: GPL (GNU General Public License) Price:
1014 downloads
Fedora Rescue CD for i386
Fedora Rescue CD is a rescue CD for Fedora Core based systems. more>>
Fedora Rescue CD is a rescue CD for Fedora Core based systems.
The Fedora Project is a Red-Hat-sponsored and community-supported open source project. It is also a proving ground for new technology that may eventually make its way into Red Hat products. It is not a supported product of Red Hat, Inc.
The goal of The Fedora Project is to work with the Linux community to build a complete, general purpose operating system exclusively from free software. Development will be done in a public forum. The project will produce time-based releases of Fedora Core about 2-3 times a year with a public release schedule.
The Red Hat engineering team will continue to participate in the building of Fedora Core and will invite and encourage more outside participation than was possible in Red Hat Linux.
By using this more open process, we hope to provide an operating system that uses free software development practices and is more appealing to the open source community.
<<lessThe Fedora Project is a Red-Hat-sponsored and community-supported open source project. It is also a proving ground for new technology that may eventually make its way into Red Hat products. It is not a supported product of Red Hat, Inc.
The goal of The Fedora Project is to work with the Linux community to build a complete, general purpose operating system exclusively from free software. Development will be done in a public forum. The project will produce time-based releases of Fedora Core about 2-3 times a year with a public release schedule.
The Red Hat engineering team will continue to participate in the building of Fedora Core and will invite and encourage more outside participation than was possible in Red Hat Linux.
By using this more open process, we hope to provide an operating system that uses free software development practices and is more appealing to the open source community.
Download (88MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1063 downloads
Red-Piranha 0.3
Red-Piranha is a search and knowledge management system. more>>
Red-Piranha is an open source search system that can actually learn what you are looking for. It lets you go everywhere , find anything , understand everything.
Because it is open source , it can integrate with any system. Because you can use it as a web page , command line or XML- WebService , it will work with most languages , including Java , Perl , C#/.Net and PHP. As a Java based program , it will run on any platform including Windows , Linux / Unix and Mac.
Main features:
- Personal Search Engine for your Desktop (Windows , Linux and Mac).
- Intranet Search Engine - Search your Company or College Intranet.
- Part of your Development Project - Have search abilities up and running in a few minutes.
- To provide Search facilities on your website.
- As a P2P search engine.
- In conjunction with a wiki, as a knowledge / document management solution.
- Scan a set of websites for the data you want (e.g. Search Job sites on a hourly basis).
- Explore the Semantic web using RDF.
- Search RSS feeds for the information you want.
- Search your Companies systems (including SAP , Oracle or any other Database / Data source).
- Provide a back end for searching in your App (Web , Swing , SWT , Flash, Mozilla-XUL, PHP , Perl or even c#/.Net) .
- Document Management for PDF, Word and other Docs.
- As a Webservice to provide search information
- As a command line tool , to give searching power to your scripts.
- Provide a Search facility for your project documentation.
Using
To use Red-Piranha - open your favourite web browser and point it at http://localhost:8080/RP . Within a few seconds , you should see the Red-Piranha start screen. This will have three items of interest
- A Text box , where we enter the information to add or search
- An add information button - to tell Red-Piranha about new information
- A Search button - to carry out a search.
Before we can search , we must tell Red-Piranha we information we are interested in. This is as easy as putting the piece of information we want to add (e.g. the folder c:temp) in the search box and pressing the Add information button. A message will be displayed saying that your information is being added and will be available to search shortly. For more information , look in the logs at TOMCAT_HOMEWebappsRPlogsrp.log
Examples of things we can add to Red-Piranha are
- A folder (e.g. C:Temp). All files in both this folder and *all* its subfolders will be added.
- An individual file. This file can be text , a web page , a word document , or pdf document. For binary files (like word , which are not plain text) , Red-Piranha will scan the file for recognizable text and add that.
- A Web page. Red-Piranha will add this web page , *and* web pages it links to.
- A Google Search (e.g. http://www.google.com/search?q=some+thing?m=100). Red-Piranha will get the results of the google search , and add information on the pages it links to.
- An XML file (including RSS feeds) , either on disk or over the web.
- Favourites / Bookmarks folders - Red-Piranha will index the web pages that these favourites point to.
Adding information can take anything from a few milliseconds , depending on the amount of information being added. Once added, Red-Piranha will check on a regular basis to see if the information added has changed and re-index if required. Your information is now available to be searched.
To do a search , put the item you want to search for into the textbox and press search. Red-Piranha will show the search results on the screen. Clicking on the link beside the search results will show you the original information (as long as you have access to it).
From version 0.3 onwards , Red-Piranha can learn what search results you are interested in an improve your future searches. To give Red-Piranha feedback and help it learn what you are interested in , click on any of the links on the search results page. Red-Piranha makes a note of your choice , which is used to adjust the search results later.
<<lessBecause it is open source , it can integrate with any system. Because you can use it as a web page , command line or XML- WebService , it will work with most languages , including Java , Perl , C#/.Net and PHP. As a Java based program , it will run on any platform including Windows , Linux / Unix and Mac.
Main features:
- Personal Search Engine for your Desktop (Windows , Linux and Mac).
- Intranet Search Engine - Search your Company or College Intranet.
- Part of your Development Project - Have search abilities up and running in a few minutes.
- To provide Search facilities on your website.
- As a P2P search engine.
- In conjunction with a wiki, as a knowledge / document management solution.
- Scan a set of websites for the data you want (e.g. Search Job sites on a hourly basis).
- Explore the Semantic web using RDF.
- Search RSS feeds for the information you want.
- Search your Companies systems (including SAP , Oracle or any other Database / Data source).
- Provide a back end for searching in your App (Web , Swing , SWT , Flash, Mozilla-XUL, PHP , Perl or even c#/.Net) .
- Document Management for PDF, Word and other Docs.
- As a Webservice to provide search information
- As a command line tool , to give searching power to your scripts.
- Provide a Search facility for your project documentation.
Using
To use Red-Piranha - open your favourite web browser and point it at http://localhost:8080/RP . Within a few seconds , you should see the Red-Piranha start screen. This will have three items of interest
- A Text box , where we enter the information to add or search
- An add information button - to tell Red-Piranha about new information
- A Search button - to carry out a search.
Before we can search , we must tell Red-Piranha we information we are interested in. This is as easy as putting the piece of information we want to add (e.g. the folder c:temp) in the search box and pressing the Add information button. A message will be displayed saying that your information is being added and will be available to search shortly. For more information , look in the logs at TOMCAT_HOMEWebappsRPlogsrp.log
Examples of things we can add to Red-Piranha are
- A folder (e.g. C:Temp). All files in both this folder and *all* its subfolders will be added.
- An individual file. This file can be text , a web page , a word document , or pdf document. For binary files (like word , which are not plain text) , Red-Piranha will scan the file for recognizable text and add that.
- A Web page. Red-Piranha will add this web page , *and* web pages it links to.
- A Google Search (e.g. http://www.google.com/search?q=some+thing?m=100). Red-Piranha will get the results of the google search , and add information on the pages it links to.
- An XML file (including RSS feeds) , either on disk or over the web.
- Favourites / Bookmarks folders - Red-Piranha will index the web pages that these favourites point to.
Adding information can take anything from a few milliseconds , depending on the amount of information being added. Once added, Red-Piranha will check on a regular basis to see if the information added has changed and re-index if required. Your information is now available to be searched.
To do a search , put the item you want to search for into the textbox and press search. Red-Piranha will show the search results on the screen. Clicking on the link beside the search results will show you the original information (as long as you have access to it).
From version 0.3 onwards , Red-Piranha can learn what search results you are interested in an improve your future searches. To give Red-Piranha feedback and help it learn what you are interested in , click on any of the links on the search results page. Red-Piranha makes a note of your choice , which is used to adjust the search results later.
Download (22.4MB)
Added: 2005-04-25 License: GPL (GNU General Public License) Price:
1642 downloads
SkinLF 6.7
SkinLF provides a skin system for Java programs. more>>
Todays applications tend to be skinnable: cdplayers, email notifiers, even operating systems. SkinLF project provides a skin system for Java programs.
Skin Look And Feel allows Java developers to write skinnable application using the Swing toolkit. Skin Look And Feel is able to read GTK (The Gimp Toolkit) and KDE (The K Desktop Environment) skins to enhance your application GUI controls such as Buttons, Checks, Radios, Scrollbars, Progress Bar, Lists, Tables, Internal Frames, Colors, Background Textures, Regular Windows. Skin Look And Feel (aka SkinLF) also includes NativeSkin to create irregular windows.
Enhancements:
- This version includes a patch addressing a threading issue in popup menu animation.
- Several changes were made to reduce a potential memory leak when using disabled buttons.
- SkinLF was updated to Laf-Plugin 0.2 (from https://laf-plugin.dev.java.net/).
<<lessSkin Look And Feel allows Java developers to write skinnable application using the Swing toolkit. Skin Look And Feel is able to read GTK (The Gimp Toolkit) and KDE (The K Desktop Environment) skins to enhance your application GUI controls such as Buttons, Checks, Radios, Scrollbars, Progress Bar, Lists, Tables, Internal Frames, Colors, Background Textures, Regular Windows. Skin Look And Feel (aka SkinLF) also includes NativeSkin to create irregular windows.
Enhancements:
- This version includes a patch addressing a threading issue in popup menu animation.
- Several changes were made to reduce a potential memory leak when using disabled buttons.
- SkinLF was updated to Laf-Plugin 0.2 (from https://laf-plugin.dev.java.net/).
Download (0.80MB)
Added: 2006-07-24 License: The Apache License Price:
1193 downloads
Plone Skin Dump 0.7.1
Plone Skin Dump is a product which allows to create Plone product based on some ZMI located skin folder. more>>
Plone Skin Dump is a product which allows to create Plone product based on some ZMI located skin folder.
Plone Skin Dump (qPloneSkinDump) allows to create Plone product based on some ZMI located skin folder (eg "custom") from portal_skins. So you can easy create Plone product with skin based on folder with customized styles and page templates.
Usage
Install qPloneSkinDump as Zope product
Install qPloneSkinDump in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
Create folder ( ) in portal_skins and fill it according to your needs.
Go to the Plone Control Panel and edit corresponding data.
For using new Plone product you must reload Zope, and install it in quickinstaller.
Enhancements:
- Fixed bug of dumping to new Skin Product objects with none ascii characters
<<lessPlone Skin Dump (qPloneSkinDump) allows to create Plone product based on some ZMI located skin folder (eg "custom") from portal_skins. So you can easy create Plone product with skin based on folder with customized styles and page templates.
Usage
Install qPloneSkinDump as Zope product
Install qPloneSkinDump in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
Create folder ( ) in portal_skins and fill it according to your needs.
Go to the Plone Control Panel and edit corresponding data.
For using new Plone product you must reload Zope, and install it in quickinstaller.
Enhancements:
- Fixed bug of dumping to new Skin Product objects with none ascii characters
Download (0.029MB)
Added: 2007-03-28 License: ZPL (Zope Public License) Price:
940 downloads
CreamCaustic Plone Skin 1.3
CreamCaustic Plone Skin provides a skin based on Plone Skin Dump product. more>>
CreamCaustic Plone Skin provides a skin based on Plone Skin Dump product.
You can install CreamCaustic Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: CreamCaustic Plone skin was created with Plone skin dump product.
<<lessYou can install CreamCaustic Plone skin in the same way as other Plone products:
- Download zip. or .gz archive.
- Install as Zope product: extract Plone skin from archive to directory of products and restart Zope server.
- Install in your Plone instance with QuickInstaller (Plone Control Panel -> Add/remove Products)
- Now your Plone site should have the corresponding skin look.
Note: CreamCaustic Plone skin was created with Plone skin dump product.
Download (0.027MB)
Added: 2007-03-29 License: ZPL (Zope Public License) Price:
568 downloads
Fedora Rescue CD for x86_64
Fedora Rescue CD is a rescue CD for Fedora Core based systems. more>>
Fedora Rescue CD is a rescue CD for Fedora Core based systems.
The Fedora Project is a Red-Hat-sponsored and community-supported open source project. It is also a proving ground for new technology that may eventually make its way into Red Hat products. It is not a supported product of Red Hat, Inc.
The goal of The Fedora Project is to work with the Linux community to build a complete, general purpose operating system exclusively from free software. Development will be done in a public forum. The project will produce time-based releases of Fedora Core about 2-3 times a year with a public release schedule.
The Red Hat engineering team will continue to participate in the building of Fedora Core and will invite and encourage more outside participation than was possible in Red Hat Linux.
By using this more open process, we hope to provide an operating system that uses free software development practices and is more appealing to the open source community.
<<lessThe Fedora Project is a Red-Hat-sponsored and community-supported open source project. It is also a proving ground for new technology that may eventually make its way into Red Hat products. It is not a supported product of Red Hat, Inc.
The goal of The Fedora Project is to work with the Linux community to build a complete, general purpose operating system exclusively from free software. Development will be done in a public forum. The project will produce time-based releases of Fedora Core about 2-3 times a year with a public release schedule.
The Red Hat engineering team will continue to participate in the building of Fedora Core and will invite and encourage more outside participation than was possible in Red Hat Linux.
By using this more open process, we hope to provide an operating system that uses free software development practices and is more appealing to the open source community.
Download (89MB)
Added: 2006-12-26 License: GPL (GNU General Public License) Price:
1047 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 ez red skin fix 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