Age | Commit message (Collapse) | Author | Files | Lines |
---|---|---|---|---|
2003-03-30 | use $SUB_VERSION | mickeyl | 1 | -1/+1 |
2003-03-30 | - implement switching monitor mode on hostap | mickeyl | 1 | -12/+29 |
- work around damn buggy hostap drivers needing more space for SIOCGIWRANGE than defined by sizeof(struct iw_range)... | ||||
2003-03-30 | introduce a workaround for conflicting user and kernel headers like | mickeyl | 2 | -6/+8 |
<linux/if.h> and <net/if.h>. I really don't like including kernel headers, but in the case of <linux/wireless.h> there is no other option yet. | ||||
2003-03-30 | $(QTDIR)/lib --> $(OPIEDIR)/lib | mickeyl | 1 | -1/+1 |
2003-03-30 | remove unnecessary usage of and thus the dependency on libstdc++ | mickeyl | 1 | -51/+25 |
2003-03-30 | convert my beloved "not" to "!" to make ancient compilers happy, but not me... | mickeyl | 2 | -77/+77 |
2003-03-30 | convert dynamic_cast<> to using QObject::inherits | mickeyl | 2 | -3/+7 |
2003-03-30 | yet more fixes for gcc 2.9x and for our ancient wireless extensions on the ↵ | mickeyl | 3 | -4/+13 |
Z... *sigh* | ||||
2003-03-30 | one more fix for gcc 2.9x | mickeyl | 1 | -1/+5 |
2003-03-30 | gcc2.9x fix | mickeyl | 1 | -1/+1 |
2003-03-30 | - add classes for 802.11 tagged values | mickeyl | 8 | -80/+481 |
- adjust miniwellenreiter accordingly | ||||
2003-03-28 | skeleton and the start of libopie2, please read README, ROADMAP and STATUS ↵ | mickeyl | 127 | -0/+25255 |
and comment... | ||||
2003-03-21 | g++ compliance fix: default arguments belong into the declaration, but not ↵ | mickeyl | 1 | -1/+4 |
the definition | ||||
2003-03-21 | Fixing small bug: If we search a birthday from today to today, it returned | eilers | 1 | -1/+5 |
every contact .. | ||||
2003-03-21 | Merged speed optimized xml backend for contacts to main. | eilers | 14 | -718/+173 |
Added QDateTime to querybyexample. For instance, it is now possible to get all Birthdays/Anniversaries between two dates. This should be used to show all birthdays in the datebook.. This change is sourcecode backward compatible but you have to upgrade the binaries for today-addressbook. | ||||
2003-02-23 | make mickeyl happy | zecke | 1 | -3/+2 |
thanks for spotting it | ||||
2003-02-22 | Fix saving | zecke | 2 | -2/+7 |
remove the transport medium from the opimmainwindow | ||||
2003-02-22 | fixx off by one in reading | zecke | 2 | -2/+57 |
2003-02-22 | Remove some testing code | zecke | 1 | -3/+1 |
2003-02-22 | Implement saving of events | zecke | 5 | -16/+312 |
Implement the ExceptionList Add Children and parent to OEvent Make ORecur honor exceptions Extend the test app to add and save | ||||
2003-02-21 | Add XML datebookresource | zecke | 8 | -19/+483 |
-clean up todoaccessxml header -implement some more stuff in the oeven tester -extend DefaultFactory to not crash and to use datebook -reading of OEvents is working nicely.. saving will be added tomorrow -fix spelling in ODateBookAcces | ||||
2003-02-21 | -Fix hasRecurrence() | zecke | 6 | -32/+288 |
-Add the Access(Backend) of DateBook | ||||
2003-02-21 | -Remove old Todo classes they're deprecated and today I already using the | zecke | 8 | -20/+830 |
new API -Guard against self assignment in OTodo -Add test apps for OPIM -Opiefied Event classes -Added TimeZone handling and pinning of TimeZones to OEvent -Adjust ORecur and the widget to better timezone behaviour | ||||
2003-02-18 | Fixing categoryNames in opimrecord which was just checking for Todo List | eilers | 4 | -6/+6 |
Now we get the categories in addressbook, too ! | ||||
2003-02-17 | Cardview improved .. | eilers | 1 | -5/+6 |
2003-02-16 | 0000276 Fix for that bug.. or better temp workaround | zecke | 2 | -35/+54 |
A Preferred Number is HOME|VOICE A CellPhone is HOME|VOICE|CELL the type & HOME|VOICE test triggers both and the cell phone number overrides the other entries.. as a temp I check that it's not equal to HOME|VOICE|CELL before setting the number The right and final fix would be to reorder the if statement to make it if else based and the less common thing put to the bottom OTodoAccessVcal fix the date for beaming | ||||
2003-02-15 | clear before reloading | zecke | 1 | -0/+1 |
2003-02-09 | Nothing happened.. Just some cleanup before I will start.. | eilers | 1 | -0/+739 |
2003-01-13 | Fixing crash when businesscard.vcf is missing.. | eilers | 1 | -2/+11 |
2003-01-03 | Reenable debug output | eilers | 1 | -6/+11 |
2003-01-03 | Bugfix for calculating data diffs.. | eilers | 1 | -18/+39 |
2003-01-02 | Improved query by example: Search by date is possible.. First step | eilers | 2 | -34/+113 |
for a today plugin for birthdays.. | ||||
2003-01-02 | Detailview cleanup.. | eilers | 1 | -45/+77 |
2003-01-01 | T ORecordList<T>::operator[]( uint i ) { | simon | 1 | -1/+1 |
- if ( i < 0 || (i+1) > m_ids.count() ) + if ( i >= m_ids.count() ) -> fix warning and simplify :) | ||||
2002-12-27 | Childrens are now shown in detail view.. | eilers | 1 | -0/+5 |
2002-12-10 | get in sync with HEAD again | zecke | 15 | -82/+536 |
-OPimBase was added to be used as a default struct inside OPimResolver and to work with DSOs -TodoListXML backend now uses mmap and madvise to load data -OContact added/changed rtti -OTodo added changed rtti OPimAccess* added stuff necessary for the Resolver and a 'state'/'hint' on how to load data OPimResolver which resolves uid + services to Records, rtti to QCOPChannels loads arbitary Service backends ( will work with DSOs soon ) -OPimMainWindow added some setDocument scripting possibility and internal marshalling and demarshalling of Records -OPimRecord added loadDataFromm and saveDataTo for marshalling purposes much more :) | ||||
2002-12-09 | Added preview for default email and all email | eilers | 1 | -2/+6 |
2002-12-08 | Moved journal-enum from ocontact into i the xml-backend.. | eilers | 2 | -11/+15 |
2002-12-07 | Fixing bug in storing anniversary.. | eilers | 2 | -13/+28 |
2002-11-30 | More infrastructure | zecke | 31 | -98/+1207 |
ORecur has now the nextOccurence function exceptions We've now Notifers like Alarms and DatebookEntries we may add to execute applications... AppName replaced with service cause it is a service Add rtti to OPimRecord as a static function This is used inside the BackEnd classes to static_cast... added removeAllCompleted to the todobackends... add a common Opie PIM mainwindow which takes care of some simple scripting enchangements.. much more | ||||
2002-11-18 | Back to main tree.. Waiting for feature freeze | eilers | 2 | -627/+40 |
2002-11-15 | Make OTodo compile | zecke | 5 | -1/+106 |
add the MaintainerMode to OTodo | ||||
2002-11-15 | Add the implementation for the XRef Manager | zecke | 8 | -101/+184 |
Add it to libopie.pro Adjust OPimRecord to use the new manager The backends do not support xref yet | ||||
2002-11-15 | Add proposal header for Cross Referencing.. | zecke | 4 | -0/+114 |
look at them and comment | ||||
2002-11-15 | API REVIEW added | zecke | 1 | -0/+26 |
Simon if you read that feel free to do an API REVIEW on libopie but leave out OFileSelector for now... Stefan: added an explanation for you | ||||
2002-11-14 | Sorting will now work if fullname is identical on some entries | eilers | 1 | -2/+5 |
2002-11-13 | Small Bug in sorted fixed | eilers | 1 | -3/+6 |
2002-11-13 | Added sorted for Contacts.. | eilers | 6 | -0/+69 |
2002-11-11 | no default arguments in implementation | kergoth | 1 | -1/+4 |
2002-11-10 | Bugfixes.. | eilers | 2 | -5/+18 |