1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-28 17:47:29 +03:00

14745 Commits

Author SHA1 Message Date
Gerald Carter
9365c619d6 abstract UUID parsing code to an individual function; patch from Anthony -
Tim Potter
351d16956d Moving towards better i18n support in SWAT. This commit contains a
bunch of updates to bug 413 from Monyo:

1) pick up proper strings to call msg strings for example to add
  strings in wizard menu in web/swat.c, web/statuspage.c and
  param/loadparm.c.

2) define N_() macro in include/intl.h to pick up some strings
  in param/loadparm.c

3) quote all name and value tag with '"'
  For example in swat.c:720 the "Edit Parameter Values" string is
  displayd only as "Edit" because value tag is not quoted like:
  value=Edit Parameter Values
  These tags should be quoted though it sometimes works well
  without quotation.

4) modify the msg strings not to contain HTML tags or other
  non-message strings. For example
  dprintf(_("test\n")); is modified to dprintf("%s\n", _("test"));
-
Tim Potter
6aada3bd3e Explicitly initialise the value of AR for vendor makes that don't do
this (HPUX 11).  Currently it's initialised to 'ar' but this may have
to be changed if any systems pop up that have archivers that aren't
named 'ar'. Closes bug #552.
-
Tim Potter
803ae45172 Portability fix from Joachim Schmitz. Closes bug #546. -
Gerald Carter
dc6d14c2bd fixed for /sbin/mount.smbfs link when using $DESTDIR; bug 525 -
Jeremy Allison
93669f329e Portability fixes from schmitz@hp.com (Joachim Schmitz). Bug #549.
Jeremy.
-
Jeremy Allison
bbc7b189b9 Portability fix from schmitz@hp.com (Joachim Schmitz). Bug #547.
Jeremy.
-
Jeremy Allison
6677eba28a Portability fix from schmitz@hp.com (Joachim Schmitz) for bug #548.
Jeremy.
-
Jeremy Allison
f00af98f37 Correct fix for excel read-only bug. Add panic for logic error in developer mode.
Jeremy.
-
Volker Lendecke
227882d6f7 Make pdb_ldap.c compile with SUN iPlanet headers. Whether this works will be
tested soon, but this fix is somewhat obvious.

Volker
-
Jeremy Allison
9ad9e0dfaf Fix for not opening Excel 2000 files that are read-only. Needs tidying
up but works for now.
Jeremy.
-
Andrew Bartlett
641652cad9 Remove duplicate function (now in rpc_parse/parse_prs.c) and fix a RPC debug
(I renamed the element of the structure).

Andrew Bartlett
-
Gerald Carter
3802f5895e commit sign only patch from Andrew; bug 167; tested using 2k & XP clientspreviously joined to the Samba domain -
Jeremy Allison
6c38a79be7 Fixed silly typo checking for signal_handler not signal.
Jeremy.
-
Jeremy Allison
7d79a55d9a Allow ^C to interrupt smbpasswd if using our getpass.
Jeremy.
-
Gerald Carter
dbf7fc4feb save and restore CFLAGS before/after AC_PROG_CC; this macro seems to overwrite the CFLAGS variable -
Gerald Carter
6b16d9e0ad make sure libnss_winbind.so.2 is included in the RedHAT RPMS -
Gerald Carter
c00e58c934 remove duplicate smbspool link on SWAT's front page; bug 541 -
Gerald Carter
9df3f53e6a wrap internals of sys_setgroups() so the sys_XX() call can be done unconditionally; bug 550 -
Gerald Carter
cd06472e42 mark 'mangled map' as depcreated and remove 'mangled stack' -
Andrew Tridgell
9635a28181 when we don't have a working iconv library we must default to using only builtin charsets. Defaulting to CP850 when we have just determined that it doesn't work just guarantees that Samba won't work at all (in fact it just seg faults at startup). This fixes Samba on AIX, and I expect on a bunch of other platforms. -
Jeremy Allison
c11a7e5846 Take care of condition where DOS and NT error codes must differ. Found by
DOS program test by Amir Hardon <hardon@actcom.co.il>.
Jeremy.
-
Tim Potter
0281c5b764 Apply some NULL pointer paranoia to previous wins hook fix. -
Tim Potter
92b37b3ef0 Fix broken wins hook functionality. A i18n fixe caused the name type
to be appended to the netbios name between angle brackets.  This interfered
the 'sh -c' used to implement smbrun().  Closes bug #528.
-
Jelmer Vernooij
2690c185f0 Testparm fixes:
- Also check global 'hosts allow'/'hosts deny' when checking access to share
 - Warn when user specifies 2 arguments instead of 1 or 3.

Patch from Jay Fenlason <fenlason@redhat.com>
-
Volker Lendecke
47ad635d5d Minor typos. No, not merged to all branches... -
Tim Potter
afe8c708f1 Change AC_CHECK_LIB_EXT to prepend libraries instead of append. This
is the same way AC_CHECK_LIB works.  Fix for bug 508.

This may have to go a few rounds on the build farm to ensure it works
everywhere.
-
Andrew Bartlett
227c7daf36 Start to put some real 'meat' into the ntlm_auth docs.
Andrew Bartlett
-
Jeremy Allison
238bb74c16 iconv isn't const safe. Neither should smb_iconv be.
Jeremy.
-
Jeremy Allison
7d7096fc3a Ensure %S gets expanded in read/write lists.
Jeremy.
-
Jeremy Allison
c7f4e56ad5 Fix for valid users = %S in homes share.
Jeremy.
-
Gerald Carter
5840cbe5f6 don't write to static pointers; patch from Anthony -
Jelmer Vernooij
ca5371803c More updates to better conform to the DTD -
Alexander Bokovoy
c49205bee4 Merge latest fixes from the release tree for WHATSNEW.txt -
Jeremy Allison
e4c955c98e Fix to parse the level-2 strings. From Anthony Liguori aliguor@us.ibm.com.
Jeremy.
-
Tim Potter
0192f41003 More bug #413. Fix bad html table row termination in SWAT wizard code found by
Monyo.  Also remove debugging d_printf() which snuck in the last commit.
-
Tim Potter
f150e3ebd4 Removed japanese swat icons at the request of Monyo. More work on
bug #413.
-
Tim Potter
02725d4a3c Change title of SWAT globals page from 'Global Variables' to 'Global
Parameters' to be more consistent with the other pages.
-
Tim Potter
8ce279e471 Allow d_printf() to handle strings with escaped quotation marks since the
msg file includes the escape character.

Fixes bug #489.
-
Jelmer Vernooij
1e098b5b17 Follow DTD more strictly -
Jeremy Allison
f82c273a42 Fix for #480. Change the interface for init_unistr2 to not take a length
but a flags field. We were assuming that 2*strlen(mb_string) == length of ucs2-le string.
This is not the case. Count it after conversion.
Jeremy.
-
Jelmer Vernooij
228c03ce66 Patch from Metze to document events interface -
Jelmer Vernooij
72434db17a Add some updates necessary to build the 3.0 docs (forgot them last night). -
Gerald Carter
13636235af last minute updates from Buchan -
Gerald Carter
12a49e0964 make sure to install the *msg files for SWAT -
Gerald Carter
6988eb854e syncing whatsnew from release branch -
Gerald Carter
9f44a3d29b updating roadmap in docs -
Volker Lendecke
a6c54cbe20 Don't #ifdef an AFS option with WITH_ADS. Thanks, jerry!
Volker
-
Eloy Paris
5db8627334 Debian updates in preparation for Samba 3.0.0. -
Tim Potter
c3e5cbd4f0 Install message translation files for swat. -