Eyes Of Lynx 0.3.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Eyes Of Lynx 0.3.0 (Default branch)
# 1  
Old 05-14-2008
Eyes Of Lynx 0.3.0 (Default branch)

ImageEyes Of Lynx is a Web-based application that allows you to share, examine, and manage your photo albums. It's designed to be fast, intuitive, and very powerful. Its key features include an original and innovative interface, zoomand rotation tools, auto-rotation of photos when an orientation is provided in EXIF data (information stored by digital cameras), a cache of images in a smaller/intermediate size toincrease display and loading speeds, thumbnail image navigation, and more.License: Affero General Public LicenseChanges:
New features include a new box in the sidebar to display some information about the current image, a new theme called "Carbon", tooltips for icons and sub-albums in the album "Icon View", multilingual support (currently English and French), scrolling with mouse wheel in the carousel, an option for "mouse wheel action on image" in preferences, and auto-hiding of the navigation bar when there is no mouse activity. The loading of thumbnails was greatly improved. Code was ported to use the 1.2 release of MooTools.Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

7 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

lynx

theres a form with these fields <form name="cpgform" id="cpgform" method="post" action="update.php"> <input type="text" name="user" size="30" class="textinput" /> <input type="password" name="pass" size="30" class="textinput" /> <input type="hidden" name="method" value="admin" />... (1 Reply)
Discussion started by: vanessafan99
1 Replies

2. Shell Programming and Scripting

Would appreciate a quick second set of eyes on a script (regarding doing things in the background)

What I'm trying to do is leave a tcpdump running all the time on a server, and at the end of every day kill it and start a new one. For some reason my boss doesn't want to set this up as a cron job, so I've come up with the following.: #!/bin/bash PCAPFILE=/tmp/mgmt.$(date... (8 Replies)
Discussion started by: DeCoTwc
8 Replies

3. Shell Programming and Scripting

Broke Perl Script Second pair of eyes NET::FTPSSL

Hi all, Let me first start out by saying I'm a perl newbie and hope somebody can help, for the life of me I can't figure out why my script will not find and download a remote file via FTPSSL. What it's supposed to do is find the latest file named... (4 Replies)
Discussion started by: Styles
4 Replies

4. Programming

Another set of eyes

Original code used fwrite instead of putc. What is expected is that the destination file will be written to. Instead I end up with a zero length file. I'm sure there is something simple I'm missing. tia. #include <stdio.h> #include <stdlib.h> #include <string.h> int main(int argc, char... (6 Replies)
Discussion started by: ramen_noodle
6 Replies

5. What is on Your Mind?

use ears to protect eyes before the computer.

If you listen to the files on the computer with ears, your eyes are protected. Microsoft Text-To-Speech(TTS) voice engine has been installed by default on Windows 2000, XP, Vista, you can find what voice engines have been installed on the computer by following Control Panel->Speech->Speech... (0 Replies)
Discussion started by: tgst
0 Replies

6. Shell Programming and Scripting

Need some help with this script -- extra eyes

I have two issues with this script. 1. I cannot seem to get my counters to count correctly. 2. My function to eject to CAP1 or CAP2 is hung in a loop and doens't exit back to the previous function. I would like to be able to select which cap to eject to . Each cap holds only 40 tapes, so when one... (15 Replies)
Discussion started by: gzs553
15 Replies

7. Shell Programming and Scripting

lynx

lynx Hi there , how to use this command ?? is it t to download files with any type(.zip,.exe,.xxx) ?? and i want example thx ... (1 Reply)
Discussion started by: XPS
1 Replies
Login or Register to Ask a Question
INSSEGMBKRDS(3) 					      RDS PHYSICAL FUNCTIONS						   INSSEGMBKRDS(3)

NAME
inssegmbkrds - adds in RDS instance all the segments of MBK instance ORIGIN
This software belongs to the ALLIANCE CAD SYSTEM developed by the ASIM team at LIP6 laboratory of Universite Pierre et Marie CURIE, in Paris, France. Web : http://asim.lip6.fr/recherche/alliance/ E-mail : alliance-users@asim.lip6.fr SYNOPSYS
#include "rdsnnn.h" rdsrec_list *inssegmbkrds( InstanceMbk, ModelMbk, InstanceRds, Lynx ) phins_list *InstanceMbk; phfig_list *ModelMbk; rdsins_list *InstanceRds; char Lynx; PARAMETER
InstanceMbk The MBK instance which contains the segments to convert. ModelMbk Pointer to the model of the MBK instance. InstanceRds The instance which has to receive converted segments from MBK to RDS format. Lynx Flag used for the segment conversion. If the parameter Lynx is set to 0 then thi s is the normal conversion mode. If the parameter Lynx is set to 1 then the rds structure generated permits to extract equipotentials rectangles. DESCRIPTION
The inssegmbkrds function adds in the RDS instance all segments of the MBK instance converted to RDS format. All newly created segments are chained each other (circulary list) using the USER field of the rdsrec_list structure. RETURN VALUE
Pointer to the head of list of the added rectangles to the RDS instance. ERRORS
"Rds202: rdsalloc error, can't continue !" it's impossible to allocate the memory size desired EXAMPLE
#include "mphnnn.h" #include "mutnnn.h" #include "rdsnnn.h" #include "rfmnnn.h" #include "rtlnnn.h" typedef struct UserStruct { char *STRING; void *USER1; } UserStruct; main() { phfig_list *MbkFigure; phins_list *MbkInstance; phfig_list *MbkModelInstance; rdsfig_list *RdsFigure; rdsins_list *RdsInstance; rdsrec_list *RdsSegmentList; rdsrec_list *ScanSegment; mbkenv(); rdsenv(); loadrdsparam(); /* creates MbkFigure Named "core" */ MbkFigure = addphfig("core"); /* creates RdsFigure named "core_2" */ RdsFigure = addrdsfig("core_2",sizeof(UserStruct)); /* adds Mbk instance "n1_y" to MbkFigure named "core" */ MbkInstance = addphins(MbkFigure,"n1_y","inv_1",NOSYM,4,9); /* Gets Model of instance n1_y */ MbkModelInstance = getphfig("n1_y",'A'); /* creates Rds instance named "block_1" added to RdsFigure */ RdsInstance = addrdsins(RdsFigure,"block","block_1",RDS_NOSYM,8,6); /* adds segments of "inv_1" instance Mbk in Rds instance named "block_1" */ RdsSegmentList = inssegmbkrds ( MbkInstance, MbkModelInstance, RdsInstance,0 ); viewrdsrec ( RdsSegmentList ); for ( ScanSegment = RdsSegmentList->USER ; ScanSegment != RdsSegmentList ; ScanSegment = ScanSegment->USER ) { viewrdsrec ( (rdsrec_list *) ScanSegment ); } } SEE ALSO
librfm, librds, loadrdsparam BUG REPORT
This tool is under development at the ASIM department of the LIP6 laboratory. We need your feedback to improve documentation and tools. ASIM
/LIP6 October 1, 1997 INSSEGMBKRDS(3)