Routino SVN Repository Browser

Check out the latest version of Routino: svn co http://routino.org/svn/trunk routino

ViewVC logotype

Log of /branches/libroutino/src

View Directory Listing Directory Listing


Sticky Revision:


Revision 1706 - Directory Listing
Modified Fri Jun 12 17:42:25 2015 UTC (9 years, 9 months ago) by amb
Create a Translation structure to hold the translated strings and have
one global variable instead of 30.  Add a function to free the memory
in the Translation structure.


Revision 1702 - Directory Listing
Modified Wed Jun 10 18:33:07 2015 UTC (9 years, 9 months ago) by amb
The translations are required to be loaded for the text output formats.


Revision 1701 - Directory Listing
Modified Wed Jun 10 18:31:50 2015 UTC (9 years, 9 months ago) by amb
The ParseXML_Encode_Safe_XML() function now returns a pointer to the
same re-allocated string each time rather than allocating a new string
each time that it is called.


Revision 1700 - Directory Listing
Modified Tue Jun 9 18:10:45 2015 UTC (9 years, 9 months ago) by amb
Create a branch for a version that can be compiled into a library.

Revision 1699 - Directory Listing
Modified Tue Jun 9 18:05:06 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk/src
Merge the MS-Windows branch back into the trunk.
Code changes and documentation for Cygwin and MinGW compilers.


Revision 1695 - Directory Listing
Modified Fri May 29 16:49:00 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk/src
Ensure that allocated strings are long enough even if the %p format is
extravagant in the number of characters it uses.


Revision 1690 - Directory Listing
Modified Thu May 28 18:18:53 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk/src
Update Makefiles so that 'make clean' goes back to the source code in
the release tar files and 'make distclean' goes back to the source
code in subversion (the difference mainly being web page icons and
web page translations).


Revision 1680 - Directory Listing
Modified Tue May 26 17:28:56 2015 UTC (9 years, 9 months ago) by amb
Original Path: trunk/src
Merge branch 'MSVC' back into the trunk.


Revision 1678 - Directory Listing
Modified Thu May 21 18:37:15 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Fix bug with 64-bit version failing 'make test'.


Revision 1677 - Directory Listing
Modified Wed May 20 18:36:31 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Change a static variable to a const to clarify it usage.


Revision 1661 - Directory Listing
Modified Mon May 18 18:01:10 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Fix use-after-free error found by valgrind.


Revision 1652 - Directory Listing
Modified Thu May 14 17:25:25 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Replace all arithmetic involving 'void*' pointers with 'char*' since
it isn't strictly valid although it is accepted by gcc.


Revision 1651 - Directory Listing
Modified Wed May 13 19:02:08 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Remove a gcc warning about overflow in implicit constant conversion
(by making it an explicit type cast).


Revision 1650 - Directory Listing
Modified Wed May 13 17:58:30 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Use "%zu" to print 'size_t' type values and use Pindex_t to print
'index_t' type values.


Revision 1649 - Directory Listing
Modified Wed May 13 16:45:26 2015 UTC (9 years, 10 months ago) by amb
Original Path: trunk/src
Remove some pthread related code that was being used even if compiled
without pthreads.


Revision 1641 - Directory Listing
Modified Fri Apr 10 18:31:15 2015 UTC (9 years, 11 months ago) by amb
Original Path: trunk/src
Change built-in default HTML translation strings so that they work
with the web page if they have to be used.


Revision 1638 - Directory Listing
Modified Mon Mar 30 18:51:52 2015 UTC (9 years, 11 months ago) by amb
Original Path: trunk/src
Fix bug with indenting of debug output in FindMiddleRoute() function.


Revision 1636 - Directory Listing
Modified Sat Mar 28 14:28:30 2015 UTC (9 years, 11 months ago) by amb
Original Path: trunk/src
More verbose, consistent, complete and descriptive debugging of routes
found.


Revision 1634 - Directory Listing
Modified Sat Mar 28 14:23:23 2015 UTC (9 years, 11 months ago) by amb
Original Path: trunk/src
The new FindStartRoutes() function does not need to be so complicated.


Revision 1632 - Directory Listing
Modified Sat Mar 28 11:52:55 2015 UTC (9 years, 11 months ago) by amb
Original Path: trunk/src
Remove the ExtendStartRoutes() function by merging its functionality
with the FindStartRoutes() function since they were almost identical
anyway.


Revision 1627 - Directory Listing
Modified Sat Mar 21 19:23:20 2015 UTC (10 years ago) by amb
Original Path: trunk/src
Make sure that all complete routes have finish_node and last_segment
filled in.


Revision 1626 - Directory Listing
Modified Sat Mar 21 19:20:21 2015 UTC (10 years ago) by amb
Original Path: trunk/src
Summary: Bug fix and clarification for previous change.


Revision 1625 - Directory Listing
Modified Sat Mar 21 17:10:25 2015 UTC (10 years ago) by amb
Original Path: trunk/src
Don't merge the end of the route with the middle part of the route
before combining with the beginning of the route - combine beginning,
middle and end all in one function.


Revision 1619 - Directory Listing
Modified Thu Dec 4 17:49:45 2014 UTC (10 years, 3 months ago) by amb
Original Path: trunk/src
Increase MAX_SEG_PER_NODE to avoid further problems.


Revision 1618 - Directory Listing
Added Sat Nov 29 10:50:11 2014 UTC (10 years, 3 months ago) by amb
Original Path: trunk/src
Include typesx.h to get the definition of MAX_SEG_PER_NODE rather than having
another one.