Wine-commits
Threads by month
- ----- 2025 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2010 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2009 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2008 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2007 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2006 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2005 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2004 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2003 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2002 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2001 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
May 2009
- 4 participants
- 793 discussions
14 May '09
Module: wine
Branch: master
Commit: 0f80aa8816c12ef8ff2fd8a18850a4be56a83347
URL: http://source.winehq.org/git/wine.git/?a=commit;h=0f80aa8816c12ef8ff2fd8a18…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Wed May 13 14:30:00 2009 -0500
gdiplus: Add a trace to GdipMeasureString.
---
dlls/gdiplus/graphics.c | 4 ++++
1 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/dlls/gdiplus/graphics.c b/dlls/gdiplus/graphics.c
index 623af7f..5e5883f 100644
--- a/dlls/gdiplus/graphics.c
+++ b/dlls/gdiplus/graphics.c
@@ -2935,6 +2935,10 @@ GpStatus WINGDIPAPI GdipMeasureString(GpGraphics *graphics,
nheight;
SIZE size;
+ TRACE("(%p, %s, %i, %p, %s, %p, %p, %p, %p)\n", graphics,
+ debugstr_wn(string, length), length, font, debugstr_rectf(rect), format,
+ bounds, codepointsfitted, linesfilled);
+
if(!graphics || !string || !font || !rect)
return InvalidParameter;
1
0
Module: wine
Branch: master
Commit: abae88a825fac79a5210411966828dc94c78c063
URL: http://source.winehq.org/git/wine.git/?a=commit;h=abae88a825fac79a521041196…
Author: Vincent Povirk <vincent(a)codeweavers.com>
Date: Wed May 13 15:30:24 2009 -0500
gdiplus: Add string format traces.
---
dlls/gdiplus/stringformat.c | 16 ++++++++++++++++
1 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/dlls/gdiplus/stringformat.c b/dlls/gdiplus/stringformat.c
index 21053b7..bfe7d34 100644
--- a/dlls/gdiplus/stringformat.c
+++ b/dlls/gdiplus/stringformat.c
@@ -35,6 +35,8 @@ WINE_DEFAULT_DEBUG_CHANNEL(gdiplus);
GpStatus WINGDIPAPI GdipCreateStringFormat(INT attr, LANGID lang,
GpStringFormat **format)
{
+ TRACE("(%i, %x, %p)\n", attr, lang, format);
+
if(!format)
return InvalidParameter;
@@ -189,6 +191,8 @@ GpStatus WINGDIPAPI GdipGetStringFormatTrimming(GpStringFormat *format,
GpStatus WINGDIPAPI GdipSetStringFormatAlign(GpStringFormat *format,
StringAlignment align)
{
+ TRACE("(%p, %i)\n", format, align);
+
if(!format)
return InvalidParameter;
@@ -201,6 +205,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatAlign(GpStringFormat *format,
GpStatus WINGDIPAPI GdipSetStringFormatDigitSubstitution(GpStringFormat *format,
LANGID language, StringDigitSubstitute substitute)
{
+ TRACE("(%p, %x, %i)\n", format, language, substitute);
+
if(!format)
return InvalidParameter;
@@ -213,6 +219,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatDigitSubstitution(GpStringFormat *format,
GpStatus WINGDIPAPI GdipSetStringFormatHotkeyPrefix(GpStringFormat *format,
INT hkpx)
{
+ TRACE("(%p, %i)\n", format, hkpx);
+
if(!format || hkpx < 0 || hkpx > 2)
return InvalidParameter;
@@ -224,6 +232,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatHotkeyPrefix(GpStringFormat *format,
GpStatus WINGDIPAPI GdipSetStringFormatLineAlign(GpStringFormat *format,
StringAlignment align)
{
+ TRACE("(%p, %i)\n", format, align);
+
if(!format)
return InvalidParameter;
@@ -246,6 +256,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatMeasurableCharacterRanges(GpStringFormat*
GpStatus WINGDIPAPI GdipSetStringFormatTabStops(GpStringFormat *format, REAL firsttab,
INT count, GDIPCONST REAL *tabs)
{
+ TRACE("(%p, %0.2f, %i, %p)\n", format, firsttab, count, tabs);
+
if(!format || !tabs)
return InvalidParameter;
@@ -276,6 +288,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatTabStops(GpStringFormat *format, REAL fir
GpStatus WINGDIPAPI GdipSetStringFormatTrimming(GpStringFormat *format,
StringTrimming trimming)
{
+ TRACE("(%p, %i)\n", format, trimming);
+
if(!format)
return InvalidParameter;
@@ -286,6 +300,8 @@ GpStatus WINGDIPAPI GdipSetStringFormatTrimming(GpStringFormat *format,
GpStatus WINGDIPAPI GdipSetStringFormatFlags(GpStringFormat *format, INT flags)
{
+ TRACE("(%p, %x)\n", format, flags);
+
if(!format)
return InvalidParameter;
1
0
14 May '09
Module: wine
Branch: master
Commit: daab4e27213c858ebe3eb86f4f403e83692d2a40
URL: http://source.winehq.org/git/wine.git/?a=commit;h=daab4e27213c858ebe3eb86f4…
Author: Aric Stewart <aric(a)codeweavers.com>
Date: Wed May 13 14:45:44 2009 -0500
msctf: Map out currently missing interfaces.
---
dlls/msctf/context.c | 8 ++++++++
dlls/msctf/inputprocessor.c | 3 +++
dlls/msctf/threadmgr.c | 5 +++++
3 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/dlls/msctf/context.c b/dlls/msctf/context.c
index 38d8ad6..dff4fd8 100644
--- a/dlls/msctf/context.c
+++ b/dlls/msctf/context.c
@@ -58,6 +58,13 @@ typedef struct tagContextSink {
typedef struct tagContext {
const ITfContextVtbl *ContextVtbl;
const ITfSourceVtbl *SourceVtbl;
+ /* const ITfContextCompositionVtbl *ContextCompositionVtbl; */
+ /* const ITfContextOwnerCompositionServicesVtbl *ContextOwnerCompositionServicesVtbl; */
+ /* const ITfContextOwnerServicesVtbl *ContextOwnerServicesVtbl; */
+ /* const ITfInsertAtSelectionVtbl *InsertAtSelectionVtbl; */
+ /* const ITfMouseTrackerVtbl *MouseTrackerVtbl; */
+ /* const ITfQueryEmbeddedVtbl *QueryEmbeddedVtbl; */
+ /* const ITfSourceSingleVtbl *SourceSingleVtbl; */
LONG refCount;
TfClientId tidOwner;
@@ -79,6 +86,7 @@ typedef struct tagContext {
typedef struct tagTextStoreACPSink {
const ITextStoreACPSinkVtbl *TextStoreACPSinkVtbl;
+ /* const ITextStoreACPServicesVtbl *TextStoreACPServicesVtbl; */
LONG refCount;
Context *pContext;
diff --git a/dlls/msctf/inputprocessor.c b/dlls/msctf/inputprocessor.c
index 8d36cd5..90daa2f 100644
--- a/dlls/msctf/inputprocessor.c
+++ b/dlls/msctf/inputprocessor.c
@@ -59,6 +59,9 @@ typedef struct tagInputProcessorProfilesSink {
typedef struct tagInputProcessorProfiles {
const ITfInputProcessorProfilesVtbl *InputProcessorProfilesVtbl;
const ITfSourceVtbl *SourceVtbl;
+ /* const ITfInputProcessorProfileMgrVtbl *InputProcessorProfileMgrVtbl; */
+ /* const ITfInputProcessorProfilesExVtbl *InputProcessorProfilesExVtbl; */
+ /* const ITfInputProcessorProfileSubstituteLayoutVtbl *InputProcessorProfileSubstituteLayoutVtbl; */
LONG refCount;
LANGID currentLanguage;
diff --git a/dlls/msctf/threadmgr.c b/dlls/msctf/threadmgr.c
index 277923e..c91e536 100644
--- a/dlls/msctf/threadmgr.c
+++ b/dlls/msctf/threadmgr.c
@@ -71,6 +71,11 @@ typedef struct tagACLMulti {
const ITfKeystrokeMgrVtbl *KeystrokeMgrVtbl;
const ITfMessagePumpVtbl *MessagePumpVtbl;
const ITfClientIdVtbl *ClientIdVtbl;
+ /* const ITfThreadMgrExVtbl *ThreadMgrExVtbl; */
+ /* const ITfConfigureSystemKeystrokeFeedVtbl *ConfigureSystemKeystrokeFeedVtbl; */
+ /* const ITfLangBarItemMgrVtbl *LangBarItemMgrVtbl; */
+ /* const ITfUIElementMgrVtbl *UIElementMgrVtbl; */
+ /* const ITfSourceSingleVtbl *SourceSingleVtbl; */
LONG refCount;
const ITfThreadMgrEventSinkVtbl *ThreadMgrEventSinkVtbl; /* internal */
1
0
14 May '09
Module: wine
Branch: master
Commit: 299ce6c18eb7dfaf8f339658b2f5e606936fb8bc
URL: http://source.winehq.org/git/wine.git/?a=commit;h=299ce6c18eb7dfaf8f339658b…
Author: Jacek Caban <jacek(a)codeweavers.com>
Date: Thu May 14 00:49:01 2009 +0200
urlmon: Added PI_MIMEVERIFICATION support.
---
dlls/urlmon/bindprot.c | 163 ++++++++++++++++++++++++++++++++++++-----------
1 files changed, 125 insertions(+), 38 deletions(-)
diff --git a/dlls/urlmon/bindprot.c b/dlls/urlmon/bindprot.c
index 7235b63..d431095 100644
--- a/dlls/urlmon/bindprot.c
+++ b/dlls/urlmon/bindprot.c
@@ -50,6 +50,7 @@ struct BindProtocol {
LONG priority;
BOOL reported_result;
+ BOOL reported_mime;
BOOL from_urlmon;
DWORD pi;
@@ -59,6 +60,11 @@ struct BindProtocol {
CRITICAL_SECTION section;
task_header_t *task_queue_head, *task_queue_tail;
+
+ BYTE *buf;
+ DWORD buf_size;
+ LPWSTR mime;
+ LPWSTR url;
};
#define PROTOCOL(x) ((IInternetProtocol*) &(x)->lpInternetProtocolVtbl)
@@ -67,6 +73,9 @@ struct BindProtocol {
#define SERVPROV(x) ((IServiceProvider*) &(x)->lpServiceProviderVtbl)
#define PROTSINK(x) ((IInternetProtocolSink*) &(x)->lpInternetProtocolSinkVtbl)
+#define BUFFER_SIZE 2048
+#define MIME_TEST_SIZE 255
+
#define WM_MK_CONTINUE (WM_USER+101)
#define WM_MK_RELEASE (WM_USER+102)
@@ -272,6 +281,9 @@ static ULONG WINAPI BindProtocol_Release(IInternetProtocol *iface)
if(This->notif_hwnd)
release_notif_hwnd(This->notif_hwnd);
DeleteCriticalSection(&This->section);
+
+ heap_free(This->mime);
+ heap_free(This->url);
heap_free(This);
URLMON_UnlockModule();
@@ -300,6 +312,7 @@ static HRESULT WINAPI BindProtocol_Start(IInternetProtocol *iface, LPCWSTR szUrl
return E_INVALIDARG;
This->pi = grfPI;
+ This->url = heap_strdupW(szUrl);
hres = IInternetProtocolSink_QueryInterface(pOIProtSink, &IID_IServiceProvider,
(void**)&service_provider);
@@ -417,11 +430,30 @@ static HRESULT WINAPI BindProtocol_Read(IInternetProtocol *iface, void *pv,
{
BindProtocol *This = PROTOCOL_THIS(iface);
ULONG read = 0;
- HRESULT hres;
+ HRESULT hres = S_OK;
TRACE("(%p)->(%p %u %p)\n", This, pv, cb, pcbRead);
- hres = IInternetProtocol_Read(This->protocol, pv, cb, &read);
+ if(This->buf) {
+ read = min(cb, This->buf_size);
+ memcpy(pv, This->buf, read);
+
+ if(read == This->buf_size) {
+ heap_free(This->buf);
+ This->buf = NULL;
+ }else {
+ memmove(This->buf, This->buf+cb, This->buf_size-cb);
+ }
+
+ This->buf_size -= read;
+ }
+
+ if(read < cb) {
+ ULONG cread = 0;
+
+ hres = IInternetProtocol_Read(This->protocol, (BYTE*)pv+read, cb, &cread);
+ read += cread;
+ }
*pcbRead = read;
return hres;
@@ -674,6 +706,47 @@ static HRESULT WINAPI BPInternetProtocolSink_Switch(IInternetProtocolSink *iface
return IInternetProtocolSink_Switch(This->protocol_sink, pProtocolData);
}
+static void report_progress(BindProtocol *This, ULONG status_code, LPCWSTR status_text)
+{
+ switch(status_code) {
+ case BINDSTATUS_FINDINGRESOURCE:
+ case BINDSTATUS_CONNECTING:
+ case BINDSTATUS_BEGINDOWNLOADDATA:
+ case BINDSTATUS_SENDINGREQUEST:
+ case BINDSTATUS_CACHEFILENAMEAVAILABLE:
+ case BINDSTATUS_DIRECTBIND:
+ case BINDSTATUS_ACCEPTRANGES:
+ if(This->protocol_sink)
+ IInternetProtocolSink_ReportProgress(This->protocol_sink, status_code, status_text);
+ break;
+
+ case BINDSTATUS_MIMETYPEAVAILABLE:
+ if(!This->reported_mime) {
+ heap_free(This->mime);
+ This->mime = heap_strdupW(status_text);
+ }
+
+ if(This->protocol_sink && !(This->pi & PI_MIMEVERIFICATION))
+ IInternetProtocolSink_ReportProgress(This->protocol_sink, status_code, status_text);
+ break;
+
+ case BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE:
+ if(!This->reported_mime) {
+ heap_free(This->mime);
+ This->mime = heap_strdupW(status_text);
+ }
+
+ if(This->protocol_sink) {
+ This->reported_mime = TRUE;
+ IInternetProtocolSink_ReportProgress(This->protocol_sink, BINDSTATUS_MIMETYPEAVAILABLE, status_text);
+ }
+ break;
+
+ default:
+ FIXME("unsupported ulStatusCode %u\n", status_code);
+ }
+}
+
typedef struct {
task_header_t header;
@@ -685,63 +758,79 @@ static void on_progress_proc(BindProtocol *This, task_header_t *t)
{
on_progress_task_t *task = (on_progress_task_t*)t;
- IInternetProtocolSink_ReportProgress(This->protocol_sink, task->status_code, task->status_text);
+ report_progress(This, task->status_code, task->status_text);
heap_free(task->status_text);
heap_free(task);
}
-static void report_progress(BindProtocol *This, ULONG status_code, LPCWSTR status_text)
+static HRESULT WINAPI BPInternetProtocolSink_ReportProgress(IInternetProtocolSink *iface,
+ ULONG ulStatusCode, LPCWSTR szStatusText)
{
+ BindProtocol *This = PROTSINK_THIS(iface);
+
+ TRACE("(%p)->(%u %s)\n", This, ulStatusCode, debugstr_w(szStatusText));
+
if(do_direct_notif(This)) {
- IInternetProtocolSink_ReportProgress(This->protocol_sink, status_code, status_text);
+ report_progress(This, ulStatusCode, szStatusText);
}else {
on_progress_task_t *task;
task = heap_alloc(sizeof(on_progress_task_t));
- task->status_code = status_code;
- task->status_text = heap_strdupW(status_text);
+ task->status_code = ulStatusCode;
+ task->status_text = heap_strdupW(szStatusText);
push_task(This, &task->header, on_progress_proc);
}
+
+ return S_OK;
}
-static HRESULT WINAPI BPInternetProtocolSink_ReportProgress(IInternetProtocolSink *iface,
- ULONG ulStatusCode, LPCWSTR szStatusText)
+static HRESULT report_data(BindProtocol *This, DWORD bscf, ULONG progress, ULONG progress_max)
{
- BindProtocol *This = PROTSINK_THIS(iface);
+ if(!This->protocol_sink)
+ return S_OK;
- TRACE("(%p)->(%u %s)\n", This, ulStatusCode, debugstr_w(szStatusText));
+ if((This->pi & PI_MIMEVERIFICATION) && !This->reported_mime) {
+ DWORD read = 0;
+ LPWSTR mime;
+ HRESULT hres;
- switch(ulStatusCode) {
- case BINDSTATUS_FINDINGRESOURCE:
- case BINDSTATUS_CONNECTING:
- case BINDSTATUS_BEGINDOWNLOADDATA:
- case BINDSTATUS_SENDINGREQUEST:
- case BINDSTATUS_CACHEFILENAMEAVAILABLE:
- case BINDSTATUS_DIRECTBIND:
- case BINDSTATUS_ACCEPTRANGES:
- case BINDSTATUS_MIMETYPEAVAILABLE:
- if(!This->protocol_sink)
- return S_OK;
- report_progress(This, ulStatusCode, szStatusText);
- break;
+ if(!This->buf) {
+ This->buf = heap_alloc(BUFFER_SIZE);
+ if(!This->buf)
+ return E_OUTOFMEMORY;
+ }
- case BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE:
- if(!This->protocol_sink)
+ do {
+ read = 0;
+ hres = IInternetProtocol_Read(This->protocol, This->buf+This->buf_size, BUFFER_SIZE-This->buf_size, &read);
+ if(hres != S_OK)
+ break;
+ This->buf_size += read;
+ }while(This->buf_size < MIME_TEST_SIZE);
+ if(FAILED(hres) && hres != E_PENDING)
+ return hres;
+
+ This->buf_size += read;
+ if(This->buf_size < MIME_TEST_SIZE && hres != S_FALSE)
return S_OK;
- report_progress(This,
- This->from_urlmon ? BINDSTATUS_VERIFIEDMIMETYPEAVAILABLE : BINDSTATUS_MIMETYPEAVAILABLE,
- szStatusText);
- break;
- default:
- FIXME("unsupported ulStatusCode %u\n", ulStatusCode);
- return E_NOTIMPL;
+
+ hres = FindMimeFromData(NULL, This->url, This->buf, min(This->buf_size, MIME_TEST_SIZE), This->mime, 0, &mime, 0);
+ if(FAILED(hres))
+ return hres;
+
+ heap_free(This->mime);
+ This->mime = heap_strdupW(mime);
+ CoTaskMemFree(mime);
+
+ This->reported_mime = TRUE;
+ IInternetProtocolSink_ReportProgress(This->protocol_sink, BINDSTATUS_MIMETYPEAVAILABLE, This->mime);
}
- return S_OK;
+ return IInternetProtocolSink_ReportData(This->protocol_sink, bscf, progress, progress_max);
}
typedef struct {
@@ -755,9 +844,7 @@ static void report_data_proc(BindProtocol *This, task_header_t *t)
{
report_data_task_t *task = (report_data_task_t*)t;
- if(This->protocol_sink)
- IInternetProtocolSink_ReportData(This->protocol_sink, task->bscf, task->progress, task->progress_max);
-
+ report_data(This, task->bscf, task->progress, task->progress_max);
heap_free(task);
}
@@ -786,7 +873,7 @@ static HRESULT WINAPI BPInternetProtocolSink_ReportData(IInternetProtocolSink *i
return S_OK;
}
- return IInternetProtocolSink_ReportData(This->protocol_sink, grfBSCF, ulProgress, ulProgressMax);
+ return report_data(This, grfBSCF, ulProgress, ulProgressMax);
}
typedef struct {
1
0
Module: bugzilla
Branch: master
Commit: 9e26ae2d5b2a0c0f8aaec91c1ea24d7e6408ad6d
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=9e26ae2d5b2a0c0f8aaec…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed May 13 20:21:08 2009 +0200
Fix some merge glitches.
---
template/en/default/global/header.html.tmpl | 1 -
1 files changed, 0 insertions(+), 1 deletions(-)
diff --git a/admin.cgi b/admin.cgi
old mode 100644
new mode 100755
diff --git a/editworkflow.cgi b/editworkflow.cgi
old mode 100644
new mode 100755
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl
index a247f6e..390902f 100644
--- a/template/en/default/global/header.html.tmpl
+++ b/template/en/default/global/header.html.tmpl
@@ -280,7 +280,6 @@
[% END %]
</tr>
</table>
-</div>
<div id="header">
[% PROCESS "global/common-links.html.tmpl" qs_suffix = "_top" %]
1
0
13 May '09
Module: bugzilla
Branch: upstream
Commit: e002e6fe6ed73d59ce9185f580bec35a2167b98a
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=e002e6fe6ed73d59ce918…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed May 13 13:30:27 2009 +0200
Import of upstream bugzilla release 3.2.3.
---
.cvsignore | 1 -
Bugzilla.pm | 203 ++-
Bugzilla/Attachment.pm | 161 +-
Bugzilla/Attachment/PatchReader.pm | 36 +-
Bugzilla/Auth.pm | 16 +-
Bugzilla/Auth/Login/CGI.pm | 11 +-
Bugzilla/Auth/Persist/Cookie.pm | 39 +-
Bugzilla/Auth/Verify.pm | 7 +-
Bugzilla/Auth/Verify/DB.pm | 5 +
Bugzilla/Auth/Verify/LDAP.pm | 33 +-
Bugzilla/Auth/Verify/RADIUS.pm | 64 +
Bugzilla/Bug.pm | 2027 ++++++++++++++---
Bugzilla/BugMail.pm | 150 +-
Bugzilla/CGI.pm | 97 +-
Bugzilla/Chart.pm | 1 -
Bugzilla/Component.pm | 428 ++++-
Bugzilla/Config.pm | 45 +-
Bugzilla/Config/Attachment.pm | 15 +-
Bugzilla/Config/Auth.pm | 4 +-
Bugzilla/Config/BugChange.pm | 66 +-
Bugzilla/Config/BugFields.pm | 2 +-
Bugzilla/Config/Common.pm | 115 +-
Bugzilla/Config/Core.pm | 2 +-
Bugzilla/Config/L10n.pm | 79 -
Bugzilla/Config/MTA.pm | 11 +
Bugzilla/Config/RADIUS.pm | 60 +
Bugzilla/Constants.pm | 72 +-
Bugzilla/DB.pm | 373 ++--
Bugzilla/DB/Mysql.pm | 208 ++-
Bugzilla/DB/Oracle.pm | 608 +++++
Bugzilla/DB/Pg.pm | 64 +-
Bugzilla/DB/Schema.pm | 389 +++-
Bugzilla/DB/Schema/Mysql.pm | 26 +-
Bugzilla/DB/Schema/Oracle.pm | 403 ++++
Bugzilla/DB/Schema/Pg.pm | 2 +-
Bugzilla/Error.pm | 22 +-
Bugzilla/Field.pm | 188 +-
Bugzilla/Flag.pm | 213 +-
Bugzilla/FlagType.pm | 18 +
Bugzilla/Group.pm | 132 ++-
Bugzilla/Hook.pm | 217 ++-
Bugzilla/Install.pm | 76 +-
Bugzilla/Install/CPAN.pm | 251 +++
Bugzilla/Install/DB.pm | 381 +++-
Bugzilla/Install/Filesystem.pm | 75 +-
Bugzilla/Install/Localconfig.pm | 57 +-
Bugzilla/Install/Requirements.pm | 288 +--
Bugzilla/Install/Util.pm | 553 +++++
Bugzilla/Mailer.pm | 82 +-
Bugzilla/Milestone.pm | 283 ++-
Bugzilla/Object.pm | 286 ++-
Bugzilla/Product.pm | 120 +-
Bugzilla/Search.pm | 2008 ++++++++++-------
Bugzilla/Search/Quicksearch.pm | 30 +-
Bugzilla/Search/Saved.pm | 57 +-
Bugzilla/Series.pm | 9 +-
Bugzilla/Status.pm | 278 +++
Bugzilla/Template.pm | 249 +--
Bugzilla/Template/Parser.pm | 66 +
Bugzilla/Template/Plugin/Hook.pm | 85 +-
Bugzilla/Token.pm | 68 +-
Bugzilla/User.pm | 102 +-
Bugzilla/User/Setting.pm | 45 +-
Bugzilla/User/Setting/Lang.pm | 60 +
Bugzilla/User/Setting/Skin.pm | 1 +
Bugzilla/Util.pm | 190 ++-
Bugzilla/Version.pm | 28 +-
Bugzilla/WebService.pm | 165 ++-
Bugzilla/WebService/Bug.pm | 135 +-
Bugzilla/WebService/Bugzilla.pm | 63 +-
Bugzilla/WebService/Constants.pm | 27 +-
Bugzilla/WebService/Product.pm | 30 +-
Bugzilla/WebService/User.pm | 54 +-
admin.cgi | 49 +
attachment.cgi | 628 +++---
buglist.cgi | 214 ++-
chart.cgi | 5 +-
checksetup.pl | 44 +-
colchange.cgi | 61 +-
collectstats.pl | 46 +-
config.cgi | 14 +-
contrib/bz_webservice_demo.pl | 77 +-
contrib/bzdbcopy.pl | 98 +-
contrib/merge-users.pl | 16 +-
contrib/recode.pl | 19 +-
contrib/sendbugmail.pl | 4 +-
contrib/sendunsentbugmail.pl | 2 +-
contrib/syncLDAP.pl | 79 +-
createaccount.cgi | 6 +-
describecomponents.cgi | 2 +-
describekeywords.cgi | 2 +-
docs/.cvsignore | 2 -
docs/bugzilla.ent | 39 +
docs/en/.cvsignore | 3 +
docs/{ => en}/README.docs | 0
docs/{ => en}/images/bzLifecycle.png | Bin 74447 -> 74447 bytes
docs/{ => en}/images/bzLifecycle.xml | 0
docs/{ => en}/images/callouts/1.gif | Bin 890 -> 890 bytes
docs/{ => en}/images/callouts/2.gif | Bin 907 -> 907 bytes
docs/{ => en}/images/callouts/3.gif | Bin 914 -> 914 bytes
docs/{ => en}/images/caution.gif | Bin 134 -> 134 bytes
docs/{ => en}/images/note.gif | Bin 226 -> 226 bytes
docs/{ => en}/images/tip.gif | Bin 1229 -> 1229 bytes
docs/{ => en}/images/warning.gif | Bin 140 -> 140 bytes
docs/{ => en}/rel_notes.txt | 0
docs/{ => en}/xml/.cvsignore | 0
docs/{ => en}/xml/Bugzilla-Guide.xml | 25 +-
docs/{ => en}/xml/about.xml | 2 +-
docs/{ => en}/xml/administration.xml | 831 +++----
docs/en/xml/bugzilla.ent | 39 +
docs/{ => en}/xml/conventions.xml | 0
docs/{ => en}/xml/customization.xml | 8 -
docs/{ => en}/xml/gfdl.xml | 0
docs/{ => en}/xml/glossary.xml | 0
docs/{ => en}/xml/index.xml | 0
docs/{ => en}/xml/installation.xml | 910 +++++---
docs/{ => en}/xml/integration.xml | 0
docs/{ => en}/xml/introduction.xml | 0
docs/{ => en}/xml/modules.xml | 0
docs/{ => en}/xml/patches.xml | 0
docs/{ => en}/xml/requiredsoftware.xml | 0
docs/{ => en}/xml/security.xml | 12 +-
docs/{ => en}/xml/troubleshooting.xml | 18 +-
docs/{ => en}/xml/using.xml | 73 +-
docs/html/.cvsignore | 1 -
docs/html/api/.cvsignore | 3 -
docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm | 4 +-
docs/makedocs.pl | 87 +-
docs/{html/api => }/style.css | 0
docs/xml/faq.xml | 1676 --------------
duplicates.cgi | 2 +-
editclassifications.cgi | 54 +-
editcomponents.cgi | 290 +---
editfields.cgi | 45 +-
editflagtypes.cgi | 67 +-
editgroups.cgi | 497 ++---
editkeywords.cgi | 47 +-
editmilestones.cgi | 232 +--
editparams.cgi | 31 +-
editproducts.cgi | 92 +-
editsettings.cgi | 93 +-
editusers.cgi | 76 +-
editvalues.cgi | 186 +-
editversions.cgi | 57 +-
editwhines.cgi | 28 +-
editworkflow.cgi | 151 ++
email_in.pl | 89 +-
enter_bug.cgi | 195 +-
extensions/example/code/bug-end_of_update.pl | 56 +
extensions/example/code/buglist-columns.pl | 26 +
extensions/example/code/colchange-columns.pl | 27 +
extensions/example/code/config.pl | 26 +
extensions/example/code/flag-end_of_update.pl | 42 +
.../example/code/install-before_final_checks.pl | 28 +
extensions/example/code/product-confirm_delete.pl | 26 +
extensions/example/code/webservice-error_codes.pl | 25 +
extensions/example/code/webservice.pl | 25 +
extensions/example/info.pl | 41 +
extensions/example/lib/ConfigExample.pm | 41 +
extensions/example/lib/WSExample.pm | 32 +
.../en/default/admin/params/example.html.tmpl | 28 +
.../template/en/global/user-error-errors.html.tmpl | 12 +
images/favicon.ico | Bin 0 -> 4150 bytes
importxml.pl | 198 ++-
index.cgi | 6 +-
install-module.pl | 161 ++
js/field.js | 339 +++
js/help.js | 108 +
js/params.js | 61 +
js/productform.js | 425 ++--
js/util.js | 156 ++
js/yui/calendar.js | 16 +
js/yui/yahoo-dom-event.js | 10 +
lib/README | 4 +
long_list.cgi | 2 +-
mod_perl.pl | 4 +
page.cgi | 2 +-
post_bug.cgi | 35 +-
process_bug.cgi | 2347 ++++----------------
productmenu.js | 256 ---
query.cgi | 26 +-
quips.cgi | 24 +-
relogin.cgi | 2 +-
report.cgi | 7 +-
reports.cgi | 6 +-
request.cgi | 45 +-
runtests.pl | 1 +
sanitycheck.cgi | 503 +++--
sanitycheck.pl | 116 +
search_plugin.cgi | 2 +-
show_activity.cgi | 4 +-
show_bug.cgi | 4 +-
showattachment.cgi | 2 +-
showdependencygraph.cgi | 75 +-
showdependencytree.cgi | 6 +-
sidebar.cgi | 2 +-
skins/.cvsignore | 1 -
skins/contrib/Dusk/.cvsignore | 17 +
skins/contrib/Dusk/buglist.css | 24 +
skins/contrib/Dusk/global.css | 279 +++
skins/standard/IE-fixes.css | 2 +-
skins/standard/admin.css | 75 +
skins/standard/buglist.css | 4 +
skins/standard/editusers.css | 14 +
skins/standard/global.css | 78 +-
skins/standard/global/calendar.png | Bin 0 -> 718 bytes
skins/standard/help.css | 41 +
skins/standard/params.css | 6 +
skins/standard/show_bug.css | 75 +
skins/standard/yui/calendar.css | 7 +
skins/standard/yui/sprite.png | Bin 0 -> 3123 bytes
summarize_time.cgi | 322 +--
t/001compile.t | 22 +-
t/004template.t | 16 +-
t/006spellcheck.t | 6 +
t/007util.t | 5 +-
t/008filter.t | 6 +-
t/Support/Files.pm | 1 +
.../en/default/account/auth/login-small.html.tmpl | 3 +-
template/en/default/account/auth/login.html.tmpl | 3 +-
template/en/default/account/cancel-token.txt.tmpl | 11 +-
template/en/default/account/create.html.tmpl | 28 +-
template/en/default/account/created.html.tmpl | 8 +-
.../en/default/account/email/change-new.txt.tmpl | 5 +-
.../en/default/account/email/change-old.txt.tmpl | 3 +-
.../en/default/account/email/confirm-new.html.tmpl | 29 +-
.../en/default/account/email/confirm.html.tmpl | 1 -
.../en/default/account/email/request-new.txt.tmpl | 30 +-
.../account/password/forgotten-password.txt.tmpl | 5 +-
.../password/set-forgotten-password.html.tmpl | 1 -
.../en/default/account/prefs/account.html.tmpl | 7 +-
template/en/default/account/prefs/email.html.tmpl | 1 -
.../en/default/account/prefs/permissions.html.tmpl | 7 +-
template/en/default/account/prefs/prefs.html.tmpl | 4 +-
.../default/account/prefs/saved-searches.html.tmpl | 33 +-
.../en/default/account/prefs/settings.html.tmpl | 1 -
.../en/default/account/profile-activity.html.tmpl | 3 +-
template/en/default/admin/admin.html.tmpl | 131 ++
.../en/default/admin/classifications/add.html.tmpl | 1 -
.../en/default/admin/classifications/del.html.tmpl | 1 -
.../default/admin/classifications/edit.html.tmpl | 1 -
.../en/default/admin/classifications/new.html.tmpl | 32 -
.../admin/classifications/reclassify.html.tmpl | 1 -
.../default/admin/classifications/select.html.tmpl | 1 -
.../default/admin/classifications/update.html.tmpl | 41 -
.../admin/components/confirm-delete.html.tmpl | 4 +-
.../en/default/admin/components/create.html.tmpl | 9 +-
.../en/default/admin/components/created.html.tmpl | 41 -
.../en/default/admin/components/deleted.html.tmpl | 59 -
.../en/default/admin/components/edit.html.tmpl | 4 +-
.../en/default/admin/components/footer.html.tmpl | 1 -
.../en/default/admin/components/list.html.tmpl | 1 -
.../admin/components/select-product.html.tmpl | 1 -
.../en/default/admin/components/updated.html.tmpl | 98 -
template/en/default/admin/confirm-action.html.tmpl | 7 +-
.../admin/custom_fields/confirm-delete.html.tmpl | 66 +
.../default/admin/custom_fields/create.html.tmpl | 5 +-
.../en/default/admin/custom_fields/edit.html.tmpl | 17 +-
.../en/default/admin/custom_fields/list.html.tmpl | 24 +-
.../admin/fieldvalues/confirm-delete.html.tmpl | 27 +-
.../en/default/admin/fieldvalues/create.html.tmpl | 35 +-
.../en/default/admin/fieldvalues/created.html.tmpl | 37 -
.../en/default/admin/fieldvalues/deleted.html.tmpl | 36 -
.../en/default/admin/fieldvalues/edit.html.tmpl | 20 +-
.../en/default/admin/fieldvalues/footer.html.tmpl | 14 +-
.../en/default/admin/fieldvalues/list.html.tmpl | 11 +-
.../admin/fieldvalues/select-field.html.tmpl | 1 -
.../en/default/admin/fieldvalues/updated.html.tmpl | 55 -
.../admin/flag-type/confirm-delete.html.tmpl | 19 +-
template/en/default/admin/flag-type/edit.html.tmpl | 32 +-
template/en/default/admin/flag-type/list.html.tmpl | 8 +-
template/en/default/admin/groups/change.html.tmpl | 111 -
.../default/admin/groups/confirm-remove.html.tmpl | 66 +
template/en/default/admin/groups/create.html.tmpl | 27 +-
template/en/default/admin/groups/created.html.tmpl | 38 -
template/en/default/admin/groups/delete.html.tmpl | 2 +-
template/en/default/admin/groups/deleted.html.tmpl | 38 -
template/en/default/admin/groups/edit.html.tmpl | 321 ++--
template/en/default/admin/groups/list.html.tmpl | 2 +-
template/en/default/admin/groups/remove.html.tmpl | 62 -
.../admin/keywords/confirm-delete.html.tmpl | 4 +-
.../en/default/admin/keywords/create.html.tmpl | 1 -
.../en/default/admin/keywords/created.html.tmpl | 36 -
template/en/default/admin/keywords/edit.html.tmpl | 3 +-
template/en/default/admin/keywords/list.html.tmpl | 3 +-
.../default/admin/keywords/rebuild-cache.html.tmpl | 56 -
.../admin/milestones/confirm-delete.html.tmpl | 6 +-
.../en/default/admin/milestones/create.html.tmpl | 1 -
.../en/default/admin/milestones/created.html.tmpl | 44 -
.../en/default/admin/milestones/deleted.html.tmpl | 58 -
.../en/default/admin/milestones/edit.html.tmpl | 3 +-
.../en/default/admin/milestones/footer.html.tmpl | 1 -
.../en/default/admin/milestones/list.html.tmpl | 1 -
.../admin/milestones/select-product.html.tmpl | 1 -
.../en/default/admin/milestones/updated.html.tmpl | 51 -
template/en/default/admin/params/admin.html.tmpl | 1 -
.../en/default/admin/params/attachment.html.tmpl | 34 +-
template/en/default/admin/params/auth.html.tmpl | 14 +-
.../en/default/admin/params/bugchange.html.tmpl | 29 +-
.../en/default/admin/params/bugfields.html.tmpl | 1 -
template/en/default/admin/params/bugmove.html.tmpl | 1 -
template/en/default/admin/params/common.html.tmpl | 71 +-
template/en/default/admin/params/core.html.tmpl | 8 +-
.../default/admin/params/dependencygraph.html.tmpl | 1 -
.../en/default/admin/params/editparams.html.tmpl | 3 +-
.../default/admin/params/groupsecurity.html.tmpl | 3 +-
template/en/default/admin/params/index.html.tmpl | 1 -
template/en/default/admin/params/l10n.html.tmpl | 46 -
template/en/default/admin/params/ldap.html.tmpl | 9 +-
template/en/default/admin/params/mta.html.tmpl | 7 +-
.../en/default/admin/params/patchviewer.html.tmpl | 1 -
template/en/default/admin/params/query.html.tmpl | 3 +-
template/en/default/admin/params/radius.html.tmpl | 54 +
.../en/default/admin/params/shadowdb.html.tmpl | 1 -
.../en/default/admin/params/usermatch.html.tmpl | 1 -
.../admin/products/confirm-delete.html.tmpl | 3 +-
.../en/default/admin/products/create.html.tmpl | 1 -
.../en/default/admin/products/created.html.tmpl | 36 -
.../en/default/admin/products/deleted.html.tmpl | 50 -
.../default/admin/products/edit-common.html.tmpl | 3 +-
template/en/default/admin/products/edit.html.tmpl | 21 +-
.../en/default/admin/products/footer.html.tmpl | 1 -
.../products/groupcontrol/confirm-edit.html.tmpl | 1 -
.../admin/products/groupcontrol/edit.html.tmpl | 3 +-
.../admin/products/groupcontrol/updated.html.tmpl | 1 -
.../admin/products/list-classifications.html.tmpl | 1 -
template/en/default/admin/products/list.html.tmpl | 1 -
.../en/default/admin/products/updated.html.tmpl | 9 +-
.../en/default/admin/sanitycheck/list.html.tmpl | 37 +
.../default/admin/sanitycheck/messages.html.tmpl | 330 +++
template/en/default/admin/settings/edit.html.tmpl | 6 +-
.../en/default/admin/settings/updated.html.tmpl | 27 -
template/en/default/admin/sudo.html.tmpl | 5 +-
template/en/default/admin/table.html.tmpl | 3 +-
.../default/admin/users/confirm-delete.html.tmpl | 136 +-
template/en/default/admin/users/create.html.tmpl | 2 +-
template/en/default/admin/users/edit.html.tmpl | 31 +-
template/en/default/admin/users/list.html.tmpl | 4 +-
.../default/admin/users/listselectvars.html.tmpl | 1 -
.../default/admin/users/responsibilities.html.tmpl | 61 +
template/en/default/admin/users/search.html.tmpl | 2 +-
template/en/default/admin/users/userdata.html.tmpl | 9 +-
.../admin/versions/confirm-delete.html.tmpl | 1 -
.../en/default/admin/versions/create.html.tmpl | 1 -
.../en/default/admin/versions/created.html.tmpl | 43 -
.../en/default/admin/versions/deleted.html.tmpl | 41 -
template/en/default/admin/versions/edit.html.tmpl | 3 +-
.../en/default/admin/versions/footer.html.tmpl | 1 -
template/en/default/admin/versions/list.html.tmpl | 1 -
.../admin/versions/select-product.html.tmpl | 1 -
.../en/default/admin/versions/updated.html.tmpl | 45 -
.../en/default/admin/workflow/comment.html.tmpl | 92 +
template/en/default/admin/workflow/edit.html.tmpl | 110 +
.../attachment/cancel-create-dupe.html.tmpl | 48 +
template/en/default/attachment/choose.html.tmpl | 1 -
.../en/default/attachment/confirm-delete.html.tmpl | 9 +-
.../en/default/attachment/content-types.html.tmpl | 1 -
template/en/default/attachment/create.html.tmpl | 20 +-
template/en/default/attachment/created.html.tmpl | 42 +-
.../attachment/createformcontents.html.tmpl | 1 -
.../en/default/attachment/delete_reason.txt.tmpl | 5 +-
template/en/default/attachment/diff-file.html.tmpl | 56 +-
.../en/default/attachment/diff-footer.html.tmpl | 1 -
.../en/default/attachment/diff-header.html.tmpl | 24 +-
template/en/default/attachment/edit.html.tmpl | 82 +-
template/en/default/attachment/list.html.tmpl | 7 +-
template/en/default/attachment/midair.html.tmpl | 78 +
.../en/default/attachment/show-multiple.html.tmpl | 3 +-
template/en/default/attachment/updated.html.tmpl | 34 +-
template/en/default/bug/activity/show.html.tmpl | 25 +-
template/en/default/bug/activity/table.html.tmpl | 5 +-
template/en/default/bug/choose.html.tmpl | 1 -
template/en/default/bug/comments.html.tmpl | 141 +-
.../en/default/bug/create/comment-guided.txt.tmpl | 3 +-
template/en/default/bug/create/comment.txt.tmpl | 1 -
.../bug/create/confirm-create-dupe.html.tmpl | 1 -
.../en/default/bug/create/create-guided.html.tmpl | 58 +-
template/en/default/bug/create/create.html.tmpl | 299 ++--
template/en/default/bug/create/created.html.tmpl | 8 +-
.../en/default/bug/create/make-template.html.tmpl | 1 -
.../en/default/bug/create/user-message.html.tmpl | 1 -
template/en/default/bug/dependency-graph.html.tmpl | 48 +-
template/en/default/bug/dependency-tree.html.tmpl | 4 +-
template/en/default/bug/edit.html.tmpl | 1356 +++++++-----
template/en/default/bug/field.html.tmpl | 58 +-
template/en/default/bug/knob.html.tmpl | 258 +--
template/en/default/bug/navigate.html.tmpl | 18 +-
template/en/default/bug/process/bugmail.html.tmpl | 1 -
.../bug/process/confirm-duplicate.html.tmpl | 1 -
template/en/default/bug/process/header.html.tmpl | 8 +-
template/en/default/bug/process/midair.html.tmpl | 14 +-
template/en/default/bug/process/results.html.tmpl | 1 -
.../bug/process/verify-new-product.html.tmpl | 218 ++-
template/en/default/bug/show-multiple.html.tmpl | 24 +-
template/en/default/bug/show.html.tmpl | 24 +-
template/en/default/bug/show.xml.tmpl | 28 +-
template/en/default/bug/summarize-time.html.tmpl | 165 +-
template/en/default/bug/time.html.tmpl | 1 -
template/en/default/bug/votes/delete-all.html.tmpl | 1 -
.../en/default/bug/votes/list-for-bug.html.tmpl | 1 -
.../en/default/bug/votes/list-for-user.html.tmpl | 16 +-
template/en/default/config.js.tmpl | 12 +-
template/en/default/config.rdf.tmpl | 59 +-
template/en/default/email/newchangedmail.txt.tmpl | 10 +-
.../sanitycheck.txt.tmpl} | 23 +-
template/en/default/email/sudo.txt.tmpl | 3 +-
template/en/default/email/votes-removed.txt.tmpl | 3 +-
template/en/default/email/whine.txt.tmpl | 21 +-
template/en/default/filterexceptions.pl | 68 +-
template/en/default/flag/list.html.tmpl | 81 +-
template/en/default/global/banner.html.tmpl | 1 -
.../default/global/choose-classification.html.tmpl | 1 -
.../en/default/global/choose-product.html.tmpl | 1 -
template/en/default/global/code-error.html.tmpl | 34 +-
template/en/default/global/common-links.html.tmpl | 43 +-
.../en/default/global/confirm-action.html.tmpl | 63 +
.../en/default/global/confirm-user-match.html.tmpl | 18 +-
template/en/default/global/docslinks.html.tmpl | 3 +-
template/en/default/global/field-descs.none.tmpl | 126 +-
template/en/default/global/footer.html.tmpl | 1 -
template/en/default/global/header.html.tmpl | 43 +-
template/en/default/global/help-header.html.tmpl | 91 -
template/en/default/global/help.html.tmpl | 14 +-
template/en/default/global/hidden-fields.html.tmpl | 1 -
template/en/default/global/initialize.none.tmpl | 1 -
template/en/default/global/js-products.html.tmpl | 11 +-
template/en/default/global/message.html.tmpl | 1 -
template/en/default/global/message.txt.tmpl | 1 -
template/en/default/global/messages.html.tmpl | 412 ++++-
.../en/default/global/per-bug-queries.html.tmpl | 3 +-
template/en/default/global/select-menu.html.tmpl | 1 -
template/en/default/global/setting-descs.none.tmpl | 4 +-
.../en/default/global/site-navigation.html.tmpl | 26 +-
template/en/default/global/tabs.html.tmpl | 1 -
template/en/default/global/textarea.html.tmpl | 1 -
template/en/default/global/useful-links.html.tmpl | 64 +-
template/en/default/global/user-error.html.tmpl | 286 ++-
template/en/default/global/userselect.html.tmpl | 32 +-
template/en/default/global/variables.none.tmpl | 3 -
template/en/default/index.html.tmpl | 7 +-
template/en/default/list/change-columns.html.tmpl | 24 +-
template/en/default/list/edit-multiple.html.tmpl | 191 +-
template/en/default/list/list-simple.html.tmpl | 3 +-
template/en/default/list/list.atom.tmpl | 48 +-
template/en/default/list/list.csv.tmpl | 3 +-
template/en/default/list/list.html.tmpl | 68 +-
template/en/default/list/list.ics.tmpl | 5 +-
template/en/default/list/list.js.tmpl | 1 -
template/en/default/list/list.rdf.tmpl | 7 +-
template/en/default/list/quips.html.tmpl | 6 +-
template/en/default/list/server-push.html.tmpl | 1 -
template/en/default/list/table.html.tmpl | 52 +-
template/en/default/pages/bug-writing.html.tmpl | 1 -
template/en/default/pages/fields.html.tmpl | 69 +-
template/en/default/pages/linked.html.tmpl | 1 -
template/en/default/pages/linkify.html.tmpl | 1 -
template/en/default/pages/quicksearch.html.tmpl | 1 -
.../en/default/pages/quicksearchhack.html.tmpl | 35 +-
template/en/default/pages/release-notes.html.tmpl | 850 +++++++-
template/en/default/pages/sudo.html.tmpl | 1 -
template/en/default/pages/voting.html.tmpl | 7 +-
template/en/default/reports/chart.csv.tmpl | 1 -
template/en/default/reports/chart.html.tmpl | 1 -
template/en/default/reports/chart.png.tmpl | 1 -
template/en/default/reports/components.html.tmpl | 1 -
template/en/default/reports/create-chart.html.tmpl | 1 -
.../en/default/reports/duplicates-simple.html.tmpl | 1 -
.../en/default/reports/duplicates-table.html.tmpl | 1 -
template/en/default/reports/duplicates.html.tmpl | 7 +-
template/en/default/reports/duplicates.rdf.tmpl | 5 +-
template/en/default/reports/edit-series.html.tmpl | 1 -
template/en/default/reports/keywords.html.tmpl | 1 -
template/en/default/reports/menu.html.tmpl | 2 +-
template/en/default/reports/old-charts.html.tmpl | 8 +-
template/en/default/reports/report-bar.png.tmpl | 5 +-
template/en/default/reports/report-line.png.tmpl | 5 +-
template/en/default/reports/report-pie.png.tmpl | 3 +-
.../en/default/reports/report-simple.html.tmpl | 1 -
template/en/default/reports/report-table.csv.tmpl | 5 +-
template/en/default/reports/report-table.html.tmpl | 5 +-
template/en/default/reports/report.csv.tmpl | 1 -
template/en/default/reports/report.html.tmpl | 1 -
.../en/default/reports/series-common.html.tmpl | 1 -
template/en/default/reports/series.html.tmpl | 3 +-
template/en/default/request/email.txt.tmpl | 19 +-
template/en/default/request/queue.html.tmpl | 15 +-
.../en/default/search/boolean-charts.html.tmpl | 8 +-
template/en/default/search/form.html.tmpl | 12 +-
template/en/default/search/knob.html.tmpl | 1 -
.../en/default/search/search-advanced.html.tmpl | 34 +-
.../default/search/search-create-series.html.tmpl | 2 +-
template/en/default/search/search-help.html.tmpl | 1 -
template/en/default/search/search-plugin.xml.tmpl | 3 +-
.../default/search/search-report-graph.html.tmpl | 4 +-
.../default/search/search-report-select.html.tmpl | 1 -
.../default/search/search-report-table.html.tmpl | 4 +-
.../en/default/search/search-specific.html.tmpl | 1 -
template/en/default/search/tabs.html.tmpl | 1 -
template/en/default/setup/strings.txt.pl | 69 +
template/en/default/sidebar.xul.tmpl | 7 +-
template/en/default/welcome-admin.html.tmpl | 11 +-
template/en/default/whine/mail.html.tmpl | 7 +-
template/en/default/whine/mail.txt.tmpl | 7 +-
template/en/default/whine/multipart-mime.txt.tmpl | 1 -
template/en/default/whine/schedule.html.tmpl | 71 +-
testserver.pl | 14 +-
token.cgi | 34 +-
userprefs.cgi | 43 +-
votes.cgi | 20 +-
whine.pl | 15 +-
whineatnews.pl | 2 +-
xml.cgi | 2 +-
xmlrpc.cgi | 39 +-
513 files changed, 22035 insertions(+), 14534 deletions(-)
Diff: http://source.winehq.org/git/bugzilla.git/?a=commitdiff;h=e002e6fe6ed73d59c…
1
0
13 May '09
Module: bugzilla
Branch: master
Commit: e002e6fe6ed73d59ce9185f580bec35a2167b98a
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=e002e6fe6ed73d59ce918…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed May 13 13:30:27 2009 +0200
Import of upstream bugzilla release 3.2.3.
---
.cvsignore | 1 -
Bugzilla.pm | 203 ++-
Bugzilla/Attachment.pm | 161 +-
Bugzilla/Attachment/PatchReader.pm | 36 +-
Bugzilla/Auth.pm | 16 +-
Bugzilla/Auth/Login/CGI.pm | 11 +-
Bugzilla/Auth/Persist/Cookie.pm | 39 +-
Bugzilla/Auth/Verify.pm | 7 +-
Bugzilla/Auth/Verify/DB.pm | 5 +
Bugzilla/Auth/Verify/LDAP.pm | 33 +-
Bugzilla/Auth/Verify/RADIUS.pm | 64 +
Bugzilla/Bug.pm | 2027 ++++++++++++++---
Bugzilla/BugMail.pm | 150 +-
Bugzilla/CGI.pm | 97 +-
Bugzilla/Chart.pm | 1 -
Bugzilla/Component.pm | 428 ++++-
Bugzilla/Config.pm | 45 +-
Bugzilla/Config/Attachment.pm | 15 +-
Bugzilla/Config/Auth.pm | 4 +-
Bugzilla/Config/BugChange.pm | 66 +-
Bugzilla/Config/BugFields.pm | 2 +-
Bugzilla/Config/Common.pm | 115 +-
Bugzilla/Config/Core.pm | 2 +-
Bugzilla/Config/L10n.pm | 79 -
Bugzilla/Config/MTA.pm | 11 +
Bugzilla/Config/RADIUS.pm | 60 +
Bugzilla/Constants.pm | 72 +-
Bugzilla/DB.pm | 373 ++--
Bugzilla/DB/Mysql.pm | 208 ++-
Bugzilla/DB/Oracle.pm | 608 +++++
Bugzilla/DB/Pg.pm | 64 +-
Bugzilla/DB/Schema.pm | 389 +++-
Bugzilla/DB/Schema/Mysql.pm | 26 +-
Bugzilla/DB/Schema/Oracle.pm | 403 ++++
Bugzilla/DB/Schema/Pg.pm | 2 +-
Bugzilla/Error.pm | 22 +-
Bugzilla/Field.pm | 188 +-
Bugzilla/Flag.pm | 213 +-
Bugzilla/FlagType.pm | 18 +
Bugzilla/Group.pm | 132 ++-
Bugzilla/Hook.pm | 217 ++-
Bugzilla/Install.pm | 76 +-
Bugzilla/Install/CPAN.pm | 251 +++
Bugzilla/Install/DB.pm | 381 +++-
Bugzilla/Install/Filesystem.pm | 75 +-
Bugzilla/Install/Localconfig.pm | 57 +-
Bugzilla/Install/Requirements.pm | 288 +--
Bugzilla/Install/Util.pm | 553 +++++
Bugzilla/Mailer.pm | 82 +-
Bugzilla/Milestone.pm | 283 ++-
Bugzilla/Object.pm | 286 ++-
Bugzilla/Product.pm | 120 +-
Bugzilla/Search.pm | 2008 ++++++++++-------
Bugzilla/Search/Quicksearch.pm | 30 +-
Bugzilla/Search/Saved.pm | 57 +-
Bugzilla/Series.pm | 9 +-
Bugzilla/Status.pm | 278 +++
Bugzilla/Template.pm | 249 +--
Bugzilla/Template/Parser.pm | 66 +
Bugzilla/Template/Plugin/Hook.pm | 85 +-
Bugzilla/Token.pm | 68 +-
Bugzilla/User.pm | 102 +-
Bugzilla/User/Setting.pm | 45 +-
Bugzilla/User/Setting/Lang.pm | 60 +
Bugzilla/User/Setting/Skin.pm | 1 +
Bugzilla/Util.pm | 190 ++-
Bugzilla/Version.pm | 28 +-
Bugzilla/WebService.pm | 165 ++-
Bugzilla/WebService/Bug.pm | 135 +-
Bugzilla/WebService/Bugzilla.pm | 63 +-
Bugzilla/WebService/Constants.pm | 27 +-
Bugzilla/WebService/Product.pm | 30 +-
Bugzilla/WebService/User.pm | 54 +-
admin.cgi | 49 +
attachment.cgi | 628 +++---
buglist.cgi | 214 ++-
chart.cgi | 5 +-
checksetup.pl | 44 +-
colchange.cgi | 61 +-
collectstats.pl | 46 +-
config.cgi | 14 +-
contrib/bz_webservice_demo.pl | 77 +-
contrib/bzdbcopy.pl | 98 +-
contrib/merge-users.pl | 16 +-
contrib/recode.pl | 19 +-
contrib/sendbugmail.pl | 4 +-
contrib/sendunsentbugmail.pl | 2 +-
contrib/syncLDAP.pl | 79 +-
createaccount.cgi | 6 +-
describecomponents.cgi | 2 +-
describekeywords.cgi | 2 +-
docs/.cvsignore | 2 -
docs/bugzilla.ent | 39 +
docs/en/.cvsignore | 3 +
docs/{ => en}/README.docs | 0
docs/{ => en}/images/bzLifecycle.png | Bin 74447 -> 74447 bytes
docs/{ => en}/images/bzLifecycle.xml | 0
docs/{ => en}/images/callouts/1.gif | Bin 890 -> 890 bytes
docs/{ => en}/images/callouts/2.gif | Bin 907 -> 907 bytes
docs/{ => en}/images/callouts/3.gif | Bin 914 -> 914 bytes
docs/{ => en}/images/caution.gif | Bin 134 -> 134 bytes
docs/{ => en}/images/note.gif | Bin 226 -> 226 bytes
docs/{ => en}/images/tip.gif | Bin 1229 -> 1229 bytes
docs/{ => en}/images/warning.gif | Bin 140 -> 140 bytes
docs/{ => en}/rel_notes.txt | 0
docs/{ => en}/xml/.cvsignore | 0
docs/{ => en}/xml/Bugzilla-Guide.xml | 25 +-
docs/{ => en}/xml/about.xml | 2 +-
docs/{ => en}/xml/administration.xml | 831 +++----
docs/en/xml/bugzilla.ent | 39 +
docs/{ => en}/xml/conventions.xml | 0
docs/{ => en}/xml/customization.xml | 8 -
docs/{ => en}/xml/gfdl.xml | 0
docs/{ => en}/xml/glossary.xml | 0
docs/{ => en}/xml/index.xml | 0
docs/{ => en}/xml/installation.xml | 910 +++++---
docs/{ => en}/xml/integration.xml | 0
docs/{ => en}/xml/introduction.xml | 0
docs/{ => en}/xml/modules.xml | 0
docs/{ => en}/xml/patches.xml | 0
docs/{ => en}/xml/requiredsoftware.xml | 0
docs/{ => en}/xml/security.xml | 12 +-
docs/{ => en}/xml/troubleshooting.xml | 18 +-
docs/{ => en}/xml/using.xml | 73 +-
docs/html/.cvsignore | 1 -
docs/html/api/.cvsignore | 3 -
docs/lib/Pod/Simple/HTMLBatch/Bugzilla.pm | 4 +-
docs/makedocs.pl | 87 +-
docs/{html/api => }/style.css | 0
docs/xml/faq.xml | 1676 --------------
duplicates.cgi | 2 +-
editclassifications.cgi | 54 +-
editcomponents.cgi | 290 +---
editfields.cgi | 45 +-
editflagtypes.cgi | 67 +-
editgroups.cgi | 497 ++---
editkeywords.cgi | 47 +-
editmilestones.cgi | 232 +--
editparams.cgi | 31 +-
editproducts.cgi | 92 +-
editsettings.cgi | 93 +-
editusers.cgi | 76 +-
editvalues.cgi | 186 +-
editversions.cgi | 57 +-
editwhines.cgi | 28 +-
editworkflow.cgi | 151 ++
email_in.pl | 89 +-
enter_bug.cgi | 195 +-
extensions/example/code/bug-end_of_update.pl | 56 +
extensions/example/code/buglist-columns.pl | 26 +
extensions/example/code/colchange-columns.pl | 27 +
extensions/example/code/config.pl | 26 +
extensions/example/code/flag-end_of_update.pl | 42 +
.../example/code/install-before_final_checks.pl | 28 +
extensions/example/code/product-confirm_delete.pl | 26 +
extensions/example/code/webservice-error_codes.pl | 25 +
extensions/example/code/webservice.pl | 25 +
extensions/example/info.pl | 41 +
extensions/example/lib/ConfigExample.pm | 41 +
extensions/example/lib/WSExample.pm | 32 +
.../en/default/admin/params/example.html.tmpl | 28 +
.../template/en/global/user-error-errors.html.tmpl | 12 +
images/favicon.ico | Bin 0 -> 4150 bytes
importxml.pl | 198 ++-
index.cgi | 6 +-
install-module.pl | 161 ++
js/field.js | 339 +++
js/help.js | 108 +
js/params.js | 61 +
js/productform.js | 425 ++--
js/util.js | 156 ++
js/yui/calendar.js | 16 +
js/yui/yahoo-dom-event.js | 10 +
lib/README | 4 +
long_list.cgi | 2 +-
mod_perl.pl | 4 +
page.cgi | 2 +-
post_bug.cgi | 35 +-
process_bug.cgi | 2347 ++++----------------
productmenu.js | 256 ---
query.cgi | 26 +-
quips.cgi | 24 +-
relogin.cgi | 2 +-
report.cgi | 7 +-
reports.cgi | 6 +-
request.cgi | 45 +-
runtests.pl | 1 +
sanitycheck.cgi | 503 +++--
sanitycheck.pl | 116 +
search_plugin.cgi | 2 +-
show_activity.cgi | 4 +-
show_bug.cgi | 4 +-
showattachment.cgi | 2 +-
showdependencygraph.cgi | 75 +-
showdependencytree.cgi | 6 +-
sidebar.cgi | 2 +-
skins/.cvsignore | 1 -
skins/contrib/Dusk/.cvsignore | 17 +
skins/contrib/Dusk/buglist.css | 24 +
skins/contrib/Dusk/global.css | 279 +++
skins/standard/IE-fixes.css | 2 +-
skins/standard/admin.css | 75 +
skins/standard/buglist.css | 4 +
skins/standard/editusers.css | 14 +
skins/standard/global.css | 78 +-
skins/standard/global/calendar.png | Bin 0 -> 718 bytes
skins/standard/help.css | 41 +
skins/standard/params.css | 6 +
skins/standard/show_bug.css | 75 +
skins/standard/yui/calendar.css | 7 +
skins/standard/yui/sprite.png | Bin 0 -> 3123 bytes
summarize_time.cgi | 322 +--
t/001compile.t | 22 +-
t/004template.t | 16 +-
t/006spellcheck.t | 6 +
t/007util.t | 5 +-
t/008filter.t | 6 +-
t/Support/Files.pm | 1 +
.../en/default/account/auth/login-small.html.tmpl | 3 +-
template/en/default/account/auth/login.html.tmpl | 3 +-
template/en/default/account/cancel-token.txt.tmpl | 11 +-
template/en/default/account/create.html.tmpl | 28 +-
template/en/default/account/created.html.tmpl | 8 +-
.../en/default/account/email/change-new.txt.tmpl | 5 +-
.../en/default/account/email/change-old.txt.tmpl | 3 +-
.../en/default/account/email/confirm-new.html.tmpl | 29 +-
.../en/default/account/email/confirm.html.tmpl | 1 -
.../en/default/account/email/request-new.txt.tmpl | 30 +-
.../account/password/forgotten-password.txt.tmpl | 5 +-
.../password/set-forgotten-password.html.tmpl | 1 -
.../en/default/account/prefs/account.html.tmpl | 7 +-
template/en/default/account/prefs/email.html.tmpl | 1 -
.../en/default/account/prefs/permissions.html.tmpl | 7 +-
template/en/default/account/prefs/prefs.html.tmpl | 4 +-
.../default/account/prefs/saved-searches.html.tmpl | 33 +-
.../en/default/account/prefs/settings.html.tmpl | 1 -
.../en/default/account/profile-activity.html.tmpl | 3 +-
template/en/default/admin/admin.html.tmpl | 131 ++
.../en/default/admin/classifications/add.html.tmpl | 1 -
.../en/default/admin/classifications/del.html.tmpl | 1 -
.../default/admin/classifications/edit.html.tmpl | 1 -
.../en/default/admin/classifications/new.html.tmpl | 32 -
.../admin/classifications/reclassify.html.tmpl | 1 -
.../default/admin/classifications/select.html.tmpl | 1 -
.../default/admin/classifications/update.html.tmpl | 41 -
.../admin/components/confirm-delete.html.tmpl | 4 +-
.../en/default/admin/components/create.html.tmpl | 9 +-
.../en/default/admin/components/created.html.tmpl | 41 -
.../en/default/admin/components/deleted.html.tmpl | 59 -
.../en/default/admin/components/edit.html.tmpl | 4 +-
.../en/default/admin/components/footer.html.tmpl | 1 -
.../en/default/admin/components/list.html.tmpl | 1 -
.../admin/components/select-product.html.tmpl | 1 -
.../en/default/admin/components/updated.html.tmpl | 98 -
template/en/default/admin/confirm-action.html.tmpl | 7 +-
.../admin/custom_fields/confirm-delete.html.tmpl | 66 +
.../default/admin/custom_fields/create.html.tmpl | 5 +-
.../en/default/admin/custom_fields/edit.html.tmpl | 17 +-
.../en/default/admin/custom_fields/list.html.tmpl | 24 +-
.../admin/fieldvalues/confirm-delete.html.tmpl | 27 +-
.../en/default/admin/fieldvalues/create.html.tmpl | 35 +-
.../en/default/admin/fieldvalues/created.html.tmpl | 37 -
.../en/default/admin/fieldvalues/deleted.html.tmpl | 36 -
.../en/default/admin/fieldvalues/edit.html.tmpl | 20 +-
.../en/default/admin/fieldvalues/footer.html.tmpl | 14 +-
.../en/default/admin/fieldvalues/list.html.tmpl | 11 +-
.../admin/fieldvalues/select-field.html.tmpl | 1 -
.../en/default/admin/fieldvalues/updated.html.tmpl | 55 -
.../admin/flag-type/confirm-delete.html.tmpl | 19 +-
template/en/default/admin/flag-type/edit.html.tmpl | 32 +-
template/en/default/admin/flag-type/list.html.tmpl | 8 +-
template/en/default/admin/groups/change.html.tmpl | 111 -
.../default/admin/groups/confirm-remove.html.tmpl | 66 +
template/en/default/admin/groups/create.html.tmpl | 27 +-
template/en/default/admin/groups/created.html.tmpl | 38 -
template/en/default/admin/groups/delete.html.tmpl | 2 +-
template/en/default/admin/groups/deleted.html.tmpl | 38 -
template/en/default/admin/groups/edit.html.tmpl | 321 ++--
template/en/default/admin/groups/list.html.tmpl | 2 +-
template/en/default/admin/groups/remove.html.tmpl | 62 -
.../admin/keywords/confirm-delete.html.tmpl | 4 +-
.../en/default/admin/keywords/create.html.tmpl | 1 -
.../en/default/admin/keywords/created.html.tmpl | 36 -
template/en/default/admin/keywords/edit.html.tmpl | 3 +-
template/en/default/admin/keywords/list.html.tmpl | 3 +-
.../default/admin/keywords/rebuild-cache.html.tmpl | 56 -
.../admin/milestones/confirm-delete.html.tmpl | 6 +-
.../en/default/admin/milestones/create.html.tmpl | 1 -
.../en/default/admin/milestones/created.html.tmpl | 44 -
.../en/default/admin/milestones/deleted.html.tmpl | 58 -
.../en/default/admin/milestones/edit.html.tmpl | 3 +-
.../en/default/admin/milestones/footer.html.tmpl | 1 -
.../en/default/admin/milestones/list.html.tmpl | 1 -
.../admin/milestones/select-product.html.tmpl | 1 -
.../en/default/admin/milestones/updated.html.tmpl | 51 -
template/en/default/admin/params/admin.html.tmpl | 1 -
.../en/default/admin/params/attachment.html.tmpl | 34 +-
template/en/default/admin/params/auth.html.tmpl | 14 +-
.../en/default/admin/params/bugchange.html.tmpl | 29 +-
.../en/default/admin/params/bugfields.html.tmpl | 1 -
template/en/default/admin/params/bugmove.html.tmpl | 1 -
template/en/default/admin/params/common.html.tmpl | 71 +-
template/en/default/admin/params/core.html.tmpl | 8 +-
.../default/admin/params/dependencygraph.html.tmpl | 1 -
.../en/default/admin/params/editparams.html.tmpl | 3 +-
.../default/admin/params/groupsecurity.html.tmpl | 3 +-
template/en/default/admin/params/index.html.tmpl | 1 -
template/en/default/admin/params/l10n.html.tmpl | 46 -
template/en/default/admin/params/ldap.html.tmpl | 9 +-
template/en/default/admin/params/mta.html.tmpl | 7 +-
.../en/default/admin/params/patchviewer.html.tmpl | 1 -
template/en/default/admin/params/query.html.tmpl | 3 +-
template/en/default/admin/params/radius.html.tmpl | 54 +
.../en/default/admin/params/shadowdb.html.tmpl | 1 -
.../en/default/admin/params/usermatch.html.tmpl | 1 -
.../admin/products/confirm-delete.html.tmpl | 3 +-
.../en/default/admin/products/create.html.tmpl | 1 -
.../en/default/admin/products/created.html.tmpl | 36 -
.../en/default/admin/products/deleted.html.tmpl | 50 -
.../default/admin/products/edit-common.html.tmpl | 3 +-
template/en/default/admin/products/edit.html.tmpl | 21 +-
.../en/default/admin/products/footer.html.tmpl | 1 -
.../products/groupcontrol/confirm-edit.html.tmpl | 1 -
.../admin/products/groupcontrol/edit.html.tmpl | 3 +-
.../admin/products/groupcontrol/updated.html.tmpl | 1 -
.../admin/products/list-classifications.html.tmpl | 1 -
template/en/default/admin/products/list.html.tmpl | 1 -
.../en/default/admin/products/updated.html.tmpl | 9 +-
.../en/default/admin/sanitycheck/list.html.tmpl | 37 +
.../default/admin/sanitycheck/messages.html.tmpl | 330 +++
template/en/default/admin/settings/edit.html.tmpl | 6 +-
.../en/default/admin/settings/updated.html.tmpl | 27 -
template/en/default/admin/sudo.html.tmpl | 5 +-
template/en/default/admin/table.html.tmpl | 3 +-
.../default/admin/users/confirm-delete.html.tmpl | 136 +-
template/en/default/admin/users/create.html.tmpl | 2 +-
template/en/default/admin/users/edit.html.tmpl | 31 +-
template/en/default/admin/users/list.html.tmpl | 4 +-
.../default/admin/users/listselectvars.html.tmpl | 1 -
.../default/admin/users/responsibilities.html.tmpl | 61 +
template/en/default/admin/users/search.html.tmpl | 2 +-
template/en/default/admin/users/userdata.html.tmpl | 9 +-
.../admin/versions/confirm-delete.html.tmpl | 1 -
.../en/default/admin/versions/create.html.tmpl | 1 -
.../en/default/admin/versions/created.html.tmpl | 43 -
.../en/default/admin/versions/deleted.html.tmpl | 41 -
template/en/default/admin/versions/edit.html.tmpl | 3 +-
.../en/default/admin/versions/footer.html.tmpl | 1 -
template/en/default/admin/versions/list.html.tmpl | 1 -
.../admin/versions/select-product.html.tmpl | 1 -
.../en/default/admin/versions/updated.html.tmpl | 45 -
.../en/default/admin/workflow/comment.html.tmpl | 92 +
template/en/default/admin/workflow/edit.html.tmpl | 110 +
.../attachment/cancel-create-dupe.html.tmpl | 48 +
template/en/default/attachment/choose.html.tmpl | 1 -
.../en/default/attachment/confirm-delete.html.tmpl | 9 +-
.../en/default/attachment/content-types.html.tmpl | 1 -
template/en/default/attachment/create.html.tmpl | 20 +-
template/en/default/attachment/created.html.tmpl | 42 +-
.../attachment/createformcontents.html.tmpl | 1 -
.../en/default/attachment/delete_reason.txt.tmpl | 5 +-
template/en/default/attachment/diff-file.html.tmpl | 56 +-
.../en/default/attachment/diff-footer.html.tmpl | 1 -
.../en/default/attachment/diff-header.html.tmpl | 24 +-
template/en/default/attachment/edit.html.tmpl | 82 +-
template/en/default/attachment/list.html.tmpl | 7 +-
template/en/default/attachment/midair.html.tmpl | 78 +
.../en/default/attachment/show-multiple.html.tmpl | 3 +-
template/en/default/attachment/updated.html.tmpl | 34 +-
template/en/default/bug/activity/show.html.tmpl | 25 +-
template/en/default/bug/activity/table.html.tmpl | 5 +-
template/en/default/bug/choose.html.tmpl | 1 -
template/en/default/bug/comments.html.tmpl | 141 +-
.../en/default/bug/create/comment-guided.txt.tmpl | 3 +-
template/en/default/bug/create/comment.txt.tmpl | 1 -
.../bug/create/confirm-create-dupe.html.tmpl | 1 -
.../en/default/bug/create/create-guided.html.tmpl | 58 +-
template/en/default/bug/create/create.html.tmpl | 299 ++--
template/en/default/bug/create/created.html.tmpl | 8 +-
.../en/default/bug/create/make-template.html.tmpl | 1 -
.../en/default/bug/create/user-message.html.tmpl | 1 -
template/en/default/bug/dependency-graph.html.tmpl | 48 +-
template/en/default/bug/dependency-tree.html.tmpl | 4 +-
template/en/default/bug/edit.html.tmpl | 1356 +++++++-----
template/en/default/bug/field.html.tmpl | 58 +-
template/en/default/bug/knob.html.tmpl | 258 +--
template/en/default/bug/navigate.html.tmpl | 18 +-
template/en/default/bug/process/bugmail.html.tmpl | 1 -
.../bug/process/confirm-duplicate.html.tmpl | 1 -
template/en/default/bug/process/header.html.tmpl | 8 +-
template/en/default/bug/process/midair.html.tmpl | 14 +-
template/en/default/bug/process/results.html.tmpl | 1 -
.../bug/process/verify-new-product.html.tmpl | 218 ++-
template/en/default/bug/show-multiple.html.tmpl | 24 +-
template/en/default/bug/show.html.tmpl | 24 +-
template/en/default/bug/show.xml.tmpl | 28 +-
template/en/default/bug/summarize-time.html.tmpl | 165 +-
template/en/default/bug/time.html.tmpl | 1 -
template/en/default/bug/votes/delete-all.html.tmpl | 1 -
.../en/default/bug/votes/list-for-bug.html.tmpl | 1 -
.../en/default/bug/votes/list-for-user.html.tmpl | 16 +-
template/en/default/config.js.tmpl | 12 +-
template/en/default/config.rdf.tmpl | 59 +-
template/en/default/email/newchangedmail.txt.tmpl | 10 +-
.../sanitycheck.txt.tmpl} | 23 +-
template/en/default/email/sudo.txt.tmpl | 3 +-
template/en/default/email/votes-removed.txt.tmpl | 3 +-
template/en/default/email/whine.txt.tmpl | 21 +-
template/en/default/filterexceptions.pl | 68 +-
template/en/default/flag/list.html.tmpl | 81 +-
template/en/default/global/banner.html.tmpl | 1 -
.../default/global/choose-classification.html.tmpl | 1 -
.../en/default/global/choose-product.html.tmpl | 1 -
template/en/default/global/code-error.html.tmpl | 34 +-
template/en/default/global/common-links.html.tmpl | 43 +-
.../en/default/global/confirm-action.html.tmpl | 63 +
.../en/default/global/confirm-user-match.html.tmpl | 18 +-
template/en/default/global/docslinks.html.tmpl | 3 +-
template/en/default/global/field-descs.none.tmpl | 126 +-
template/en/default/global/footer.html.tmpl | 1 -
template/en/default/global/header.html.tmpl | 43 +-
template/en/default/global/help-header.html.tmpl | 91 -
template/en/default/global/help.html.tmpl | 14 +-
template/en/default/global/hidden-fields.html.tmpl | 1 -
template/en/default/global/initialize.none.tmpl | 1 -
template/en/default/global/js-products.html.tmpl | 11 +-
template/en/default/global/message.html.tmpl | 1 -
template/en/default/global/message.txt.tmpl | 1 -
template/en/default/global/messages.html.tmpl | 412 ++++-
.../en/default/global/per-bug-queries.html.tmpl | 3 +-
template/en/default/global/select-menu.html.tmpl | 1 -
template/en/default/global/setting-descs.none.tmpl | 4 +-
.../en/default/global/site-navigation.html.tmpl | 26 +-
template/en/default/global/tabs.html.tmpl | 1 -
template/en/default/global/textarea.html.tmpl | 1 -
template/en/default/global/useful-links.html.tmpl | 64 +-
template/en/default/global/user-error.html.tmpl | 286 ++-
template/en/default/global/userselect.html.tmpl | 32 +-
template/en/default/global/variables.none.tmpl | 3 -
template/en/default/index.html.tmpl | 7 +-
template/en/default/list/change-columns.html.tmpl | 24 +-
template/en/default/list/edit-multiple.html.tmpl | 191 +-
template/en/default/list/list-simple.html.tmpl | 3 +-
template/en/default/list/list.atom.tmpl | 48 +-
template/en/default/list/list.csv.tmpl | 3 +-
template/en/default/list/list.html.tmpl | 68 +-
template/en/default/list/list.ics.tmpl | 5 +-
template/en/default/list/list.js.tmpl | 1 -
template/en/default/list/list.rdf.tmpl | 7 +-
template/en/default/list/quips.html.tmpl | 6 +-
template/en/default/list/server-push.html.tmpl | 1 -
template/en/default/list/table.html.tmpl | 52 +-
template/en/default/pages/bug-writing.html.tmpl | 1 -
template/en/default/pages/fields.html.tmpl | 69 +-
template/en/default/pages/linked.html.tmpl | 1 -
template/en/default/pages/linkify.html.tmpl | 1 -
template/en/default/pages/quicksearch.html.tmpl | 1 -
.../en/default/pages/quicksearchhack.html.tmpl | 35 +-
template/en/default/pages/release-notes.html.tmpl | 850 +++++++-
template/en/default/pages/sudo.html.tmpl | 1 -
template/en/default/pages/voting.html.tmpl | 7 +-
template/en/default/reports/chart.csv.tmpl | 1 -
template/en/default/reports/chart.html.tmpl | 1 -
template/en/default/reports/chart.png.tmpl | 1 -
template/en/default/reports/components.html.tmpl | 1 -
template/en/default/reports/create-chart.html.tmpl | 1 -
.../en/default/reports/duplicates-simple.html.tmpl | 1 -
.../en/default/reports/duplicates-table.html.tmpl | 1 -
template/en/default/reports/duplicates.html.tmpl | 7 +-
template/en/default/reports/duplicates.rdf.tmpl | 5 +-
template/en/default/reports/edit-series.html.tmpl | 1 -
template/en/default/reports/keywords.html.tmpl | 1 -
template/en/default/reports/menu.html.tmpl | 2 +-
template/en/default/reports/old-charts.html.tmpl | 8 +-
template/en/default/reports/report-bar.png.tmpl | 5 +-
template/en/default/reports/report-line.png.tmpl | 5 +-
template/en/default/reports/report-pie.png.tmpl | 3 +-
.../en/default/reports/report-simple.html.tmpl | 1 -
template/en/default/reports/report-table.csv.tmpl | 5 +-
template/en/default/reports/report-table.html.tmpl | 5 +-
template/en/default/reports/report.csv.tmpl | 1 -
template/en/default/reports/report.html.tmpl | 1 -
.../en/default/reports/series-common.html.tmpl | 1 -
template/en/default/reports/series.html.tmpl | 3 +-
template/en/default/request/email.txt.tmpl | 19 +-
template/en/default/request/queue.html.tmpl | 15 +-
.../en/default/search/boolean-charts.html.tmpl | 8 +-
template/en/default/search/form.html.tmpl | 12 +-
template/en/default/search/knob.html.tmpl | 1 -
.../en/default/search/search-advanced.html.tmpl | 34 +-
.../default/search/search-create-series.html.tmpl | 2 +-
template/en/default/search/search-help.html.tmpl | 1 -
template/en/default/search/search-plugin.xml.tmpl | 3 +-
.../default/search/search-report-graph.html.tmpl | 4 +-
.../default/search/search-report-select.html.tmpl | 1 -
.../default/search/search-report-table.html.tmpl | 4 +-
.../en/default/search/search-specific.html.tmpl | 1 -
template/en/default/search/tabs.html.tmpl | 1 -
template/en/default/setup/strings.txt.pl | 69 +
template/en/default/sidebar.xul.tmpl | 7 +-
template/en/default/welcome-admin.html.tmpl | 11 +-
template/en/default/whine/mail.html.tmpl | 7 +-
template/en/default/whine/mail.txt.tmpl | 7 +-
template/en/default/whine/multipart-mime.txt.tmpl | 1 -
template/en/default/whine/schedule.html.tmpl | 71 +-
testserver.pl | 14 +-
token.cgi | 34 +-
userprefs.cgi | 43 +-
votes.cgi | 20 +-
whine.pl | 15 +-
whineatnews.pl | 2 +-
xml.cgi | 2 +-
xmlrpc.cgi | 39 +-
513 files changed, 22035 insertions(+), 14534 deletions(-)
Diff: http://source.winehq.org/git/bugzilla.git/?a=commitdiff;h=e002e6fe6ed73d59c…
1
0
Module: bugzilla
Branch: master
Commit: 5b845939ebe1c3b88252f51522beb5787ebabf72
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=5b845939ebe1c3b88252f…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed May 13 14:38:41 2009 +0200
Merge branch 'upstream'.
Conflicts:
.cvsignore
docs/en/xml/.cvsignore
skins/.cvsignore
skins/standard/global.css
template/en/default/bug/edit.html.tmpl
template/en/default/email/newchangedmail.txt.tmpl
template/en/default/global/common-links.html.tmpl
template/en/default/global/header.html.tmpl
template/en/default/global/useful-links.html.tmpl
template/en/default/global/user-error.html.tmpl
template/en/default/index.html.tmpl
---
1
0
Alexandre Julliard : Merge branch 'master' of www.winehq.org:/home/winehq/ opt/source/git/bugzilla.
by Alexandre Julliard 13 May '09
by Alexandre Julliard 13 May '09
13 May '09
Module: bugzilla
Branch: master
Commit: 4177d8d1b960f88d151d4ca3136a0ec7a567568b
URL: http://source.winehq.org/git/bugzilla.git/?a=commit;h=4177d8d1b960f88d151d4…
Author: Alexandre Julliard <julliard(a)winehq.org>
Date: Wed May 13 18:04:29 2009 +0200
Merge branch 'master' of www.winehq.org:/home/winehq/opt/source/git/bugzilla.
Conflicts:
template/en/default/account/create.html.tmpl
template/en/default/bug/create/create.html.tmpl
---
1
0
Stefan Dösinger : wined3d: Separate Tx tempregs from Tx varyings in ARB.
by Alexandre Julliard 13 May '09
by Alexandre Julliard 13 May '09
13 May '09
Module: wine
Branch: master
Commit: 90526ce7617bf5da14a0b824046ceda42c77666c
URL: http://source.winehq.org/git/wine.git/?a=commit;h=90526ce7617bf5da14a0b8240…
Author: Stefan Dösinger <stefan(a)codeweavers.com>
Date: Fri May 8 17:14:56 2009 +0200
wined3d: Separate Tx tempregs from Tx varyings in ARB.
ps_1_3 uses Tx to pass in texture coordinates, but also as temporary
registers. ps_1_4 and ps_2_0 only use them for texture coordinates. This patch
gets rid of the Tx = fragment.texcoord[x] assign in all shader versions, and
doesn't even declare Tx in ps_1_4 and ps_2_0.
The <=ps_1_3 instructions know which kind of input they expect from the Tx
register, so the instruction handlers now know if they have to read the
tempreg Tx or the varying fragment.texcoord[x].
---
dlls/wined3d/arb_program_shader.c | 100 ++++++++++++++++++++++--------------
1 files changed, 61 insertions(+), 39 deletions(-)
Diff: http://source.winehq.org/git/wine.git/?a=commitdiff;h=90526ce7617bf5da14a0b…
1
0