summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2007-10-10r21206: - a couple more nttrans places were a memcpy() should be usedAndrew Tridgell5-18/+13
- changed the setup array in nttrans to be a uint8 array, instead of a uint16 array. This makes it clearer that it is the job of the caller to do any byte swapping within that data (This used to be commit fa3c9b29ae1c7c6a9bc97484cc386aeec9b5d266)
2007-10-10r21205: Fix warning.Jelmer Vernooij1-1/+1
Trivial patch from "Lunar Child <luch@etersoft.ru>" (This used to be commit 1b75a9ff2d7f91f13fbdfd136b40eca14867bf6f)
2007-10-10r21187: - Convert LdbBrowse to use TreeVirtual. This adds the following ↵Derrell Lipman2-82/+98
capabilities that Simo asked for: * One can now open a branch without selecting the row. The previously selected row (if any) remains selected. * Selecting a row does not automatically open the branch. That can be done by either clicking on the open/close button or pressing Enter while that row is selected. * The entire tree can now be disabled. In LdbBrowse, the fsm is configured to disable the tree during each remote procedure call, so that a pile of requests don't get queued during RPC. The most obvious flaw with TreeVirtual right now, is that the tree does not properly resize (or even initially size itself) to its container. Fixing that is my next task. It's actually a generic Table issue that people have been asking for for ages: having columns resize themselves automagically. (This used to be commit 23a8b777638f7f40d95e125de97d077ae964e796)
2007-10-10r21185: Fix PNG images in TreeVirtual, for when using IEDerrell Lipman1-2/+8
(This used to be commit 1dde7f477b1e887fab7a24845673510eb2c1c084)
2007-10-10r21183: Commit the big/little endian fix for nttrans setup[] handling.Volker Lendecke2-8/+5
Please check! For code symmetry reasons, trans2 might also see this fix, but this is left to the interested reader :-) Volker (This used to be commit f2d364ebe69fc5d624e456cc7d941071811a5567)
2007-10-10r21179: Anything more complex than this causes the keytab never to be updated...Andrew Bartlett1-1/+2
Andrew Bartlett (This used to be commit c3977b4bae1e1b5e4ff4a64c7146534536685e91)
2007-10-10r21178: Adapt RPC-SAMBA3-SHARESEC to new smbd behaviorVolker Lendecke1-3/+3
(This used to be commit 38b688fd15a9103e5ef5c86e01b594169d6b6b9c)
2007-10-10r21175: Fix the kerberos keytab update code to handle deletes.Andrew Bartlett2-31/+2
Fix the join code to know that the ldb layer handles the keytab update. Andrew Bartlett (This used to be commit d3fbc089f4161ae71b21077d50130fdabd8b2d77)
2007-10-10r21174: many thanks to Paul Wayper for pointing out that C99 requires aAndrew Tridgell5-11/+18
matching va_end() for each va_copy(). This doesn't matter for most architectures, but there could be some obscure ones where it does matter. some of this should be ported to Samba3 (This used to be commit 21eb316473486cb6b73bb3ff9c5f3a44ecd57e4a)
2007-10-10r21173: - keep the ctdb queue when reconnecting (this will need to be moreAndrew Tridgell1-9/+2
complex once we have code for changing the number of nodes) - fixed a ctdb/tcp bug in the handling of multiple packets waiting on a socket (This used to be commit faf9a1146cb5f33228a11e01b66cb3cbe18bd05d)
2007-10-10r21172: fixed a commentAndrew Tridgell1-1/+2
(This used to be commit 2d6e082e813e18dcd43bc8d9a8f445f77e0a8452)
2007-10-10r21171: fixed a bug related to recursive event handling.Andrew Tridgell4-11/+7
If this happens: - two sockets are readable, and select/epoll/aio returns both of them - read event on socket1 is called - inside that read event an event_loop_once is called, this returns that socket2 is readable - read event on socket2 is called - event_loop_once returns - top level event handler then calls read event on socket2 (as it still has that listed as readable) - read handler for socket2 returns zero byte read, which is interpreted as end of file - socket is incorrectly closed this happened with ctdb, but it could happen anywhere (just rarely). The fix is trivial - ensure we break out of the event loop when we have been called recursively. (This used to be commit e042002bb5ee8974220e1ade56b64389571f75a6)
2007-10-10r21170: Latest qooxdoo required a minor server changeDerrell Lipman1-1/+1
(This used to be commit a4a394c9bb42ed1883c95c10f9c24987d4ab4294)
2007-10-10r21169: - Step 3: Upgrade qooxdoo release code with latest qooxdoo svn's ↵Derrell Lipman15-498/+1303
Table and TreeVirtual. The TreeVirtual that was in the release was a very early pre-release, and had a number of problems and missing features. This brings it up-to-date and provides what seems to be a pretty well-working and highly useful widget. (This used to be commit 194880f1ffde7f01997c120136854acd145189e9)
2007-10-10r21168: - Step 2: Update swat for the latest qooxdoo version. The build now ↵Derrell Lipman16-247/+107
copies only those icons which are actually used. This means that instead of a few thousand files getting copied to /usr/local/samba/share/webapps (or wherever), the number is less than an order of magnitude fewer. This should make Andrew happier yet. (This used to be commit 754c4fe01f91ecdbf156c757804118ef301bffe3)
2007-10-10r21167: - Upgrade to latest released qooxdoo. This is step 1 of the upgrade ↵Derrell Lipman1690-0/+179278
process, which involves adding the latest SDK. This new version has not 2, but 4 icon themes. In order to quiet Andrew B. who thinks that 9000+ files in a gui api is too many (come on, disk space is free these days :-), I have removed 3 of the 4 icon themes, leaving only the default, Nuvola. That lowers the file count by 1/3. I'm sure Andrew still isn't happy, but I hope he's a bit happier... Step 2 will make him happier yet. (This used to be commit d161c1382c36238105b85d0499d5a1011f580f52)
2007-10-10r21142: fix compiler warningsStefan Metzmacher1-0/+1
metze (This used to be commit 1f8a037ac4f592d29f7d66e1f924efe1c5d8c2b0)
2007-10-10r21141: Attempt to fix the buildVolker Lendecke1-1/+1
(This used to be commit 3f41a4b014a47b3c751066f5d1bef7f76f4be831)
2007-10-10r21140: enable the pending lock notify code in the ctdb backend so that timedAndrew Tridgell1-36/+80
locks retry immediately when another blocking lock is removed. (This used to be commit 169920a5341392e84d5b5fb5f39c2b9d5243bb3b)
2007-10-10r21139: make the RAW-MUX test fail if the locking subsystem doesn't triggerAndrew Tridgell1-0/+8
early byte range lock retries (ie. PENDING locks in brlock) (This used to be commit 09237e3acf524f7e772acce2e652ef30b8ba4d65)
2007-10-10r21137: If you change the name of a constant in one file, it helps to ensure ↵Derrell Lipman1-15/+15
that the use of the constant in other files is corrected as well. (This used to be commit 1773d430176bc3cab37431c6a9991bc5c9c66dcd)
2007-10-10r21136: First attempt at implementing add/modify rpc calls.Simo Sorce3-6/+83
The code does not work, but Derrell asked me to commit to analyze the problem. Simo. (This used to be commit 433591c430891fd5f0859fe3b685287b4fb166e5)
2007-10-10r21135: Instead of having hooks to update keytabs as an explicit thing, updateAndrew Bartlett8-115/+242
them as a hook on ldb modify, via a module. This should allow the secrets.ldb to be edited by the admin, and to have things update in the on-disk keytab just as an in-memory keytab would. This isn't really a dsdb plugin, but I don't have any other good ideas about where to put it. Andrew Bartlett (This used to be commit 6ce557a1aff4754d2622be8f1c6695d9ee788d54)
2007-10-10r21134: Attempt to quieten the build farm for Samba3Volker Lendecke1-0/+4
(This used to be commit 966c30ca591c410a4a229396c7919fe8f98bd066)
2007-10-10r21126: Enhance the modal window so that it gets focus and just presing ↵Simo Sorce1-42/+57
enter works. Still I don't see the cursor :( Swap -/+ buttons, you risk to delete an attribute by mistake when instead you want to add a new one, and you might even not notice it. Simo. (This used to be commit afa61d59714686ceef1e33c46e8b504d5030eb10)
2007-10-10r21125: Tridge, please check this closely if this relaxed notify test isVolker Lendecke1-21/+55
acceptable. In Samba3 with inotify we have the problem that the MODIFIED action is sent second. I think this could also happen in Samba4, depending on the order when the different sockets (unix domain dgram / inotify) are looked at by the events system. This patch accepts the NEW/OLD/MODIFIED entries in any order. Comments welcome! Volker (This used to be commit 72a7771b757c3aca637eb632abebab60bdd2da9f)
2007-10-10r21124: Samba3 does not support create times correctly.Volker Lendecke1-7/+15
Volker (This used to be commit c9886ce63b8cc085e0032ad2f6193c547336856d)
2007-10-10r21118: Looks a bit better ...Simo Sorce1-13/+26
(This used to be commit e2d1f6d291602d56011c7099485ecd1a5767fca5)
2007-10-10r21104: Rename struct watch_context to struct inotify_watch_contextVolker Lendecke1-8/+9
(This used to be commit 3548b1f683a7f5ccc6563de7e099d3a5a86ed39c)
2007-10-10r21103: This seems to do the 'right thing' in applying the correct accessAndrew Bartlett1-0/+2
control to the SWAT ldb browser. This should show up as the authenticated user, rather than anonymous now. Andrew Bartlet (This used to be commit 48a5105f6bb0afcd22feb9448aba3006e6646848)
2007-10-10r21095: Expose all naming contextsSimo Sorce2-23/+53
(This used to be commit d25e828dbe479347894b197c94199c5540ac34e5)
2007-10-10r21086: add some notesStefan Metzmacher1-0/+7
metze (This used to be commit dfbdb958419a041c1aff039810f7e9cb4320ec2c)
2007-10-10r21085: implement something like the parameterStefan Metzmacher1-0/+105
HKEY_LOCAL_MACHINE\System\CurrentControlset\Services\WINS\Parameters\Randomize1CList nbtd:wins_randomize1Clist=yes nbtd:wins_randomize1Clist_mask=255.255.0.0 metze (This used to be commit eee635ab4d7ae8ffd8962b3d4518a7e6b5a90f97)
2007-10-10r21078: TP4 is just releasedStefan Metzmacher1-1/+1
metze (This used to be commit 1c942b7d8ffb97b70f17fd901033f54771274b96)
2007-10-10r21075: Generate parameters in structs for the server side Samba 3 code. The ↵Jelmer Vernooij1-6/+2
current code in Samba 3 is already generated using this pidl patch. (This used to be commit 30a06273d28fb59c6f20154f97c67f4c0a63dee9)
2007-10-10r21072: fix compiler warningStefan Metzmacher1-1/+1
metze (This used to be commit e788709835fa13b512fbf38951c9d0ca9bc3df18)
2007-10-10r21071: Move some of the key path variables into the mk-keyblobs.sh script.Andrew Bartlett2-14/+3
Andrew Bartlett (This used to be commit 1c466c6d6f02bf76f7f68e7dcd3d9a4c2a63179a)
2007-10-10r21069: Try to split up the mktestsetup.sh script into parts to deal with eachAndrew Bartlett5-337/+356
LDAP implementation, and another to hold the key blobs. Also fix the OpenLDAP test. Andrew Bartlett (This used to be commit ec511c592bbb7df513fe6f62e06e1fa984431550)
2007-10-10r21068: Code to configure, start and stop Fedora DS.Andrew Bartlett2-10/+41
We can't actually use it, as we are stuck inside our socket_wrapper network, and can't talk to it. Andrew Bartlett (This used to be commit bd564da6b9b45c438ef81b42dc156116ed81cbe7)
2007-10-10r21066: Fix the build (uninitialised variable).Jelmer Vernooij2-0/+15
(This used to be commit 54b63787606f392e094fe28c2536999c34f76f44)
2007-10-10r21065: The framework is complete (yes the gui layout still sucks but that willSimo Sorce2-4/+88
be handled later) next will be to build out the code to actually commit changes (This used to be commit f0ddc503820aeec3557fe8d80b31c971fae7cdc1)
2007-10-10r21059: add an option to implement what windows wins server confgure viaStefan Metzmacher1-1/+7
HKEY_LOCAL_MACHINE\System\CurrentControlset\Services\WINS\Parameters\Prepend1BTo1CQueries nbtd:wins_prepend1Bto1Cqueries=no will turn it off metze (This used to be commit 5362eede6b097c3a62d5c4d59151f8e26d89f1c0)
2007-10-10r21055: Fix executable bit.Jelmer Vernooij7-91/+5
(This used to be commit 7512270ffae4e72d70f6ca347f09708f1bf915ad)
2007-10-10r21048: Start coding add/modify widgets.Simo Sorce2-15/+313
Not functional yet. (This used to be commit 9cd488cf576929a51ec993fc61a215081fcedc29)
2007-10-10r21045: every call in brlock_ctdb ended up neededing a 32 bit status code, soAndrew Tridgell4-91/+33
rather than allocating a reply_data field each time, I have changed the ctdb_call API to include a status code. That greatly simplifies use of the API. (This used to be commit 70c3acaf8876fa5712e2135df234fe3bc1e32e77)
2007-10-10r21044: - merge struct ctdb_call API changes from bzr treeAndrew Tridgell3-132/+122
- convert brlock code to new API (This used to be commit cf317480cb715dbaab87c06f824a1db14b09b298)
2007-10-10r21043: Work towards allowing Fedora DS to backend Samba4 in 'make test'.Andrew Bartlett1-0/+58
Andrew Bartlett (This used to be commit 92cea0b79011e9b86ab7e782c83ad5964a5925bd)
2007-10-10r21042: Fix typoVolker Lendecke1-1/+1
(This used to be commit eb83537a3b4889353cdc9bb471315a77e1f87c90)
2007-10-10r21041: Change some "private" to "private_data", and change one (void **) ↵Volker Lendecke3-20/+27
function parameter to (void *). void** in function parameters leads to type-punned warnings. Volker (This used to be commit 57979d89c53b4363e4b447205703579df6756653)
2007-10-10r21040: Remove subunit runner (now written in perl in my perlselftest branch)Jelmer Vernooij7-313/+1
(This used to be commit afe0d170b08deb712b91ee73cc00a444e989b480)