tag:blogger.com,1999:blog-90257361117136248772026-04-18T20:05:47.354-07:00Random technical stuffDon't expect romance, you only get computing here.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.comBlogger92125tag:blogger.com,1999:blog-9025736111713624877.post-15869109053079280492026-04-14T03:21:00.000-07:002026-04-18T20:05:47.347-07:00Demystifying the LibreOffice VCL Coordinate Pipeline<p>I've been looking fairly closely at the coordinate system of VCL. I understood it fairly well, but as I have a Pro subscription of Gemini, I asked it to look at it for me to tell me how it thinks it works. Here is what it came up with:</p> <hr /> <p>If you’ve ever worked on a complex UI rendering engine, you know that placing a single pixel on the screen is rarely as simple as <code>draw(x, y)</code>. A single coordinate actually exists in several different "realities" simultaneously.</p> <p>In LibreOffice’s VCL (Visual Components Library), a coordinate has to travel through up to five distinct spatial dimensions to get from the mathematical purity of a document model to the physical LED pixels on your monitor.</p> <p>If you get an offset wrong or apply a scaling factor out of order, your text disappears off the page, your borders render fuzzy, or your PDF exports break entirely. To fix these issues and modernize the rendering stack, we have to establish a strict, predictable pipeline.</p> <p>Here is a deep dive into the five coordinate spaces of the LibreOffice VCL, and the math required to traverse them.</p> <h2>The 5 Coordinate Spaces</h2> <p>Think of these spaces as a series of nested Russian dolls. To get to the center (the document), you have to open them one by one.</p> <h3>1. Absolute Logic (Document Space)</h3> <p>This is the pure, mathematical space of the document itself.</p> <ul> <li><b>Units:</b> Defined by the <code>MapMode</code> (e.g., 1/100th of a millimeter for high-precision printing).</li> <li><b>Origin (0,0):</b> The absolute top-left corner of the page or document canvas.</li> <li><b>The Variable:</b> Represented simply as <code>nX</code> or <code>nY</code>.</li> </ul> <h3>2. Logic Units (Pipeline Space)</h3> <p>This is an intermediate staging area. The coordinate is still in logical document units, but it has been intentionally shifted.</p> <ul> <li><b>The Shift:</b> <code>mnOutOffLogic</code>.</li> <li><b>Why it exists:</b> This is an artificial shift applied to the document origin. It is frequently used when VCL needs to render a specific sub-section or "tile" of a document without actually changing the underlying coordinates of the objects themselves.</li> </ul> <h3>3. View Space (Viewport Space)</h3> <p>Welcome to the realm of pixels—specifically, pixels relative to the <i>viewport</i> (the scrollable area of the application).</p> <ul> <li><b>The Transformation:</b> To get here, we multiply the Logic Units by the DPI and Zoom scale (<code>mfMapScX / mfMapScY</code>).</li> <li><b>The Shift:</b> <code>mnMapOfsX / mnMapOfsY</code> (The Mapping Offset).</li> <li><b>Why it exists:</b> The origin (0,0) here is the top-left of your current scroll position. As you scroll down a Writer document, the mapping offset changes, shifting the view without altering the document.</li> </ul> <h3>4. Window Space (Client Space)</h3> <p>These are pixels relative to the GUI window frame itself.</p> <ul> <li><b>The Shift:</b> <code>mnOutOffOrigX / mnOutOffOrigY</code> (The VCL Pixel Offset).</li> <li><b>Why it exists:</b> The origin (0,0) is the top-left corner of the specific LibreOffice window or UI widget you are interacting with. VCL uses this offset internally to account for things like scrollbars, widget borders, or docking areas inside a window. This is the coordinate space where your mouse click events natively arrive.</li> </ul> <h3>5. Device Space (Physical Space)</h3> <p>The final destination. These are absolute pixels mapped to your physical hardware.</p> <ul> <li><b>The Shift:</b> <code>mnOutOffX / mnOutOffY</code> (The Screen Origin).</li> <li><b>Why it exists:</b> The origin (0,0) is the top-left corner of your physical monitor. This is the coordinate system that the underlying operating system graphics APIs (like CoreGraphics on macOS, Cairo on Linux, or GDI/DirectWrite on Windows) require to actually illuminate a pixel on your screen.</li> </ul> <hr /> <h2>The Mathematical Pipeline</h2> <p>To safely traverse these spaces without causing "double-subtraction" bugs or off-by-one pixel errors, we chain the transitions together in a strict sequence.</p> <p>Here is the <b>Forward Path</b> (converting a Document coordinate to a Physical Screen pixel):</p> <ol> <li><b>Absolute &rarr; Logic Units:</b> Add the logical offset.<br><code>LogicUnits = nX + mnOutOffLogicX</code></li> <li><b>Logic Units &rarr; View:</b> Apply the zoom scale, then add the scroll offset.<br><code>View = (LogicUnits * mfMapScX) + mnMapOfsX</code></li> <li><b>View &rarr; Window:</b> Add the internal VCL widget offset.<br><code>Window = View + mnOutOffOrigX</code></li> <li><b>Window &rarr; Device:</b> Add the physical screen position.<br><code>Device = Window + mnOutOffX</code></li> </ol> <p>When handling a mouse click, we run this exact pipeline in reverse (<b>The Inverse Path</b>), carefully subtracting the offsets and dividing by the scale to figure out exactly which 1/100th of a millimeter the user clicked on.</p> <h2>Why Sub-Pixel Accuracy Matters</h2> <p>Historically, rendering engines used integer math (<code>tools::Long</code>) for these transitions. If a line ended up at pixel <code>10.7</code>, it was truncated to <code>10</code>. For basic UI elements, this was fine.</p> <p>However, modern graphics rely heavily on anti-aliasing (B2D rendering) and high-fidelity vector exports (PDFs). If you truncate a coordinate too early in the pipeline, you lose the fractional data. When you eventually scale that truncated coordinate back up, that tiny fractional loss multiplies into massive visual artifacts—lines appear to "shimmer" when scrolling, or text glyphs collide with each other.</p> <p>By upgrading this pipeline to handle high-precision <code>double</code> math at every stage (Sub-Pixel stages), LibreOffice can pass mathematically perfect coordinates to the OS-level drawing APIs, ensuring that your documents look perfectly crisp at any zoom level.</p> <br /> <div style="text-align: center; margin: 40px 0;"> <button onclick="launchVCLVisualizer()" style="padding: 14px 28px; font-size: 18px; font-weight: bold; cursor: pointer; background-color: #0056b3; color: white; border: none; border-radius: 8px; box-shadow: 0 4px 10px rgba(0,0,0,0.2); transition: background-color 0.2s;"> Launch the Interactive VCL Visualizer </button> </div> <script> function launchVCLVisualizer() { var htmlContent = document.getElementById("vcl-demo-source").value; var popup = window.open("", "VCLVisualizer", "width=1200,height=850,menubar=no,toolbar=no,location=no,status=no,resizable=yes,scrollbars=no"); popup.document.open(); popup.document.write(htmlContent); popup.document.close(); } </script> <textarea id="vcl-demo-source" style="display:none;"> <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>VCL Coordinate Space Visualizer</title> <style> body { margin: 0; padding: 0; background-color: #333; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; color: #333; overflow: hidden; } #desktop { position: relative; width: 100vw; height: 100vh; background-image: radial-gradient(#555 1px, transparent 1px); background-size: 20px 20px; } #desktop-label { position: absolute; top: 10px; left: 10px; color: #888; font-size: 24px; font-weight: bold; pointer-events: none; } #hud { position: absolute; top: 20px; right: 20px; background: rgba(255, 255, 255, 0.95); border: 1px solid #999; padding: 15px; border-radius: 5px; font-family: "Courier New", Courier, monospace; font-size: 14px; pointer-events: none; box-shadow: 0 4px 15px rgba(0,0,0,0.3); line-height: 1.4; z-index: 9999; } .hud-title { font-weight: bold; color: #0056b3; margin-bottom: 5px; border-bottom: 1px solid #ccc; padding-bottom: 3px;} .hud-value { font-weight: bold; color: #d93025; } .hud-grid { display: grid; grid-template-columns: 200px auto; gap: 5px; } #controls { position: absolute; bottom: 20px; left: 20px; background: rgba(255, 255, 255, 0.95); border: 1px solid #999; padding: 12px 15px; border-radius: 5px; box-shadow: 0 4px 15px rgba(0,0,0,0.3); z-index: 9999; font-family: monospace; font-size: 12px; width: 320px; } .control-group { margin-bottom: 6px; display: flex; align-items: center; justify-content: space-between; } .control-group label { display: inline-block; width: 180px; } .control-group input { width: 130px; } .control-group input[type="checkbox"] { width: auto; margin-right: 110px;} .control-header { font-weight: bold; color: #555; margin-top: 8px; margin-bottom: 4px; border-bottom: 1px dashed #ccc; } #vcl-window { position: absolute; top: 100px; left: 360px; width: 800px; height: 600px; min-width: 300px; min-height: 200px; background-color: #f0f0f0; border: 1px solid #000; border-radius: 8px; box-shadow: 0 10px 30px rgba(0,0,0,0.5); display: flex; flex-direction: column; overflow: hidden; } #title-bar { background: linear-gradient(to bottom, #eaeaea, #d0d0d0); border-bottom: 1px solid #aaa; padding: 10px; cursor: grab; font-weight: bold; text-align: center; user-select: none; flex-shrink: 0; } #title-bar:active { cursor: grabbing; } #middle-row { display: flex; flex: 1; overflow: hidden; } #viewport { flex: 1; overflow: auto; position: relative; background-color: #ddd; } #document-canvas { display: block; background-color: #fff; box-shadow: 2px 2px 10px rgba(0,0,0,0.1); } #sidebar { display: none; width: 250px; background-color: #ececec; border-left: 1px solid #aaa; box-shadow: -2px 0 5px rgba(0,0,0,0.05); padding: 15px; box-sizing: border-box; font-family: sans-serif; font-size: 14px; color: #444; flex-shrink: 0; overflow-y: auto; } #status-bar { display: none; height: 25px; background-color: #eaeaea; border-top: 1px solid #aaa; padding: 0 10px; font-family: sans-serif; font-size: 12px; line-height: 25px; color: #555; flex-shrink: 0; } #resize-handle { position: absolute; right: 0; bottom: 0; width: 16px; height: 16px; background: linear-gradient(135deg, transparent 50%, #888 50%); cursor: nwse-resize; z-index: 100; } </style> </head> <body> <div id="desktop"> <div id="desktop-label">Device Space (Monitor)</div> <div id="controls"> <div class="hud-title">Coordinate Pipeline Variables</div> <div class="control-header">UI Layout (Chrome)</div> <div class="control-group"><label>Show Sidebar:</label><input type="checkbox" id="check-sidebar"></div> <div class="control-group"><label>Show Status Bar:</label><input type="checkbox" id="check-statusbar"></div> <div class="control-header">Device &lt;-&gt; Window (Physical)</div> <div class="control-group"><label>Offset X:</label><input type="range" id="slider-dev-x" min="0" max="1000" value="360"></div> <div class="control-group"><label>Offset Y:</label><input type="range" id="slider-dev-y" min="0" max="800" value="100"></div> <div class="control-header">Total Window Bounds</div> <div class="control-group"><label>Total Width:</label><input type="range" id="slider-win-w" min="300" max="1500" value="800"></div> <div class="control-group"><label>Total Height:</label><input type="range" id="slider-win-h" min="200" max="1000" value="600"></div> <div class="control-header">Window &lt;-&gt; View (Scroll)</div> <div class="control-group"><label>Offset X:</label><input type="range" id="slider-win-x" min="-1200" max="0" value="0"></div> <div class="control-group"><label>Offset Y:</label><input type="range" id="slider-win-y" min="-1400" max="0" value="0"></div> <div class="control-header">View &lt;-&gt; Logic (MapMode)</div> <div class="control-group"><label>Scale Factor:</label><input type="range" id="slider-scale" min="0.5" max="3.0" step="0.1" value="1.5"></div> <div class="control-header">Logic &lt;-&gt; Absolute Logic</div> <div class="control-group"><label>Offset X:</label><input type="range" id="slider-abs-x" min="-500" max="500" value="0"></div> <div class="control-group"><label>Offset Y:</label><input type="range" id="slider-abs-y" min="-500" max="500" value="0"></div> </div> <div id="hud"> <div class="hud-title">VCL Internal State (CoordinateMapper)</div> Output Bounds (mnOutWidth) : <span id="val-out-w" class="hud-value">800</span> px<br> Output Bounds (mnOutHeight): <span id="val-out-h" class="hud-value">600</span> px<br><br> <div class="hud-title">VCL Target Point Pipeline</div> <div class="hud-grid"> <span>1. Absolute Logic Space:</span> <span id="val-abs" class="hud-value">(500, 500)</span> <span>&nbsp;&nbsp;+ Logic&lt;-&gt;Abs Offset:</span> <span id="val-abs-offset" style="color:#666">(0, 0)</span> <span>2. Logic Space:</span> <span id="val-logic" class="hud-value">(500, 500)</span> <span>&nbsp;&nbsp;* View&lt;-&gt;Logic Scale:</span> <span id="val-scale-hud" style="color:#666">1.5x</span> <span>3. View Space:</span> <span id="val-view" class="hud-value">(750, 750)</span> <span>&nbsp;&nbsp;+ Window&lt;-&gt;View Offset:</span> <span id="val-win-offset" style="color:#666">(0, 0)</span> <span>4. Window Units:</span> <span id="val-window" class="hud-value">(750, 750)</span> <span>&nbsp;&nbsp;+ Device&lt;-&gt;Window Offset:</span> <span id="val-dev-offset" style="color:#666">(0, 0)</span> <span>5. Device Pixels:</span> <span id="val-device" class="hud-value">(0, 0)</span> </div> </div> <div id="vcl-window"> <div id="title-bar">VCL Window (Drag Me)</div> <div id="middle-row"> <div id="viewport"> <canvas id="document-canvas" width="2500" height="2500"></canvas> </div> <div id="sidebar"> <strong>Properties</strong><hr><p>Character<br>Paragraph<br>Area</p> <strong>Gallery</strong><hr><p>Arrows<br>Flowchart<br>Icons</p> </div> </div> <div id="status-bar"> Page 1 of 1 &nbsp;|&nbsp; 0 words &nbsp;|&nbsp; Default Style &nbsp;|&nbsp; English (Australia) </div> <div id="resize-handle"></div> </div> </div> <script> const vclState = { targetAbsX: 500, targetAbsY: 500, logicToAbsX: 0, logicToAbsY: 0, scaleFactor: 1.5, windowToViewX: 0, windowToViewY: 0, deviceToWindowX: 360, deviceToWindowY: 100, outWidth: 800, outHeight: 600 }; const vclWindow = document.getElementById('vcl-window'); const titleBar = document.getElementById('title-bar'); const viewport = document.getElementById('viewport'); const canvas = document.getElementById('document-canvas'); const resizeHandle = document.getElementById('resize-handle'); const ctx = canvas.getContext('2d'); const checkSidebar = document.getElementById('check-sidebar'); const checkStatusbar = document.getElementById('check-statusbar'); const sidebar = document.getElementById('sidebar'); const statusbar = document.getElementById('status-bar'); const sliderDevX = document.getElementById('slider-dev-x'); const sliderDevY = document.getElementById('slider-dev-y'); const sliderWinW = document.getElementById('slider-win-w'); const sliderWinH = document.getElementById('slider-win-h'); const sliderWinX = document.getElementById('slider-win-x'); const sliderWinY = document.getElementById('slider-win-y'); const sliderScale = document.getElementById('slider-scale'); const sliderAbsX = document.getElementById('slider-abs-x'); const sliderAbsY = document.getElementById('slider-abs-y'); function drawChart() { ctx.setTransform(1, 0, 0, 1, 0, 0); ctx.clearRect(0, 0, canvas.width, canvas.height); ctx.scale(vclState.scaleFactor, vclState.scaleFactor); ctx.translate(vclState.logicToAbsX, vclState.logicToAbsY); ctx.strokeStyle = '#eee'; ctx.lineWidth = 1; for(let i=-500; i<=2000; i+=100) { ctx.beginPath(); ctx.moveTo(i, -500); ctx.lineTo(i, 2000); ctx.stroke(); ctx.beginPath(); ctx.moveTo(-500, i); ctx.lineTo(2000, i); ctx.stroke(); } ctx.strokeStyle = '#333'; ctx.lineWidth = 3; ctx.beginPath(); ctx.moveTo(100, 100); ctx.lineTo(100, 1500); ctx.lineTo(1500, 1500); ctx.stroke(); const colors = ['#4a90e2', '#50e3c2', '#b8e986', '#f5a623']; colors.forEach((color, i) => { const x = 200 + (i * 200); const height = 300 * (i + 1); const y = 1500 - height; ctx.fillStyle = color; ctx.fillRect(x, y, 150, height); ctx.strokeRect(x, y, 150, height); }); ctx.fillStyle = 'red'; ctx.beginPath(); ctx.arc(vclState.targetAbsX, vclState.targetAbsY, 8 / vclState.scaleFactor, 0, Math.PI * 2); ctx.fill(); ctx.stroke(); ctx.font = `bold ${16 / vclState.scaleFactor}px Arial`; ctx.fillText("Target Point", vclState.targetAbsX + (15 / vclState.scaleFactor), vclState.targetAbsY + (5 / vclState.scaleFactor)); } function updateMetrics() { vclState.deviceToWindowX = vclWindow.offsetLeft; vclState.deviceToWindowY = vclWindow.offsetTop + titleBar.offsetHeight; vclState.outWidth = viewport.clientWidth; vclState.outHeight = viewport.clientHeight; vclState.windowToViewX = -viewport.scrollLeft; vclState.windowToViewY = -viewport.scrollTop; sliderDevX.value = vclState.deviceToWindowX; sliderDevY.value = vclWindow.offsetTop; sliderWinW.value = vclWindow.offsetWidth; sliderWinH.value = vclWindow.offsetHeight; sliderWinX.value = vclState.windowToViewX; sliderWinY.value = vclState.windowToViewY; const absX = vclState.targetAbsX; const absY = vclState.targetAbsY; const logicX = absX + vclState.logicToAbsX; const logicY = absY + vclState.logicToAbsY; const viewX = logicX * vclState.scaleFactor; const viewY = logicY * vclState.scaleFactor; const windowX = viewX + vclState.windowToViewX; const windowY = viewY + vclState.windowToViewY; const deviceX = windowX + vclState.deviceToWindowX; const deviceY = windowY + vclState.deviceToWindowY; document.getElementById('val-out-w').innerText = vclState.outWidth; document.getElementById('val-out-h').innerText = vclState.outHeight; document.getElementById('val-abs').innerText = `(${absX.toFixed(0)}, ${absY.toFixed(0)})`; document.getElementById('val-abs-offset').innerText = `(${vclState.logicToAbsX}, ${vclState.logicToAbsY})`; document.getElementById('val-logic').innerText = `(${logicX.toFixed(0)}, ${logicY.toFixed(0)})`; document.getElementById('val-scale-hud').innerText = `${vclState.scaleFactor}x`; document.getElementById('val-view').innerText = `(${viewX.toFixed(0)}, ${viewY.toFixed(0)})`; document.getElementById('val-win-offset').innerText = `(${vclState.windowToViewX}, ${vclState.windowToViewY})`; document.getElementById('val-window').innerText = `(${windowX.toFixed(0)}, ${windowY.toFixed(0)})`; document.getElementById('val-dev-offset').innerText = `(${vclState.deviceToWindowX}, ${vclState.deviceToWindowY})`; document.getElementById('val-device').innerText = `(${deviceX.toFixed(0)}, ${deviceY.toFixed(0)})`; } checkSidebar.addEventListener('change', (e) => { sidebar.style.display = e.target.checked ? 'block' : 'none'; updateMetrics(); }); checkStatusbar.addEventListener('change', (e) => { statusbar.style.display = e.target.checked ? 'block' : 'none'; updateMetrics(); }); sliderDevX.addEventListener('input', (e) => { vclWindow.style.left = e.target.value + 'px'; updateMetrics(); }); sliderDevY.addEventListener('input', (e) => { vclWindow.style.top = e.target.value + 'px'; updateMetrics(); }); sliderWinW.addEventListener('input', (e) => { vclWindow.style.width = e.target.value + 'px'; updateMetrics(); }); sliderWinH.addEventListener('input', (e) => { vclWindow.style.height = e.target.value + 'px'; updateMetrics(); }); sliderWinX.addEventListener('input', (e) => { viewport.scrollLeft = -e.target.value; updateMetrics(); }); sliderWinY.addEventListener('input', (e) => { viewport.scrollTop = -e.target.value; updateMetrics(); }); sliderScale.addEventListener('input', (e) => { vclState.scaleFactor = parseFloat(e.target.value); drawChart(); updateMetrics(); }); sliderAbsX.addEventListener('input', (e) => { vclState.logicToAbsX = parseInt(e.target.value); drawChart(); updateMetrics(); }); sliderAbsY.addEventListener('input', (e) => { vclState.logicToAbsY = parseInt(e.target.value); drawChart(); updateMetrics(); }); let isDragging = false, dragOffsetX = 0, dragOffsetY = 0; titleBar.addEventListener('mousedown', (e) => { isDragging = true; dragOffsetX = e.clientX - vclWindow.offsetLeft; dragOffsetY = e.clientY - vclWindow.offsetTop; }); let isResizing = false, startWidth = 0, startHeight = 0, startX = 0, startY = 0; resizeHandle.addEventListener('mousedown', (e) => { isResizing = true; startWidth = vclWindow.offsetWidth; startHeight = vclWindow.offsetHeight; startX = e.clientX; startY = e.clientY; e.preventDefault(); }); document.addEventListener('mousemove', (e) => { if (isDragging) { vclWindow.style.left = (e.clientX - dragOffsetX) + 'px'; vclWindow.style.top = (e.clientY - dragOffsetY) + 'px'; updateMetrics(); } else if (isResizing) { vclWindow.style.width = (startWidth + e.clientX - startX) + 'px'; vclWindow.style.height = (startHeight + e.clientY - startY) + 'px'; updateMetrics(); } }); document.addEventListener('mouseup', () => { isDragging = false; isResizing = false; }); viewport.addEventListener('scroll', updateMetrics); new ResizeObserver(() => updateMetrics()).observe(vclWindow); drawChart(); updateMetrics(); </script> </textarea>Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-24298258072631170282024-11-29T02:48:00.006-08:002024-11-29T14:58:45.576-08:00The mess that is the VCL<p>&nbsp;Let me count the ways, in no particular order and in no way exhaustive:</p><ul style="text-align: left;"><li>OutputDevice is the base class for printing, windowing and PDFs. It doesn't just do output.&nbsp;</li><li>OutputDevice has GetOutDevType() because the base class needs to know what child class is using it. Ugh.&nbsp;</li><li>OutputDevice drawing primitives not only draw, but they record a metafile. There are literally functions that turn off drawing and just let it record the metafile. I made an attempt at seperating the concerns, but it got nowhere.&nbsp;</li><li>VCL relies on DrawingLayer and DrawingLayer relies on the VCL.&nbsp;</li><li>There is a concept of a VirtualDevice, which is derived from OutputDevice. VirtualDevice does a bunch of things, but one of which is alpha-handling. In OutputDevice, there is a member which is a VirtualDevice. Each drawing function in Outputdevice calls upon the correlated drawing function in this member VirtualDevice. <br /></li><li>Bitmaps don't get modified via the Bitmap class. Instead, you have to use BitmapInfoAccess, BitmapReadAccess and BitmapWriteAccess. I'm still puzzling out why these are seperate classes.&nbsp;</li><li>Bitmaps are transformed in SalGraphics indirectly via OutputDevice. Except when they aren't, in which case it fails, whereby OutputDevice tries an alternative way via SalGraphics. Otherwise, it tries its own poor man approach at drawing the bitmap. Consequently, often times you bypass the platform optimized ways of doing things, because its not been implemented. <br /></li><li>Fonts are lazy loaded from OutputDevice. There is no central font manager. To get the fonts, you have to go through SalGraphics. To get a SalGraphics, you need to initialize a lot of stuff not related to fonts.&nbsp;</li><li>Font caching is done from OutputDevice. Lazily. Font data is updated for all frames. Frames are a concept needed for Windows. Frames are not a concept needed by Printers and VirtualDevices, or even PDFs. Note that Printers, VirtualDevices and PDFs all inherit from OutputDevice.&nbsp; <br /></li><li>OutputDevice converts between "logical" units and display units. It's a nightmare to know what each function needs what sort of units. For the mapping between units, I refer you to vcl/source/gdi/mapmod.cxx and vcl/source/outdev/map.cxx</li><li>There is tools and basegfx. They do the same thing, though basegfx is considerably better written. You have Size and B2DSize, Point and B2DPoint, Polygon and B2DPolygon, PolyPolygon and B2DPolyPolygon. OutputDevice must handle it all.&nbsp;</li><li>Gradient handling is sort of half baked in OutputDevice, much of gradient handling is done in other modules.&nbsp; <br /></li><li>Font substitution is truly, truly weird. PhysicalFontSelect::FindFontFamilyByAttributes() has clearly got a bug in it - (e.g. <span style="font-family: courier;">ImplFontAttrs::None == ((nSearchType ^ nMatchType) &amp; ImplFontAttrs::Rounded</span> an XOR?) and it is a truly strange weighting scheme. Yes, I did try to untangle that beast with proper unit tests, but gave up after being told I was being unreasonable.&nbsp;</li><li>There is VCL, canvas, cppcanvas and drawinglayer. drawinglayer is way better than VCL, but we are stuck with VCL for everything.&nbsp;</li><li>Consider the following Window hierarchy: WorkWindow inherits from SystemWindow, which inherits from Window. Window holds an OutputDevice to do stuff. WindowOutputDevice derives from OutputDevice. This is needed because OutputDevice often needs to know if it is doing Window operations, via WindowOutputDevice. Try untangling this in your head. <br /></li><li>Text layout is its own beast, and has its own set of classes. A lot of text layout is worked out in OutputDevice.&nbsp; <br /></li><li>Text layout is done via OutputDevice::ImplLayout(). I present to you the ImplLayout function signature:<br /><br /><pre><span class="scope-head" id="scope_id_f12661ff"><span class="scope-body" id="scope_id_fc944b26_fold"><span class="scope-head" id="scope_id_9c2594a5"><span class="scope-head" id="scope_id_d8dce203"><span class="scope-head" id="scope_id_cc2d6bb1"><span class="scope-body" id="scope_id_ce8b9021_fold"><span class="scope-head" id="scope_id_84d794d4"><span class="scope-head" id="scope_id_7ecfc3e6"><span class="scope-head" id="scope_id_845ff545"><span class="scope-head" id="scope_id_a5cb4585"><span class="scope-head" id="scope_id_25dcb9a0"><span class="scope-head" id="scope_id_39acc5a"><span class="scope-head" id="scope_id_e0823645"><span class="scope-head" id="scope_id_d8ec4cb3"><span class="scope-head" id="scope_id_b1094a26"><span class="scope-head" id="scope_id_32cbc7c9"> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=unique_ptr&amp;project=core">unique_ptr</a>&lt;<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=SalLayout&amp;project=core">SalLayout</a>&gt; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=ImplLayout&amp;project=core">ImplLayout</a>( <b>const</b> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=OUString&amp;project=core">OUString</a>&amp;, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Int32&amp;project=core">sal_Int32</a> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nIndex&amp;project=core">nIndex</a>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Int32&amp;project=core">sal_Int32</a> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nLen&amp;project=core">nLen</a>, <b>const</b> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=Point&amp;project=core">Point</a>&amp; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=rLogicPos&amp;project=core">rLogicPos</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=Point&amp;project=core">Point</a>(<span class="n">0</span>, <span class="n">0</span>), <a class="d intelliWindow-symbol" data-definition-place="defined-in-file" href="https://opengrok.libreoffice.org/xref/core/include/vcl/outdev.hxx?r=d8f430e4#tools">tools</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=Long&amp;project=core">Long</a> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nLogicWidth&amp;project=core">nLogicWidth</a> = <span class="n">0</span>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=KernArraySpan&amp;project=core">KernArraySpan</a> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=aKernArray&amp;project=core">aKernArray</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=KernArraySpan&amp;project=core">KernArraySpan</a>(), <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=span&amp;project=core">span</a>&lt;<b>const</b> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Bool&amp;project=core">sal_Bool</a>&gt; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=pKashidaArray&amp;project=core">pKashidaArray</a> = {}, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=SalLayoutFlags&amp;project=core">SalLayoutFlags</a> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=flags&amp;project=core">flags</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=SalLayoutFlags&amp;project=core">SalLayoutFlags</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=NONE&amp;project=core">NONE</a>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=vcl&amp;project=core">vcl</a>::<a class="d intelliWindow-symbol" data-definition-place="defined-in-file" href="https://opengrok.libreoffice.org/xref/core/include/vcl/outdev.hxx?r=d8f430e4#text">text</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=TextLayoutCache&amp;project=core">TextLayoutCache</a> <b>const</b>* = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nullptr&amp;project=core">nullptr</a>, <b>const</b> <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=SalLayoutGlyphs&amp;project=core">SalLayoutGlyphs</a>* <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=pGlyphs&amp;project=core">pGlyphs</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nullptr&amp;project=core">nullptr</a>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=optional&amp;project=core">optional</a>&lt;<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Int32&amp;project=core">sal_Int32</a>&gt; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nDrawOriginCluster&amp;project=core">nDrawOriginCluster</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nullopt&amp;project=core">nullopt</a>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=optional&amp;project=core">optional</a>&lt;<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Int32&amp;project=core">sal_Int32</a>&gt; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nDrawMinCharPos&amp;project=core">nDrawMinCharPos</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nullopt&amp;project=core">nullopt</a>, <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=optional&amp;project=core">optional</a>&lt;<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=sal_Int32&amp;project=core">sal_Int32</a>&gt; <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nDrawEndCharPos&amp;project=core">nDrawEndCharPos</a> = <a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=std&amp;project=core">std</a>::<a class="intelliWindow-symbol" data-definition-place="undefined-in-file" href="https://opengrok.libreoffice.org/s?defs=nullopt&amp;project=core">nullopt</a>) <b>const</b>;</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span><span class="scope-head" id="scope_id_f12661ff"><span class="scope-body" id="scope_id_fc944b26_fold"><span class="scope-head" id="scope_id_9c2594a5"><span class="scope-head" id="scope_id_d8dce203"><span class="scope-head" id="scope_id_cc2d6bb1"><span class="scope-body" id="scope_id_ce8b9021_fold"><span class="scope-head" id="scope_id_84d794d4"><span class="scope-head" id="scope_id_7ecfc3e6"><span class="scope-head" id="scope_id_845ff545"><span class="scope-head" id="scope_id_a5cb4585"><span class="scope-head" id="scope_id_25dcb9a0"><span class="scope-head" id="scope_id_39acc5a"><span class="scope-head" id="scope_id_e0823645"><span class="scope-head" id="scope_id_d8ec4cb3"><span class="scope-head" id="scope_id_b1094a26"><span class="scope-head" id="scope_id_32cbc7c9">&nbsp;</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></pre><pre><span class="scope-head" id="scope_id_f12661ff"><span class="scope-body" id="scope_id_fc944b26_fold"><span class="scope-head" id="scope_id_9c2594a5"><span class="scope-head" id="scope_id_d8dce203"><span class="scope-head" id="scope_id_cc2d6bb1"><span class="scope-body" id="scope_id_ce8b9021_fold"><span class="scope-head" id="scope_id_84d794d4"><span class="scope-head" id="scope_id_7ecfc3e6"><span class="scope-head" id="scope_id_845ff545"><span class="scope-head" id="scope_id_a5cb4585"><span class="scope-head" id="scope_id_25dcb9a0"><span class="scope-head" id="scope_id_39acc5a"><span class="scope-head" id="scope_id_e0823645"><span class="scope-head" id="scope_id_d8ec4cb3"><span class="scope-head" id="scope_id_b1094a26"><span class="scope-head" id="scope_id_32cbc7c9">&nbsp;</span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></span></pre></li></ul>Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-18818529707771946932021-09-08T01:30:00.002-07:002021-09-08T01:30:39.041-07:00Separating metafile processing from rendering in OutputDevice<p>The OutputDevice class is what we use for rendering a whole host of different things, and other classes inherit from it to do their rendering. Notably a little while ago Noel Grandin separated OutputDevice from Window, which is a huge boon for the codebase!</p><p>In an attempt to further separate the concerns of OutputDevice, I noticed a long time ago that not only does it do rendering, but it records actions in a metafile. These are two related and yet quite separate things. My goal is to shift out the rendering into a RenderContext class. I have already got a <a href="https://github.com/chrissherlock/libreoffice-experimental/tree/RenderContext2" target="_blank">PoC on GitHub</a>, which has already done much of the work, albeit in a messier way (basically it was a test to see if this was even feasible).&nbsp;&nbsp;</p><p>Obviously migrating rendering functionality into its own class is not something to take lightly, so I have been writing smaller patches that test out the code. When I say "small", I really mean this. Currently I am testing out a bunch of code that sets state in OutputDevice, which can be found in the <a href="https://gerrit.libreoffice.org/q/topic:%22outdevstate%22+(status:open%20OR%20status:merged)">outdevstate topic branch</a> in gerrit.&nbsp;</p><p>Along with test the state functions of OutputDevice, I am also adding some tests to the bitmap functionality of OutputDevice. I recently landed a patch to move GetDownsampledBitmap() out of OutputDevice and into BitmapTools.cxx because it really didn't need to completely rely on OutputDevice. This bit of code will hopefully one day migrate it's way into the VCL backend modules. You can monitor the progress I'm making via the <a href="https://gerrit.libreoffice.org/q/topic:%22bitmap%22+(status:open%20OR%20status:merged)">bitmap topic branch</a> in gerrit.&nbsp;</p><p>I have to say that writing tests is not always easy. Often there is no easy way of accessing the functions, especially if they are private, but luckily most of the functions are protected so I can at least write a mock class to expose these functions without having to modify the code.</p><p>Currently I have the following topic branches:</p><ul style="text-align: left;"><li><a href="https://gerrit.libreoffice.org/q/topic:%22outdevstate%22+(status:open%20OR%20status:merged)" target="_blank">outdevstate</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22bitmap%22+(status:open%20OR%20status:merged)" target="_blank">bitmap</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22text%22+(status:open%20OR%20status:merged)" target="_blank">text</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22font%22+(status:open%20OR%20status:merged)">font</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22animation%22+(status:open%20OR%20status:merged)" target="_blank">animation</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22image%22+(status:open%20OR%20status:merged)" target="_blank">image</a></li><li><a href="https://gerrit.libreoffice.org/q/topic:%22printer%22+(status:open%20OR%20status:merged)" target="_blank">printer</a><br /></li></ul><p><br /></p>Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-88327705970509377602019-11-13T00:11:00.002-08:002019-11-13T00:11:26.794-08:00Drawing in OutputDeviceFor a long time now I have noticed that OutputDevice is a class that is tightly coupled to drawing primitives such a pixels, lines, rectangles, etc. To draw new primitives in OutputDevice, you need to change the interface by adding another function, often you need to add new private functions, etc.<br /> <br /> I have never been entirely comfortable with this - I believe that we shouldn't vary the OutputDevice class, but instead the functionality should be implemented in a <a href="https://en.wikipedia.org/wiki/Command_pattern">command pattern</a>. In a command pattern, you use an object to encapsulate the functionality used to perform an action. What this means is that OutputDevice no longer needs to know how to directly draw a line, pixel, rectangle or any other primitive we throw at it - this is all done in the command object. I call these OutputDevice <i>Drawables</i>. It turns out, I find it easier to test a command object.<br /> <br /> In fact, the more I rewrote code to use the command pattern, the more I found that we were using a particular sequence of actions in most of our drawing functions:<br /> <br /> <ol> <li>Add action to GDI metafile&nbsp;</li> <li>Can we draw? No - exit&nbsp;</li> <li>Initialize the clipping region if possible&nbsp;</li> <li>Initialize the object's color&nbsp;</li> <li>Initialize the object's fill color&nbsp;</li> <li>Acquire the SalGraphics instance&nbsp;</li> <li><span style="color: red;">Do the actual drawing!</span>&nbsp;</li> <li>Paint alpha virtual device</li> </ol> When I realised this, I decided to follow the principle of encapsulating what was varying - point 7 - the actual drawing. Everything else was the same - at least so I initially thought. It turns out this is not the case all the time, so I allowed two things - a function that can be overridden that tells the Drawable that the step should be bypassed, and in the case where we need to through <i>all</i> this scaffolding out the window a way of bypassing it entirely. However, this is an example of a <a href="https://en.wikipedia.org/wiki/Template_method_pattern">template method pattern</a>.<br /> <br /> You can see the base work for this in a <a href="https://gerrit.libreoffice.org/#/c/82452/">gerrit patch</a> I submitted today. To use the actually command pattern is very easy: if there is not an existing function like DrawPixel in OutputDevice, you just have to invoke the command object via OutputDevice::Draw(Drawable* pDrawable). An <a href="https://gerrit.libreoffice.org/plugins/gitiles/core/+/refs/changes/52/82452/6/vcl/qa/cppunit/DrawableTest.cxx">example</a> can be found in the unit test.<br /> <br /> To implement a new command, you just derive from Drawable - the simplest Drawable class you can define only needs a constructor with the parameters you would normally send to a Draw command in OutputDevice (e.g. PixelDrawable only needs a Point sent to the constructor), and you implement the actually drawing in DrawCommand(OutputDevice* pRenderContext).<br /> <br /> A few things I found helped me when I created Drawables - I quite like passing parameters to functions, I'm not a huge fan of a lot of state in the class. Drawables work because they essentially work by calling the Execute function, this handles all the basic drawing for you on the state you set in the constructor. I have found in some <a href="https://github.com/chrissherlock/libreoffice-experimental/tree/drawables2">patches that I have on github</a> that the functionality is somewhat complex, for this I have extract function to simplify test and readability of the code (an example of this is GradientDrawable - see <a href="https://github.com/chrissherlock/libreoffice-experimental/blob/drawables2/vcl/source/drawables/GradientDrawable.cxx">GradientDrawable.cxx</a> and <a href="https://github.com/chrissherlock/libreoffice-experimental/blob/drawables2/vcl/source/drawables/GradientDrawableHelper.cxx">GradientDrawableHelper.cxx</a>).<br /> Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-43370233244054111842018-02-11T03:07:00.002-08:002018-02-11T03:13:05.237-08:00Netflix don't know their own security processesOn the 9th February, unbeknownst to me, my wife accidentally typed in the wrong password several times into Netflix.<br /> <br /> I then got an email from Netflix:<br /> <div class="separator" style="clear: both; text-align: center;"> </div> <br /> <table border="0" cellpadding="0" cellspacing="0" class="content" style="background-color: white; color: #221f1f; font-family: Helvetica, Arial, sans; font-size: 12px; text-size-adjust: auto; width: 100%px;"><tbody> <tr><td align="center" class="logo" style="padding: 46px 0px 0px;"><a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhu6acTuFMpZXVPLVL4jncFNF-NtwLGWxEbJb6l_2DWqLuPWURpzzntwZMlecHjPyJoT5zRcbhGdfNCks3h0EjjxANrpcsUlzPlNsv-jhH8frdTlKPfs41ZIWFy6DnOhaqwQrizmDMFDpPh/s1600/logo_v2.png" imageanchor="0" style="margin-left: 1em; margin-right: 1em;"><img border="0" data-original-height="76" data-original-width="280" height="53" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhu6acTuFMpZXVPLVL4jncFNF-NtwLGWxEbJb6l_2DWqLuPWURpzzntwZMlecHjPyJoT5zRcbhGdfNCks3h0EjjxANrpcsUlzPlNsv-jhH8frdTlKPfs41ZIWFy6DnOhaqwQrizmDMFDpPh/s200/logo_v2.png" width="200" /></a></td></tr> <tr><td class="headline" style="font-size: 32px; font-weight: bold; line-height: 36px; padding: 40px 90px 10px;">Password reset required<span class="Apple-converted-space">&nbsp;</span></td></tr> <tr><td class="copy" style="-webkit-font-smoothing: antialiased; font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, &quot;Segoe UI&quot;, sans-serif; font-size: 18px; line-height: 24px; padding: 22px 90px 0px;">Dear CHRISTOPHER,<span class="Apple-converted-space">&nbsp;</span></td></tr> <tr><td class="copy" style="-webkit-font-smoothing: antialiased; font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, &quot;Segoe UI&quot;, sans-serif; font-size: 18px; line-height: 24px; padding: 22px 90px 0px;">We’ve detected a suspicious sign-in to your Netflix account. Just to be safe we've reset your password and you’ll need to set a new one.<span class="Apple-converted-space">&nbsp;</span></td></tr> <tr><td class="button-shell" style="padding: 22px 90px 0px;"><table border="0" cellpadding="0" cellspacing="0" class="button red"><tbody> <tr><td style="background-color: #e50914; border-bottom-left-radius: 2px; border-bottom-right-radius: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; color: white; max-width: 265px; padding: 10px 16px;">SET A NEW PASSWORD</td></tr> </tbody></table> </td></tr> <tr><td class="copy" style="-webkit-font-smoothing: antialiased; font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, &quot;Segoe UI&quot;, sans-serif; font-size: 18px; line-height: 24px; padding: 22px 90px 0px;">Use the button above or type<span class="Apple-converted-space">&nbsp;</span><a href="http://www.netflix.com/" style="font-family: Helvetica, Arial, sans;">www.netflix.com</a><span class="Apple-converted-space">&nbsp;</span>into your browser, click on “sign in”, and then click “forgot your email or password.” Follow the instructions to set a new password.<span class="Apple-converted-space">&nbsp;</span></td></tr> <tr><td class="copy" style="-webkit-font-smoothing: antialiased; font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, &quot;Segoe UI&quot;, sans-serif; font-size: 18px; line-height: 24px; padding: 22px 90px 0px;">If you have any questions we are here to help. Visit the<span class="Apple-converted-space">&nbsp;</span><a href="https://help.netflix.com/support/56461?lnktrk=EMP&amp;g=50E29A9468B8D6EDBCE02367FACF7DCD64529BF0&amp;lkid=URL_HELP" style="font-family: Helvetica, Arial, sans;">Help Center</a><span class="Apple-converted-space">&nbsp;</span>for more info or<span class="Apple-converted-space">&nbsp;</span><a href="https://help.netflix.com/contactus?lnktrk=EMP&amp;g=50E29A9468B8D6EDBCE02367FACF7DCD64529BF0&amp;lkid=URL_CONTACT" style="font-family: Helvetica, Arial, sans;">contact us</a>.<span class="Apple-converted-space">&nbsp;</span></td></tr> <tr><td class="copy" style="-webkit-font-smoothing: antialiased; font-family: &quot;Helvetica Neue&quot;, Helvetica, Roboto, &quot;Segoe UI&quot;, sans-serif; font-size: 18px; line-height: 24px; padding: 22px 90px 0px;">–The Netflix Team</td></tr> </tbody></table> <br /> I spoke to 4 seperate people, and they all say that this is a "phishing email" as there is no way that Netflix can ever reset the password from their end - apparently only customers can initiate password resets.<br /> <br /> I got pretty annoyed as I take security fairly seriously, and if someone had compromised my account, I'd like to know more about it. So I test what I'm being told by Customer Service, and find the following link:<br /> <br /> <a href="https://help.netflix.com/en/node/56461">https://help.netflix.com/en/node/56461</a><br /> <br /> This reads:<br /> <br /> <div style="background-color: #f3f3f3; box-sizing: border-box; color: #333333; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 14px; margin-bottom: 10px; margin-top: 10px;"> We will occasionally email our members encouraging them to change their account passwords as a precautionary measure. These emails are usually sent in response to username and password breaches at other companies, phishing schemes, observed suspicious account behavior, or malware attacks.</div> <div style="background-color: #f3f3f3; box-sizing: border-box; color: #333333; font-family: &quot;Helvetica Neue&quot;, Helvetica, Arial, sans-serif; font-size: 14px; margin-bottom: 10px; margin-top: 10px;"> In these instances, we will notify you that we have reset your password; however, some of the devices you own may stay signed in for your convenience. You will have the option to automatically sign out of all devices when you set up a new password. If you used the same password for any other online sites, we recommend that you also change your password for those accounts.</div> <br /> So the last guy I speak to talks over the top of me, and says "you just don't get it". So I ask for a supervisor. I wait for 40 minutes (I'm quite a determined guy) and whilst I'm waiting I go online. The following is the chat transcript<br /> <br /> tl;dr basically "Jason" tells me that they never initiate password resets and that I'm looking at a phishing email (which I'm not, and I prove by sending him the message headers), that I'm reading the Netflix article "out of context" (???), and he will ask to have it updated.<br /> <br /> <div class="cse-chat-line customer problem-desc" id="cse-chat-line-2d26ddf0-0f12-11e8-97fa-02712f8016f8" style="background-color: #edecec; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="margin-bottom: 6px;"> Your issue is:&nbsp;<span class="cse-line-text" style="font-weight: bold;">rude and inaccurate customer service</span></div> </div> <div class="cse-chat-line customer " id="cse-chat-line-2d2b4ac0-0f12-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> </div> <div class="cse-chat-line system " id="cse-chat-line-2d381c0a-0f12-11e8-9d12-06fdd636e956" style="background-color: #dedbdb; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-text"> You are now chatting with: Jason</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-31bd2ef0-0f12-11e8-b319-02183a208060" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> <br /> hi Jason</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-33eabd50-0f12-11e8-b22b-066f9aad7e74" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Hi! :)</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-3838e1c0-0f12-11e8-9b73-021028ab2968" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> I'm sorry to hear that.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3a88c530-0f12-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I'm on the phone right now</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-4549c2d0-0f12-11e8-abf5-02a418342948" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> On behalf of Netflix please forgive us for that experience.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-4add86a0-0f12-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> four customer service reps have now told me it is impossible for me to get an email saying due to suspicious activity Netflix reset my password</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-4f864e30-0f12-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> one of them was a supervisor</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-58edaf40-0f12-11e8-9b72-026ad6c92430" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> I just hope a resolution was provided for the concern you're calling about.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-5e8c6f90-0f12-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> who just talked over the top of me, didn't know what he was talking about and accused me "you just don't get it"</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-62f0db20-0f12-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> no, I'm still on the line!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-6ba8e960-0f12-11e8-af5a-0ad4f7cf3716" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> what, precisely, don't I get?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-732df5e0-0f12-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> they insisted it must have come from "hackers" or someone hit the reset password link</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-74c22a70-0f12-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> and it didn't</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-79b7b270-0f12-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> is this the sort of customer service Netflix gives?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-81eed0e0-0f12-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> that's literally four reps who don't believe Netflix can change my password</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-854ca1e0-0f12-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> https://help.netflix.com/en/node/56461</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-86e8c5b0-0f12-11e8-b105-02a9bc452748" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Can you tell me exactly what happened?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-8d88f070-0f12-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I even got the last guy to read it, and he STILL didn't believe this could happen</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-907ab930-0f12-11e8-add9-026019432c5e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Actually we can't.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-96155ad0-0f12-11e8-9cf2-028ad2a3bd4c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We don't have access.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-9a90d0d0-0f12-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> actually, you can't but Netflix can</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-9af8ba60-0f12-11e8-ac8f-066fe2a487d6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We can only send you a reset link.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-a1727160-0f12-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> the email is "Dear CHRISTOPHER,<br /> We’ve detected a suspicious sign-in to your Netflix account. Just to be safe we've reset your password and you’ll need to set a new one."</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-a6eba850-0f12-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> so yes, Netflix can and will reset passwords</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-a7f6afb0-0f12-11e8-8427-0a2ec31f99ce" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We don't even have your passwords in our system.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-aeccde90-0f12-11e8-99ba-02f0a96d320e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> it even says so on your site:</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-af273390-0f12-11e8-bf4a-024088f9fbd4" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We don't keep records of passwords.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-af4bd290-0f12-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> In these instances, we will notify you that we have reset your password; however, some of the devices you own may stay signed in for your convenience. You will have the option to automatically sign out of all devices when you set up a new password. If you used the same password for any other online sites, we recommend that you also change your password for those accounts.</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-b3f86ab0-0f12-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> https://help.netflix.com/en/node/56461</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-c065b8c0-0f12-11e8-8614-0a1212229d82" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> That notification is totally taken out of context.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-c0ab2630-0f12-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> then why did Netflix send me an email telling me you had reset my password?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-c617b2f0-0f12-11e8-af5a-0ad4f7cf3716" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> and sure enough, my password was reset</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-cedabdb0-0f12-11e8-9f03-024cc188e00e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> The customer will have to initiate the password change.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-d21acd80-0f12-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> wrong</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-db2604d0-0f12-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> no, read that article on the Netflix website again!</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-e38e4560-0f12-11e8-8ea5-06ab2bb5e926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Then the system or representative will send a link to your email so that you can change the password.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-e5b9d7f0-0f12-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> it says "In these instances, we will notify you that we have reset your password"</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-ea16a260-0f12-11e8-af5a-0ad4f7cf3716" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> in other words, Netflix resets the password</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-ef5f7a80-0f12-11e8-b452-0656219ca6f4" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We can't really.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-f17f7450-0f12-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> can you explain how your own website says that?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-fd8219b0-0f12-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> yeah, then why does your own website say that Netflix can reset my password?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-05ff68e0-0f13-11e8-af5a-0ad4f7cf3716" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> https://help.netflix.com/en/node/56461</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-078dd110-0f13-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> have you read this?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-083f6dd0-0f13-11e8-9b72-026ad6c92430" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Again it's been taken out of context.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-0dfcb2a0-0f13-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> how?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-1244e3a0-0f13-11e8-b319-02183a208060" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I got an email that my password has been reset</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-16a2bf80-0f13-11e8-b452-0656219ca6f4" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> If you want I will provide feed back for you so that it can be revised.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-16d3e1a0-0f13-11e8-af5a-0ad4f7cf3716" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> and indeed, my password had been reset</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-1dc4c470-0f13-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> it doesn't need to be revised!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-209dae00-0f13-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> that's what actually happened!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-24056a10-0f13-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> why did I get that email then?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-28e0b350-0f13-11e8-b77a-0a259a0047f0" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Look, you made contact. You need assistance. I'm telling you how it works.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-30dfd1d0-0f13-11e8-9f03-024cc188e00e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Then let's figure it out.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-33b511e0-0f13-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> OK, if you are telling me how it works, then can you explain the email I received?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-3dbf90c0-0f13-11e8-9b72-026ad6c92430" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Have you lost access to your Netflix?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3e48bdf0-0f13-11e8-b1aa-061c5371e858" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> the email says:</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3f30acf0-0f13-11e8-b319-02183a208060" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> "Password reset required<br /> Dear CHRISTOPHER,<br /> We’ve detected a suspicious sign-in to your Netflix account. Just to be safe we've reset your password and you’ll need to set a new one.<br /> SET A NEW PASSWORD<br /> Use the button above or type www.netflix.com into your browser, click on “sign in”, and then click “forgot your email or password.” Follow the instructions to set a new password.<br /> If you have any questions we are here to help. Visit the Help Center for more info or contact us.<br /> –The Netflix Team"</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-4cb18de0-0f13-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> how is that "out of context"?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-54b7b140-0f13-11e8-9b72-026ad6c92430" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Ok this is clearly a phishing email.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-5add2dc0-0f13-11e8-8827-069f2de744b4" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> We do not send anything like that.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-5fdb6850-0f13-11e8-9fa9-0a35e38d9e4c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Test your account.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-69f6b010-0f13-11e8-a053-06c5fd0f706c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> SIGN OUT then SIGN IN. See if you have lost access.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-92b411f0-0f13-11e8-b319-02183a208060" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> nope, mail headers show it's from Netflix</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-9348fef0-0f13-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> Delivered-To: &lt;my email address&gt;<br /> Received: by 10.74.131.83 with SMTP id q19csp1869842oog;<br /> Thu, 8 Feb 2018 13:11:40 -0800 (PST)<br /> X-Google-Smtp-Source: AH8x227dnJIPEgqm2ezeY/9ZE3fAMeUmiYW42h0V/T2YOyFJMEzfnNE2+rIv9y58XO4qxaPrB4wd<br /> X-Received: by 10.55.214.65 with SMTP id t62mr536593qki.351.1518124300356;<br /> Thu, 08 Feb 2018 13:11:40 -0800 (PST)<br /> ARC-Seal: i=1; a=rsa-sha256; t=1518124300; cv=none;<br /> d=google.com; s=arc-20160816;<br /> b=xvZttTVW9UR+sy6tboHlwcnWhwgPIkCwg/pzu7Jku2nT0cVkX4OVqXHNAXbY79Ld1y<br /> 6xDIePeWfKnVHid+uT2ww8VPi1M4zzVleb8ofeyIcWRN3c8ySScC77jejsAUX4NbYDTK<br /> BUi4c+fHTkTvIgixnLNTHZE3S4jeyrdFsJsxX/gadhzvf4Pt1p72HIngPAh/iwB056rZ<br /> F2a+2pNzfRbe0XWy78rcs1x/jvjqGnRKz4CHg3blVgBkgPi8ocKh/8F+7futS2QLsdYi<br /> C2HuvUfXoE6hw3GJLfWAP/ltJini861Xv/Wdf0IDsqC17bPbb6UXDXZCd89EpyuvvFV8<br /> UjbA==<br /> ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816;<br /> h=feedback-id:list-unsubscribe:precedence:mime-version:subject<br /> :message-id:to:sender:from:date:dkim-signature:dkim-signature<br /> :arc-authentication-results;<br /> bh=oOAy3CiUxh+PbdPyEubLiydYu/fgIyh2XEBmyx49D7A=;<br /> b=TCbuJ7coONxCi5puG0qI7B7SGcR9FywSxGm5b03YqPJ7WppaTQNTT/VOu89q/FYqcu<br /> /8mr50OFwA2B1p9mzlJiAJvc1H44bs40RGqykoLb4wH/rTuQXl6YQLArlU5pNkuclK1v<br /> 6aCCH/Zn8Cthpf4MaR4k8wLuz18NX8gwfSaOvm6NS8sRcDvfyNEZwWDD4wfvA8ui7xbZ<br /> o7N2OQEeu50VH9e0KE9AP+/iYVndI0pb3o+GnPGgnB7kHoNoiy95qw4Y8r0P4BrSeF7o<br /> 7Lgh0DBB9RsIbh/vJgkw4t966fqn4C5JfsVmrzHTpVIusgzESqUHVNr9r2tr0K82lFAT<br /> Xf2A==<br /> ARC-Authentication-Results: i=1; mx.google.com;<br /> dkim=pass header.i=@netflix.com header.s=wsh2ycm5iultkbdysii4ijqi22uurzvv header.b=Ju48Kj89;<br /> dkim=pass&nbsp;<span class="highlight-red" style="color: #e50914;">[non-Netflix link blocked]</span>header.s=224i4yxa5dv7c2xz3womw6peuasteono header.b=avCLQKcv;<br /> spf=pass (google.com: domain of 010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com designates 54.240.14.187 as permitted sender) smtp.mailfrom=010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com;<br /> dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=netflix.com<br /> Return-Path: &lt;010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com&gt;<br /> Received: from&nbsp;<span class="highlight-red" style="color: #e50914;">[non-Netflix link blocked]</span>&nbsp;<span class="highlight-red" style="color: #e50914;">[non-Netflix link blocked]</span>&nbsp;[54.240.14.187])<br /> by&nbsp;<span class="highlight-red" style="color: #e50914;">[non-Netflix link blocked]</span>&nbsp;with ESMTPS id r6si57474qkb.470.2018.02.08.13.11.39<br /> for<br /> (version=TLS1 cipher=ECDHE-RSA-AES128-SHA bits=128/128);<br /> Thu, 08 Feb 2018 13:11:40 -0800 (PST)<br /> Received-SPF: pass (google.com: domain of 010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com designates 54.240.14.187 as permitted sender) client-ip=54.240.14.187;<br /> Authentication-Results: mx.google.com;<br /> dkim=pass header.i=@netflix.com header.s=wsh2ycm5iultkbdysii4ijqi22uurzvv header.b=Ju48Kj89;<br /> dkim=pass&nbsp;<span class="highlight-red" style="color: #e50914;">[non-Netflix link blocked]</span>header.s=224i4yxa5dv7c2xz3womw6peuasteono header.b=avCLQKcv;<br /> spf=pass (google.com: domain of 010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com designates 54.240.14.187 as permitted sender) smtp.mailfrom=010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@mailer.netflix.com;<br /> dmarc=pass (p=REJECT sp=REJECT dis=NONE) header.from=netflix.com<br /> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple;<br /> s=wsh2ycm5iultkbdysii4ijqi22uurzvv; d=netflix.com; t=1518124299;<br /> i=@mailer.netflix.com;<br /> h=Date:From:Sender:To:Message-ID:Subject:MIME-Version:Content-Type:List-Unsubscribe;<br /> bh=rlAIU4r//XJoOnUVbGdtJyKyUSgzLS4h9fyRpIYRwDM=;<br /> b=Ju48Kj89riXzwTCY5qLR2VOna/nF3YRgMbFfoTZBHuwohzdT4A0GnPqbKPCx7S8d<br /> mVmLmB/SDY7JbBaOa77Zi4P6BF7m/J9a4viHA2J0jYKaI+P0S3pe15ArXAAU0uAEsux<br /> l711QyDjDiEwiIDhKc4kFgf50L1DiXmtk/t/VyaI=<br /> DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/simple;<br /> s=224i4yxa5dv7c2xz3womw6peuasteono; d=amazonses.com; t=1518124299;<br /> h=Date:From:Sender:To:Message-ID:Subject:MIME-Version:Content-Type:List-Unsubscribe:Feedback-ID;<br /> bh=rlAIU4r//XJoOnUVbGdtJyKyUSgzLS4h9fyRpIYRwDM=;<br /> b=avCLQKcv9FVTs3xlGcfVJ4f88Nta3VGcn6ToUEDzfW9qpkcWpsAtD73vpIA8DoYZ<br /> Dr8qab2YVZORQGiyVv9isM6U5mGDra0mgWxxBgWS/hZreVsUrCCTOS2uVdgS3Q+j8s0<br /> 0MjI648Nhsnr6tBhEcoNdDMK5hS2LO1bGCgSzwyE=<br /> Date: Thu, 8 Feb 2018 21:11:39 +0000<br /> From: Netflix<br /> Sender: Netflix<br /> To: &lt;my email address&gt;<br /> Message-ID: &lt;010001617742739c-0daddaa6-5755-4638-ba13-3efbdad23cf8-000000@email.amazonses.com&gt;<br /> Subject: Netflix password reset required<br /> MIME-Version: 1.0<br /> Content-Type: multipart/alternative;<br /> boundary="----=_Part_132692_67010129.1518124299164"<br /> X-To: &lt;my email address&gt;<br /> Precedence: bulk<br /> X-AppInfo: Netflix Mercury s.54d3d7d.2535<br /> X-ProcEnc: BQAtAAEBEPvcm7MGMcMv7UifU3LjkkEQd/J3ASn5wkGSWcFnHH2ZTQ==<br /> X-MailingID: mercury::LR::12699::50E29A9468B8D6EDBCE02367FACF7DCD64529BF0::&lt;1617742739C@netflix.com&gt;<br /> X-GroupId: 4<br /> X-localeCountry: en::AU<br /> X-ProcInfo: TREADST</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-a16fbcd0-0f13-11e8-a122-06b3318b03ee" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You can't possibly trust that.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-ae030970-0f13-11e8-8614-0a1212229d82" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You've already spoken to several Netflix experts.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-b63c4ac0-0f13-11e8-9517-06dfb503ebb6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> yeah, I can actually, Gmail passed this</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-bb2aa6d0-0f13-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> you have DKIM and SPF setup</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-bdf40000-0f13-11e8-b242-0ad84b5b9194" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> that's definitely from you</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-c04f2e10-0f13-11e8-8dcf-0a5e189df678" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Why would we ask you to reset the password?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-c051ed30-0f13-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> how do I escalate this?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-ca536b60-0f13-11e8-9393-065579b39694" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Forward it to phishing@netflix.com</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-cc34ae80-0f13-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I've been on this phone call for 35 minutes now</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-d877df50-0f13-11e8-bf3d-0ab77dfdda3c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> They were providing you the correct info.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-e0072500-0f13-11e8-a053-06c5fd0f706c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Someone is trying to take over your account.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-e4bd8120-0f13-11e8-be2c-06d838154a82" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Trapping you to reset your password.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-e945a150-0f13-11e8-ac8f-066fe2a487d6" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> That is clearly not our process.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-fe94a5b0-0f13-11e8-b319-02183a208060" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> how do I get a technical person who knows what they are talking about?</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-0f6ca0e0-0f14-11e8-ae05-0af475ad7378" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You're chatting with one.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-164085d0-0f14-11e8-bf4a-024088f9fbd4" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You've spoken to others as well.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-1826aaf0-0f14-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> so to be clear, you have an article that says that security emails will be sent out that passwords are reset</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-1ece28b0-0f14-11e8-8652-0a3bb88ab926" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I've given you the headers, which show that it's come from your network</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-24728e50-0f14-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> there is no way to spoof those headers</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-25557440-0f14-11e8-a122-06b3318b03ee" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Those are notifications once you have reset the password.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-2853c020-0f14-11e8-b242-0ad84b5b9194" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> do you know what DKIM actually is?</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-2d0f4c60-0f14-11e8-97fa-02712f8016f8" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> no, it's not!</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-2d317a60-0f14-11e8-b64e-028ed66e42fe" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Can you answer this question for me.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3668a3b0-0f14-11e8-99ba-02f0a96d320e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> it's a notification that Netflix reset that password</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-36dc4d10-0f14-11e8-99ba-02f0a96d320e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> sure</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-37035d10-0f14-11e8-b8a6-02e4cb142eca" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Have you tried to SIGN OUT then SIGN IN?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3cc0f000-0f14-11e8-adca-0ab2f10d5820" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> I reset the password!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-3f51d410-0f14-11e8-b1aa-061c5371e858" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> from Netflix's site!</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-43d44ef0-0f14-11e8-ae05-0af475ad7378" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Did you get an error message that your password is wrong?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-462b8560-0f14-11e8-bc5d-02b7c62a340a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> the old password no longer worked!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-473b95d0-0f14-11e8-b242-0ad84b5b9194" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> yes!</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-4cebe250-0f14-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> no, that the username and password WAS wrong</div> </div> <div class="cse-chat-line customer " id="cse-chat-line-4f3c3af0-0f14-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> it had indeed been reset</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-54018b30-0f14-11e8-b8b8-0aa7a7676b46" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Then it's correct someone took over your account.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-57a05cd0-0f14-11e8-b692-0afabeeaf9f0" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You can see it.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-5f78b970-0f14-11e8-a230-06c280451332" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> and then they sent me an email that they had detected suspicious activity</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-601dd310-0f14-11e8-8dcf-0a5e189df678" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You'll be able to see RECENT ACCOUNT ACCESS.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-6d5798e0-0f14-11e8-b22b-066f9aad7e74" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> You'll see the IP ADDRESS, LOCATION, DEVICE. Date and TIME.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-76bef9f0-0f14-11e8-89dc-0af98941f60a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Did you check that out?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-b6e36ac0-0f14-11e8-8300-0ab8f5eef7cc" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> I see that you're already speaking to someone on the phone, do you still need me on this line?</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-dda08fd0-0f14-11e8-b242-0ad84b5b9194" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> they are literally contradicting you right now</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-fad13fa0-0f14-11e8-a122-06b3318b03ee" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Ok.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-62406f80-0f15-11e8-b692-0afabeeaf9f0" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Anything else that I can do for you today? :)</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line customer " id="cse-chat-line-80327380-0f15-11e8-892c-06bb1773a89a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> You</div> <div class="cse-line-text"> someone will be having a word with you soon</div> </div> <div class="cse-chat-line agent " id="cse-chat-line-866a1870-0f15-11e8-bb60-066b58ad5b5a" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> That's alright.</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-8f0528d0-0f15-11e8-a812-02ef7414d720" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> By the way I sent you a link to our Help Center just for your reference. It's like our own version of Google where you can just type keywords of your inquiries or even error codes and it will show you exactly what needs to be done!</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-92dc6f90-0f15-11e8-a053-06c5fd0f706c" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> Oh, for future reference please check this link. Please<br /> <a href="https://help.netflix.com/en/is-netflix-down" rel="nofollow" style="color: #0099ff; text-decoration-line: none;" target="_blank">Click Here</a>&nbsp;. Just a VERY important tip to save your time in the future, As long as you see that the servers are up on that link that means that the issue can be resolved by calling either your Internet service provider or you device manufacturer. I just want to make sure that you're fully equipped after this chat and I want to be able to still help out i:)</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-97bb8960-0f15-11e8-b22b-066f9aad7e74" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> and if you want to check on updates to our NEW movie releases and feature updates please follow us on FACEBOOK or TWITTER. You can also chat with us real time on those sites. :)</div> <div class="cse-line-red-band" style="background-color: #c91c00; bottom: 0px; left: 0px; position: absolute; top: 0px; width: 5px;"> </div> </div> <div class="cse-chat-line agent " id="cse-chat-line-aac1fd50-0f15-11e8-9f03-024cc188e00e" style="background-color: white; border-bottom: 2px solid rgb(237, 237, 237); color: #111111; font-family: arial, helvetica, clean, sans-serif; font-size: 14px; padding: 10px 12px; position: relative; word-wrap: break-word;"> <div class="cse-line-name" style="color: #aaaaaa; margin-bottom: 6px;"> <span class="cse-line-name-netflix" dir="LTR" style="color: #444444; font-weight: bold; padding-right: 10px;">Netflix&nbsp;</span>Jason</div> <div class="cse-line-text"> It's been a pleasure chatting with you, have a good one! CHEERS! :)</div> </div> Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-22117028270258655322017-01-03T16:59:00.000-08:002017-01-03T17:00:45.785-08:00Comprehensive logging in Windows Update in Windows 7If you want to turn on verbose logging for Windows Update and the Microsoft Installer, then you <i>could</i>&nbsp;follow <a href="https://support.microsoft.com/en-au/kb/2545723" target="_blank">KB&nbsp;2545723 -&nbsp;How to Enable Microsoft Installer logging and Verbose logging to gather additional troubleshooting Information</a>... or if you are masochistic enough then you can copy the following into a .reg file, then open this to import it into your registry:<br /> <br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">Windows Registry Editor Version 5.00</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:00000007</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Agent]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\ARP]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\AU]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\AUClnt]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\CDM]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\CltUI]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Cmpress]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\COMAPI]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\CPL]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\DnldMgr]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Driver]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\DtaStor]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\EEHndlr]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Handler]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Inv]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Misc]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\OfflSnc]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Parser]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Perf,]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\PT]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Report]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Services]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="background-color: white; color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Setup]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Shutdwn]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\Trace]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\TraceTestMain]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\TraceTestThreads]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\WUApp]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\WuRedir]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace\WUWeb]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:000000ff</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\Installer]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Logging"<span style="color: red;">=</span>"voicewarmupx"&nbsp;</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Debug"<span style="color: red;">=</span>dword:00000007</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;"><br /></span> <span style="color: blue; font-family: &quot;verdana&quot; , sans-serif;">[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\Trace]</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Flags"<span style="color: red;">=</span>dword:00000016</span><br /> <span style="font-family: &quot;verdana&quot; , sans-serif;">"Level"<span style="color: red;">=</span>dword:00000004</span><br /> <br /> Every 200MB or so, it truncates the file and starts again, so you will also need to open Powershell and run the following:<br /> <br /> <pre class="lang-bsh prettyprint prettyprinted" style="background-color: #eff0f1; border: 0px; font-family: Consolas, Menlo, Monaco, &quot;Lucida Console&quot;, &quot;Liberation Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, monospace, sans-serif; font-size: 13px; margin-bottom: 1em; max-height: 600px; overflow: auto; padding: 5px; width: auto; word-wrap: normal;"><code style="border: 0px; font-family: Consolas, Menlo, Monaco, &quot;Lucida Console&quot;, &quot;Liberation Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Bitstream Vera Sans Mono&quot;, &quot;Courier New&quot;, monospace, sans-serif; margin: 0px; padding: 0px; white-space: inherit;"><span class="typ" style="border: 0px; color: #2b91af; margin: 0px; padding: 0px;">Get</span><span class="pun" style="border: 0px; color: #303336; margin: 0px; padding: 0px;">-</span><span class="typ" style="border: 0px; color: #2b91af; margin: 0px; padding: 0px;">Content</span><span class="pln" style="border: 0px; color: #303336; margin: 0px; padding: 0px;"> </span><span class="pun" style="border: 0px; color: #303336; margin: 0px; padding: 0px;">-</span><span class="typ" style="border: 0px; color: #2b91af; margin: 0px; padding: 0px;">Path</span><span class="pln" style="border: 0px; color: #303336; margin: 0px; padding: 0px;"> </span><span class="str" style="border: 0px; color: #7d2727; margin: 0px; padding: 0px;">"C:\Windows\WindowsUpdate.log"</span><span class="pln" style="border: 0px; color: #303336; margin: 0px; padding: 0px;"> </span><span class="pun" style="border: 0px; color: #303336; margin: 0px; padding: 0px;">-</span><span class="typ" style="border: 0px; color: #2b91af; margin: 0px; padding: 0px;">Wait &gt; </span><span class="typ" style="border: 0px; margin: 0px; padding: 0px;"><span style="color: purple;">"C:\output\giganticlogfile.log"</span></span></code></pre> Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-33665674170997750772016-05-21T01:57:00.000-07:002016-05-21T01:57:48.631-07:00#wikipedia-en-unblock<span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:23+1000] chris_wot (~chris_wot@203-217-39-91.dyn.iinet.net.au) joined the channel</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:23+1000] Topic is This is the channel for requesting a block review on the English Wikipedia | For help, type !admin followed by your question - we will see it | Unblock discussion logs may be published | If you are not here to request an unblock for yourself, please leave the channel | UTRS: http://utrs.wmflabs.org | If an admin declines your appeal, please do not persist in asking.</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:23+1000] Set by Snowolf on 16 December 2014 at 4:32:25 AM AEDT</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:23+1000] -ChanServ- &nbsp;Unblock discussion logs may be published. If you are not here to request an unblock for your account or IP address, please *do not idle* here.</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:23+1000] Website is https://en.wikipedia.org/wiki/Wikipedia:Appealing_a_block</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:24+1000] Mode is +CFcgjntz 5:60</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:36+1000] <chris_wot> hello, it's Ta bu shi da yu here</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:30:51+1000] <chris_wot> would someone please be will to have a chat about my block please?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:32:00+1000] &lt;+Huon&gt; hello chris_wot</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:33:12+1000] <chris_wot> hey</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:33:46+1000] <chris_wot> I'd like to get a clear understanding of the reason for the indefinite block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:33:53+1000] &lt;+Huon&gt; what's the blocked account?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:33:55+1000] <chris_wot> the username is User:Letsbefiends</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:34:06+1000] &lt;+Huon&gt; Ta bu shi da yu isn't blocked</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:34:19+1000] &lt;+Huon&gt; neither is the account that talk page redirects to</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:34:27+1000] <chris_wot> Huon - indeed, but as I say, I'm better known as Ta bu shi da yu</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:34:41+1000] <chris_wot> However, the account is definitely Letsbefiends</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:35:00+1000] <chris_wot> Because I no longer use Ta bu shi da yu</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:35:14+1000] <chris_wot> Nor do I use Tbsdy lives</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:35:45+1000] <chris_wot> I hope that's not a problem</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:36:06+1000] &lt;+Huon&gt; chris_wot, looking, one moment...</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:36:17+1000] <chris_wot> thanks</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:37:58+1000] <chris_wot> just so you know, I'm still feeling a little fragile, so if you could be gentle with me, I'd really appreciate it</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:38:21+1000] <chris_wot> also: I'm not actually asking for a lift of the block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:38:28+1000] <chris_wot> I just want to understand the reasoning</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:40:42+1000] &lt;+Huon&gt; you also edited as IP 203.217.39.91, didn't you?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:43:27+1000] &lt;+Huon&gt; chris_wot, hello?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:43:58+1000] <chris_wot> Huon - only after I rage quit and scambled my password</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:44:32+1000] <chris_wot> You will also see I edited under a different IP address, but that's only because I switched to using my mobile phone</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:45:01+1000] <chris_wot> if you check my contributions you'll see that there is no overlap</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:45:16+1000] &lt;+Huon&gt; well, the admin blocked that IP address for edit-warring and BLP violations, and blocked the account because it's the same person</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:45:17+1000] <chris_wot> it's also the reason I've not responded on my talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:46:36+1000] <chris_wot> Huon, I just want to clarify - I understand the edit warring, but can I have the BLP violation explained to me a bit more?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:47:09+1000] <chris_wot> like I say, I'm not requesting an unblock - it's irrelevant anyway as I scrambled the password</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:47:37+1000] &lt;+Huon&gt; ok, so what exactly is the question? Why the IP was blocked, or why the block was extended to the account?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:48:27+1000] <chris_wot> what the BLP violations were</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:48:46+1000] <chris_wot> also: you have blocked a mobile IP address - https://en.wikipedia.org/wiki/Special:Contributions/1.129.97.101</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:49:01+1000] <chris_wot> that's probably causing a lot of Telstra subscribers problems with editing</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:49:11+1000] &lt;+Huon&gt; I haven't looked at the content it felt, but it seems it was an amalgamation of primary sources, which would violate WP:BLPPRIMARY</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:49:38+1000] &lt;+Huon&gt; *itself, not "it felt"</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:50:19+1000] <chris_wot> OK, so that's where I'd like some clarification - I'm not sure what primary sources are being referred to here</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:52:15+1000] <chris_wot> I did some research and I posted a number of Developer Applications I located to the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:52:20+1000] <chris_wot> is that the issue?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:52:45+1000] &lt;+Huon&gt; chris_wot, well, one of the sources looks like an advertisement to me</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:52:52+1000] &lt;+Huon&gt; chris_wot, another is a Reddit post</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:07+1000] <chris_wot> a reddit post is not a primary source</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:25+1000] &lt;+Huon&gt; no, but it's not a reliable source either</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:41+1000] &lt;+Huon&gt; user-submitted content without meaningful editorial oversight</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:43+1000] <chris_wot> understood, but why not just remove it?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:50+1000] &lt;+Huon&gt; well, that was done</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:53:55+1000] &lt;+Huon&gt; then you re-added it</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:54:36+1000] <chris_wot> except that's a bit unfair really. The entire section was removed. Not just the source.</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:54:58+1000] &lt;+Huon&gt; well, I haven't checked all the sources yet</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:55:09+1000] <chris_wot> that's OK, I'm not trying to trap you</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:55:18+1000] <chris_wot> I'm trying to gain an insight into this whole mess</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:55:27+1000] &lt;+Huon&gt; but when BLP concerns are raised, re-adding the same content repeatedly is not a good idea</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:55:43+1000] <chris_wot> no issue there, but I still do not understand what the BLP issues are</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:56:28+1000] <chris_wot> FWIW, the reddit article just linked to an image with the advert</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:56:42+1000] &lt;+Huon&gt; so &nbsp;effectively it still was a primary source</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:56:44+1000] <chris_wot> the advert is what is being directly referred to in the article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:56:49+1000] <chris_wot> Huon that is true</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T08:56:57+1000] <chris_wot> what is the issue though with linking to the primary source?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:00:36+1000] <chris_wot> Huon?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:01:41+1000] &lt;+Huon&gt; chris_wot, sorry I'm slow, looking through the content and the discussions</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:01:51+1000] <chris_wot> that's OK :-)</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:02:05+1000] <chris_wot> slow and thoroughness is good :-)</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:02:46+1000] <chris_wot> thank you for being willing to respond to me, incidentally</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:05:36+1000] <chris_wot> I should note I'd normally try to hash this out on the wiki user talk page (well, actually, this hasn't really happened to me before, but I digress) but that is not possible any more</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:07:53+1000] &lt;+Huon&gt; chris_wot, at a somewhat closer look, particularly at the talk page discussion, there were concerns - beyond the sourcing issues, with undue weight</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:08:14+1000] &lt;+Huon&gt; chris_wot, while many of the sources I checked are reliable, the level of detail still is excessive</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:08:21+1000] <chris_wot> Huon, I understand, but we are now jumping around a bit here</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:08:32+1000] <chris_wot> I would like to understand the reason for the block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:08:50+1000] &lt;+Huon&gt; well, violating WP:UNDUE can still be a BLP issue</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:09:39+1000] <chris_wot> Huon OK, could you explain to me then why you feel that WP:UNDUE is a problem?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:10:03+1000] <chris_wot> I guess I'm trying to understand what bit is the issue</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:10:20+1000] <chris_wot> it appears to be one section that has a problem</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:10:59+1000] &lt;+Huon&gt; looking at the long version of the article I'd get the impression that "Mehajer is a reckless driver who married and was involved in some criminal proceedings that were dismissed - oh by the way, he also dabbles in politics"</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:11:07+1000] &lt;+Huon&gt; that's the wrong way round</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:11:30+1000] &lt;+Huon&gt; he's not that widely covered because he's an unsafe driver; there are far more of that sort</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:12:12+1000] <chris_wot> I understand, but is that objection because the other material isn't being covered?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:12:55+1000] &lt;+Huon&gt; no, but the objection is that the article does not focus on what Mehajer really is notable for</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:13:23+1000] <chris_wot> OK, the issue I have with this though was that I was actively editing the article and had not had a chance to document this</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:13:27+1000] &lt;+Huon&gt; in short, the editors felt it was deliberately turned away from focusing on those aspects to cover trivial details about some ancillary issues</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:13:48+1000] <chris_wot> I see, but I was about to add that material</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:14:13+1000] &lt;+Huon&gt; well, there's no way others can see what you were about to do</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:14:29+1000] <chris_wot> Huon, actually... there was. I was advising them on the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:14:44+1000] &lt;+Huon&gt; what others can see was that you edit-warred to keep this content in the article, and argued on the talk page about the supreme importance of this content</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:15:06+1000] &lt;+Huon&gt; maybe I missed something; where did you announce you were going to expand other parts of the article, too?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:15:27+1000] &lt;+Huon&gt; I still haven't read the entire talk page, so I may well have overlooked something</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:15:31+1000] <chris_wot> that would be in the bit that has been removed from the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:15:46+1000] <chris_wot> https://en.wikipedia.org/w/index.php?title=Talk:Salim_Mehajer&amp;diff=720688551&amp;oldid=720683401</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:15:51+1000] <chris_wot> by the admin who blocked me</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:16:39+1000] <chris_wot> I also advised WWGB that is what I was doing</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:17:08+1000] <chris_wot> And the other editor who was actively disputing and part of the reverting was also aware</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:17:19+1000] &lt;+Huon&gt; oh, now those really are primary sources</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:17:37+1000] <chris_wot> Huon, understood - but they aren't used in the article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:18:00+1000] &lt;+Huon&gt; then what were they put on the talk page for?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:18:14+1000] &lt;+Huon&gt; BLP is relevat to talk pages and sandboxes, too, by the way</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:18:16+1000] <chris_wot> it was part of research into the article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:18:29+1000] &lt;+Huon&gt; why list sources that are unusable?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:19:18+1000] <chris_wot> they weren't unusuable :-) they detailed the buildings he has been involved in, each of them has a lot of secondary material</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:19:22+1000] <chris_wot> I was cross checking it all</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:19:25+1000] &lt;+Huon&gt; sorry I missed that, but it seems that was much more of an issue than the overly detailed article itself</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:19:49+1000] &lt;+Huon&gt; I see a long, long list of council minutes with no secondary sources whatsoever</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:20:02+1000] <chris_wot> Huon OK, understood, but can I ask then why it wasn't just removed and I wasn't advised of the exact material that was a problem before I was blocked?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:20:12+1000] <chris_wot> that material was never removed until way after the block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:21:36+1000] <chris_wot> Huon - understood about the long list of DAs, it was, as I say, research I was doing - if that was an issue I would have been happy to have removed it</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:21:53+1000] <chris_wot> after all, I can make a list offsite - it's only background information</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:07+1000] <chris_wot> I was merely attempting to be transparent in what I was researching</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:08+1000] &lt;+Huon&gt; the IP was blocked on May 17, 10:15 (UTC), right?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:15+1000] <chris_wot> not entirely sure</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:31+1000] &lt;+Huon&gt; and your account at 10:18</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:47+1000] <chris_wot> ummm... sure, OK</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:49+1000] &lt;+Huon&gt; the sandbox was deleted at 10:18, too</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:22:52+1000] <chris_wot> OK</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:23:11+1000] <chris_wot> not sure I'm following...</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:23:18+1000] &lt;+Huon&gt; and the content on the talk page was reverted at 10:26</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:23:37+1000] &lt;+Huon&gt; I assume at some point in between the admin wrote the note on your user talk page explaining the block</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:23:54+1000] &lt;+Huon&gt; (haven't checked that datestamp)</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:23:59+1000] <chris_wot> not that I recall</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:24:16+1000] <chris_wot> if you could show me the message, that would be appreciated</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:24:38+1000] &lt;+Huon&gt; that doesn't look particularly "way after the block" to me; seems quite concurrent</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:25:23+1000] <chris_wot> OK, so I'm not entirely sure I'm following here... the material was removed at 10:15</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:25:31+1000] <chris_wot> and then I was blocked at 10:18</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:25:45+1000] &lt;+Huon&gt; yes, Nick-D placed the note on your talk page explaining the block at 10:26, too</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:25:51+1000] <chris_wot> so I was meant to have done something in that 3 minutes?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:26:03+1000] &lt;+Huon&gt; no, the admin was doing things at that time</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:26:34+1000] &lt;+Huon&gt; they decided to act, removed the content, left you an explanation, and blocked you, all at the same time, within minutes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:27:10+1000] <chris_wot> right. So I'm trying to understand - why not just remove the material?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:27:14+1000] <chris_wot> why the block?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:27:32+1000] &lt;+Huon&gt; well, you already had edit-warred about material that had been removed and contested</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:27:53+1000] <chris_wot> understood about that - edit warring deserves a block, I was wrong to do that</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:27:53+1000] &lt;+Huon&gt; with BLP explicitly mentioned, unless I'm interpreting things wrong</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:28:14+1000] <chris_wot> OK, so the issue is not with the talk page, but with the article?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:28:23+1000] &lt;+Huon&gt; so Nick-D probably considered it likely that, if you weren't blocked, you'd edit-war about the other content, too</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:28:23+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) joined the channel</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:28:28+1000] <chris_wot> at least the indefinite block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:28:41+1000] <chris_wot> no, that's OK - but why an indefinite block?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:29:09+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) left the channel ("Leaving")</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:29:20+1000] <chris_wot> and I want to emphasise that I'm not asking to have it lifted</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:29:24+1000] <chris_wot> just an understanding</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:29:36+1000] &lt;+Huon&gt; because BLP is highly important and (if I may try my hand at mind-reading) Nick-D probably felt that, if there was just a temporary block, you would sit it out and continue the same behaviour afterwards</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:30:22+1000] &lt;+Huon&gt; indefinite isn't infinite; it's only until you demonstrate that you understand the issues and will make sure they don't recur</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:30:36+1000] <chris_wot> I see, so if I was to have acknowledged the behaviour was inappropriate then I could have had it lifted after a time?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:31:01+1000] &lt;+Huon&gt; yes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:31:29+1000] <chris_wot> aside from coming here, what is the way in which I should have appealed the block?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:32:19+1000] &lt;+Huon&gt; well, the standard approach would be on your user talk page, but I understand you lost access to the account</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:32:32+1000] <chris_wot> that's right</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:32:46+1000] <chris_wot> in fact, I was editing from a static IP</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:32:54+1000] <chris_wot> which was also blocked, and I understand the reason</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:06+1000] <chris_wot> could I have asked on the IP's talk page?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:13+1000] &lt;+Huon&gt; then you may want to use the IP talk page and explain that you lost access to the account, yes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:31+1000] &lt;+Huon&gt; UTRS is also available, particularly if you prefer some privacy</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:39+1000] <chris_wot> I see - Huon, I did actually post a message on the IP address talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:52+1000] &lt;+Huon&gt; sorry, that's one page I didn't check</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:33:58+1000] &lt;+Huon&gt; let me take a look</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:34:11+1000] <chris_wot> at the time I was on a mobile IP</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:34:30+1000] <chris_wot> https://en.wikipedia.org/wiki/Special:Contributions/1.129.97.101</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:34:53+1000] &lt;+Huon&gt; https://en.wikipedia.org/w/index.php?title=User_talk:1.129.97.101&amp;diff=prev&amp;oldid=720689536 ?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:35:16+1000] <chris_wot> that's right - I was very upset at the time</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:36:32+1000] &lt;+Huon&gt; well, to be honest, I think Nick-D probably did you a favor by reverting that</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:37:08+1000] &lt;+Huon&gt; it shows that you were upset, and it would probably have been better to write only after cooling down</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:37:08+1000] <chris_wot> I disagree</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:37:31+1000] <chris_wot> OK, wouldn't it have been better though to say this?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:38:05+1000] &lt;+Huon&gt; well, what did you want to achieve by that post?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:38:16+1000] &lt;+Huon&gt; it doesn't look like an unblock request to me</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:38:54+1000] <chris_wot> it was a protest really - for being blocked indefinitely</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:39:33+1000] <chris_wot> even though I had lost control of the account, I was still unclear (and I am still unclear) what the indefinite block is for</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:40:00+1000] &lt;+Huon&gt; for the combination of edit-warring and BLP violations, I'd say</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:40:25+1000] <chris_wot> OK, like I say, I understand the edit warring, but I'm still unclear as to the BLP violations bit</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:40:51+1000] <chris_wot> I asked multiple times on the talk page to understand where the BLP violations were precisely</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:40:56+1000] &lt;+Huon&gt; I'm still not entirely sure I have a full understanding of the situation, but it seems you were felt to be in the process of summarizing every single piece of negative information you could get</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:41:26+1000] <chris_wot> that's an unfair characterization</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:42:10+1000] <chris_wot> I think perhaps the bit that is at issue is the bit about the traffic violations</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:43:26+1000] &lt;+Huon&gt; well, the collection in the sandbox seems to focus on claimed conflicts of interest, doesn't it?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:43:57+1000] <chris_wot> whatever was in the sandbox is in the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:44:35+1000] <chris_wot> I just compiled my list on the sandbox, then copied that into the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:44:49+1000] &lt;+Huon&gt; yes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:44:52+1000] <chris_wot> to prevent too many edits on the talk page, which could have disrupted discussion</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:45:22+1000] <chris_wot> it's just the DAs, and a list of articles from reliable sources</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:45:49+1000] &lt;+Huon&gt; maybe I'm misreading it, but to me it seems to be a collection of "In council session X Mehajer voted on issue Y in which he is financially involved"; am I misunderstanding that?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:46:10+1000] <chris_wot> no, the DAs are all recorded in the council sessions</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:46:24+1000] <chris_wot> in the business meeting reports</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:46:47+1000] <chris_wot> there were a number of significant times where I noted the meeting minutes however</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:46:49+1000] &lt;+Huon&gt; sorry, not familiar with the terminology - what's a DA?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:46:57+1000] <chris_wot> oh, sorry - Development Approval</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:47:16+1000] <chris_wot> the thing that they submit to local councils in NSW, Australia to get approval for building</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:47:25+1000] <chris_wot> sorry... Development Application, not Development Approval</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:47:57+1000] &lt;+Huon&gt; and more than half of all DAs the council decided on were submitted by Mehajer and his family?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:48:19+1000] <chris_wot> no, all the DAs I added were ones submitted by Mehajer</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:48:23+1000] <chris_wot> or his family</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:48:41+1000] <chris_wot> I was just researching the properties he owns</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:49:01+1000] <chris_wot> and also chasing down the companies to verify them</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:49:05+1000] <unblockbot> 1 - [[User talk:LordOfWank]] NEW Blocked by admin [[User:Widr]] at 2016-05-18; 04:46:14 for infinity: {{uw-uhblock}} (ID 6694546) - Username change request. Suggested new username: [[user:LordOfWk|reason=I am very sorry for any inconvenience I may have caused. I have chosen a new username that is more presentable in edits. I hope to not cause any other disruptions.]].</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:49:05+1000] <unblockbot> Autoreport: there are 9 users in [[Category:Requests for unblock]] (1 new).</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:49:07+1000] &lt;+Huon&gt; yes, so you obviously did not create an unbiased record of his work as a councillor, but focused on issues where he may be seen to have had a conflict of interest</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:49:51+1000] <chris_wot> for that section, the purpose was to understand the properties</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:50:02+1000] <chris_wot> is that an issue?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:50:25+1000] &lt;+Huon&gt; I assume the Auburn council isn't the only one Mehajer and his family sent DAs to, is it?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:50:48+1000] &lt;+Huon&gt; or is his entire business in that one district (or whatever Auburn is formally called)?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:50:50+1000] <chris_wot> I couldn't locate any other proprerties</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:51:01+1000] <chris_wot> Auburn City Council, which no longer exists</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:52:11+1000] &lt;+Huon&gt; and you looked for relevant DAs with other councils? I find it very difficult to believe that such a business empire would be concentrated within one council</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:52:37+1000] <chris_wot> I did - there are a lot of councils though</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:52:37+1000] <unblockbot> 1 - [[User talk:A10 REC]] NEW Blocked by admin [[User:Drmies]] at 2016-05-18; 16:52:57 for infinity: {{uw-spamublock}} <!-- Promotional username, promotional edits --> (ID 6695313)</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:52:38+1000] <unblockbot> Autoreport: there are 10 users in [[Category:Requests for unblock]] (1 new).</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:53:12+1000] <chris_wot> Huon I'm rather afraid that the reason Mr Mehajer is so notorious is because of these properties</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:53:56+1000] <chris_wot> so as surprising as it is to you... that's the issue and why he is being investigated, why he was suspended from the Council, why the council was all sacked and then the state government merged the council</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:54:32+1000] <chris_wot> FWIW, I can understand how it looks to someone from outside NSW, Australia</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:55:06+1000] <chris_wot> it looks very much like I'm attacking him, however that's why he's so notorious, outside of his wedding</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:56:10+1000] &lt;+Huon&gt; well, notorious or not, I think you will find it very difficult to obtain a consensus for this level of detail</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:56:40+1000] &lt;+Huon&gt; just imagine we'd write the article on Barack Obama in that level of detail</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:56:40+1000] <chris_wot> I understand - but I would like to understand where I was advised of the issue with the research notes</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:57:18+1000] <chris_wot> because I don't recall anyone ever objected before I was blocked</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:57:30+1000] &lt;+Huon&gt; I don't think you were advised of that before the block, but you were thoroughly aware that there were BLP concerns about that page and your conduct there</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:57:47+1000] <chris_wot> which page? the talk page?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:57:58+1000] <chris_wot> or the article?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:58:14+1000] &lt;+Huon&gt; the article, mostly, but putting it on the talk page doesn't help, of course</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:58:36+1000] &lt;+Huon&gt; in fact, I haven't followed that up, but I saw a comment of yours according to which a previous version of the page was deleted as an attack page</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:58:46+1000] <chris_wot> OK, so can I ask more about the article then? because it appears the talk page really wasn't the reason I was blocked</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:59:09+1000] <chris_wot> Huon yes, it was - and not in dispute that the tone was too negative</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:59:12+1000] &lt;+Huon&gt; the admin gave a list of things that, in combination, led to your block</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T09:59:30+1000] &lt;+Huon&gt; and putting that content on the talk page is mentioned in the list</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:00:10+1000] <chris_wot> OK, if the content on the talk page is part of the reason for the block, then I think it's very unfair nobody said that what I had added was inappropriate</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:00:32+1000] <chris_wot> if so, as I've said, I could have removed it (or they could have removed it)</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:01:33+1000] &lt;+Huon&gt; well, the way I read Nick-D's comments, it seems "removing inappropriate content" had already been tried in another example, to no avail</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:01:49+1000] &lt;+Huon&gt; thus Nick-D probably didn't believe it would work any better now</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:02:02+1000] <chris_wot> well, then that's the article page - and I would like to understand the issues with the article content</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:02:18+1000] &lt;+Huon&gt; as I mentioned, WP:UNDUE</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:03:08+1000] <chris_wot> alright, so I'm still unclear as to what bit was causing undue weight?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:03:31+1000] <chris_wot> I got told it was undue weight, but I was told that it was because the number of kilobytes increased dramatically</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:03:40+1000] <chris_wot> is that seriously the issue?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:04:22+1000] <chris_wot> and in fact, is that really a BLP violation?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:04:30+1000] &lt;+Huon&gt; well, I have glanced at quite a few references now, and they all describe him as "Auburn vice mayor" or "councillor" when they report on him - that's his primary claim to notability, clearly</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:04:48+1000] <chris_wot> Huon - well, then you'd be wrong</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:05:13+1000] <chris_wot> he has a number of claims to notability, but being a mayor is a major one</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:05:42+1000] <chris_wot> sorry, deputy mayor</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:06:50+1000] &lt;+Huon&gt; well, where is a source that introduces him as reckless driver? "Salim Mehajer, well-known for his many car accidents, now has won a city council election"? I don't see anything of that kind</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:07:14+1000] <chris_wot> Are you quoting from something?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:07:23+1000] &lt;+Huon&gt; no, I was making up a quote</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:07:41+1000] <chris_wot> I'm not sure I'm following what you are asking then</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:08:11+1000] <chris_wot> oh...</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:08:14+1000] <chris_wot> hold on, I see</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:08:20+1000] &lt;+Huon&gt; the article made Mehajer look like a person known for &nbsp;car crashes who happens to also have a political and business career</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:08:44+1000] &lt;+Huon&gt; the sources describe Mehajer as a politician or businessman who also happens to be involved in car crashes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:08:46+1000] <chris_wot> as I've said, that's really only because I wasn't finished editing the article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:09:13+1000] <chris_wot> but, in fact, that is indeed what he is widely known as in NSW</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:09:49+1000] &lt;+Huon&gt; well, I don't see any sources indicating that's his primary claim to notability</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:09:51+1000] <chris_wot> known for</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:10:17+1000] <chris_wot> um. Are you reading the same article on Wikipedia as myself?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:10:24+1000] <chris_wot> which revision are you looking at?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:11:11+1000] <unblockbot> 1 - [[User talk:74.104.133.161]] NEW Blocked by admin [[User:Widr]] at 2016-05-18; 11:41:36 until 2016-08-18; 11:41:36: {{anonblock}} (ID 6694956)</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:11:11+1000] <unblockbot> Autoreport: there are 11 users in [[Category:Requests for unblock]] (1 new).</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:11:46+1000] <chris_wot> also, I'm trying to understand how you get that impression, given that he has also got the intimidation charges, wedding and nine news articles documented</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:13:01+1000] &lt;+Huon&gt; well, the intimidation charges (which were dismissed but still get about as much space as his political career) certainly don't make the article look less like an attack page</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:13:43+1000] <chris_wot> so the issue is that the automobile incidents section was too long?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:14:34+1000] <chris_wot> that section documents three very serious incidents, and summarizes in a paragraph the numerous other offenses he has commited</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:14:56+1000] <chris_wot> I guess I'm trying to understand what should have been left out</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:15:01+1000] <chris_wot> and why</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:15:55+1000] <chris_wot> for reference, btw, I'm referring to this revision https://en.wikipedia.org/w/index.php?title=Salim_Mehajer&amp;oldid=720683195</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:16:10+1000] &lt;+Huon&gt; unless the dismissed charges are a major event (say Bill Clinton's impeachment), I don't see why they should be mentioned at all, for example</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:16:26+1000] <chris_wot> they were all major events</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:16:28+1000] &lt;+Huon&gt; Someone claimed something about him, it didn't hold up - what does that tell us about him?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:16:59+1000] <chris_wot> I'm afraid I need to ask what parts you are referring to</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:17:59+1000] &lt;+Huon&gt; According to Herat, Mehajer told him "Who the f..k are you to talk to me? What gives you the right to tell me how to use this machine? ... I am going to find out where you live motherf..ker, and I am going to kidnap your children." Mehajer's response in court was that "Those words don’t exist in my vocabulary. Maybe when I was in primary school."</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:18:32+1000] &lt;+Huon&gt; that's an incredible level of detail, and what do we ultimately learn from that?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:18:49+1000] <chris_wot> well, did you read the next bit?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:19:01+1000] &lt;+Huon&gt; yes, yet more of a quote</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:19:06+1000] <chris_wot> which is?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:19:29+1000] &lt;+Huon&gt; However, The Australian noted that during his wedding he stated, in front of reporters and TV cameras: "What’s up Channel 9 viewers? This is how you do a wedding. Floyd Mayweather, you got no chance over me, motherf..ker".</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:19:57+1000] &lt;+Huon&gt; by now we're at more content on whether or not he uses the word "motherfucker" than about what he did in two years as deputy mayor</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:20:14+1000] &lt;+Huon&gt; don't you see that as a little unbalanced?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:20:36+1000] <chris_wot> sure, but like I say, I had a long way to go before I was done with that article - I was still writing it!</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:21:05+1000] &lt;+Huon&gt; well, what the "political career" section already does is note various investigations about him</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:21:39+1000] <chris_wot> It should probably read "early political career"</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:21:55+1000] &lt;+Huon&gt; so it seems the negative content finds its way into the article quickly</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:22:36+1000] <chris_wot> it seems that way, sure - but is that because of the subject, or because of me pushing a POV?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:22:56+1000] <chris_wot> if it's me pushing a POV, then I'm still not sure I'm following</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:23:19+1000] <chris_wot> if the issue is that it should documented more of his political career, I don't disagree</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:23:29+1000] <chris_wot> but then again, that's what I was going to be doing</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:23:53+1000] <chris_wot> given I wasn't finished writing the article...</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:23:59+1000] &lt;+Huon&gt; I'd have to spend more effort on researching newspaper archives than I'd be willing to do now, but with your various talk page comments, it does seem you are less than neutral about Mehajer</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:24:38+1000] <chris_wot> oh, my opinion of Mehajer isn't very high, sure. But that's not the issue I think</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:24:49+1000] <chris_wot> the issue is with article content</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:25:06+1000] <chris_wot> so, could you help me out here still, as I did ask something above</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:25:33+1000] &lt;+Huon&gt; sorry, what exactly is the question?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:25:49+1000] <chris_wot> the section that kept being removed, and that is related to the edit war, was the "Automobile incidents" section</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:26:01+1000] <chris_wot> I asked what part should have been removed, and why</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:26:32+1000] &lt;+Huon&gt; well, personally I'd say two or three lines would have sufficed to sum it up</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:26:33+1000] <chris_wot> given that's largely what I was blocked for, I'd really appreciate at answer to this</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:26:52+1000] &lt;+Huon&gt; the main points are that he's often involved in accidents and once hurt two women</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:27:13+1000] &lt;+Huon&gt; everything beyond that is bordering on celebrity gossip</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:27:30+1000] <chris_wot> I'm afraid I disagree then</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:28:05+1000] <chris_wot> however, I note that I asked this same question on the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:28:16+1000] &lt;+Huon&gt; you are, of course, welcome to do so, but sometimes we have to accept that consensus disagrees with us</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:28:53+1000] &lt;+Huon&gt; happened to me too, and I still think I'm right - but I wandered away from that article and found more fruitful pursuits</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:28:54+1000] <chris_wot> so I'm trying to understand then - the entire section was inappropriate?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:29:09+1000] <chris_wot> not even a summary should have been given?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:29:22+1000] <chris_wot> even your summary few sentences should have been removed?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:29:53+1000] <chris_wot> Huon I dont' disagree, the article eventually did lead me to contemplate suicide</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:30:17+1000] &lt;+Huon&gt; personally I'd say such a short summary, likely within a "private life" section that also covers his marriage, would have been appropriate</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:30:22+1000] <chris_wot> so yes, I should have walked away a lot sooner, however - that's not the issue here</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:30:41+1000] <chris_wot> OK, so what is the best way to work out such a summary?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:31:06+1000] <chris_wot> Huon - that wouldn't have been appropriate at all</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:31:22+1000] <chris_wot> these are major issues covered extensively in the media across Australia</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:31:46+1000] &lt;+Huon&gt; please note that it's just my personal opinion here, based only on what I read today; I hadn't heard about him before</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:32:10+1000] <chris_wot> I understand, and I'm not asking for you to be a subject matter expert :-)</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:32:41+1000] <chris_wot> however, because I was blocked for BLP violations, I very much want to know what the violations are</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:32:54+1000] <chris_wot> it seems to boil down to [[WP:UNDUE]]</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:33:11+1000] <chris_wot> however, it is not at all clear to me what is given undue to prominence</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:33:29+1000] <chris_wot> the section that was removed was the automobile incidents section</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:33:54+1000] <chris_wot> however, the incident relating to the women he nearly killed was highly significant and publicized widely</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:33:56+1000] &lt;+Huon&gt; and the editor explained on the talk page that they found the level of detail far too great</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:34:01+1000] <chris_wot> did they?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:34:38+1000] <chris_wot> again, I'm rather afraid it's not evident to me what detail is the issue</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:34:47+1000] <chris_wot> and I asked for clarification</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:34:57+1000] &lt;+Huon&gt; "I just deleted an incredible 11,843 bytes and four long paragraphs of writing about car crashes he'd gotten into. It even reports on his wife having allgedly gotten a defect notice for her car! The obsessive detail, the comments of the magistrates, the responses from Mehajer, and the entire contents of the third paragraph around petty traffic offences, the dismissed charge, etc. are massive overkill and should not be in this article period."</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:35:07+1000] &lt;+Huon&gt; I hope that didn't get cut off by IRC</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:35:13+1000] <chris_wot> not at all</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:35:24+1000] <chris_wot> that's what he asserts, sure</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:35:40+1000] &lt;+Huon&gt; they even propose a way towards a compromise</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:35:47+1000] <chris_wot> which is?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:38:04+1000] &lt;+Huon&gt; "I can see a case for including the cases on which he was found guilty, albeit in a much, more brief fashion"</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:38:27+1000] &lt;+Huon&gt; and further down, "Noting that he was found guilty of a crime and what the sentence was is perfectly appropriate for this article."</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:39:27+1000] <chris_wot> and yet, that's what is already in the article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:39:45+1000] <chris_wot> or was, before it was wholesale removed</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:40:42+1000] <chris_wot> what bits were in that section in https://en.wikipedia.org/w/index.php?title=Salim_Mehajer&amp;oldid=720683195 that were not already such?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:40:48+1000] &lt;+Huon&gt; well, there was far more than that</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:41:25+1000] <chris_wot> could you explain further?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:41:30+1000] &lt;+Huon&gt; Instead, the magistrate found that Mehajer's inability to control such a powerful car caused him to "[make] bad choices and it ended in catastrophe".</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:41:46+1000] <chris_wot> what's the issue with that?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:41:48+1000] &lt;+Huon&gt; he motorist then says he drove off but was followed by Mehajer and when they again stopped at a set of traffic lights Mehajer got out of his ute, yelled, punched and kicked his car.</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:41:56+1000] &lt;+Huon&gt; that's trivia, all of it</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:42:06+1000] <chris_wot> that's not trivia at all</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:42:37+1000] <chris_wot> that's detailing what was claimed and what he was charged and convicted over</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:43:10+1000] <chris_wot> and the "[make] bad choices and it ended in catastrophe" is the crux of the court case</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:43:35+1000] &lt;+Huon&gt; "He was found guilty of the malicious damage charge" is all he was convicted of</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:43:52+1000] &lt;+Huon&gt; there's no need to get into the "he said-she said" in a biographical article</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:43:54+1000] <chris_wot> except that it was important to note what he was charged with</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:44:16+1000] &lt;+Huon&gt; we're not a chronicle of every event that ever happened to him, not even if there's a newspaper report about it</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:44:21+1000] <chris_wot> OK, but that</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:44:28+1000] <chris_wot> 's not actually a violation of BLP</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:44:43+1000] <chris_wot> it's just an issue of needing to modify the article, right?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:45:06+1000] &lt;+Huon&gt; oh yes, if it leads to an article that primarily focuses on his court cases and negative publicity, then that's very much a BLP issue</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:45:31+1000] &lt;+Huon&gt; just imagine, for argument's sake, that someone began to add positive information in the same level of detail</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:45:52+1000] &lt;+Huon&gt; where is the paragraph on his relative winning a beauty pageant?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:46:10+1000] <chris_wot> not written yet</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:46:20+1000] <chris_wot> and would have been</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:46:21+1000] &lt;+Huon&gt; where are the various election-related quotes that surely have been published in the news?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:46:32+1000] <chris_wot> not written yet</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:46:35+1000] <chris_wot> and would have been</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:30+1000] <chris_wot> so I think I need to get this straight - because there was not enough written about the rest of Mehajer's career, it made the rest of the article look unbalanced</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:40+1000] &lt;+Huon&gt; and how long did you envisage the article to be, in total?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:45+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) joined the channel</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:49+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) left the channel ("Leaving")</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:54+1000] <chris_wot> Huon, fairly long</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:47:58+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) joined the channel</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:48:04+1000] kyan (~kyan@cpe-76-178-228-236.maine.res.rr.com) left the channel ("Leaving")</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:48:08+1000] &lt;+Huon&gt; well, that too may be a problem</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:48:18+1000] <chris_wot> well Huon, that's fine</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:48:18+1000] &lt;+Huon&gt; he is, after all, ultimately small fry</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:48:29+1000] <chris_wot> Huon - frankly, that's irrelevant</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:49:19+1000] <chris_wot> and also, of course, wrong</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:49:36+1000] <chris_wot> may I ask where in the world you live?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:50:23+1000] &lt;+Huon&gt; not Australia</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:50:41+1000] <chris_wot> right - so I'm curious - why do you assert he is "small fry"?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:52:12+1000] <chris_wot> also, what does that have to do with the size of the article?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:52:41+1000] <chris_wot> also, what does that have to do with me getting blocked?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:53:19+1000] &lt;+Huon&gt; well, he's obviously rich enough to stage that lavish wedding</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:53:50+1000] <chris_wot> perhaps I'm not understanding what you mean by "small fry" then</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:54:40+1000] &lt;+Huon&gt; but he's a minor politician, and his notoriety seems to be entirely local</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:54:56+1000] <chris_wot> and yet, that is where you would be entirely wrong</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:55:24+1000] <chris_wot> and had I had a chance to complete the article, it would have shown his full significance</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:57:59+1000] <chris_wot> so I have to go now, but it appears to me that the reason I was blocked was because one section seemed to be too long, but nobody can tell me or has attempted to summarise but just deleted it, the "BLP" issue is that it appears to give undue weight to his court case, but that was a judgement made based on an unfinished article I was actively in the middle of creating, the edit warring (which I accept being blocked for</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:57:59+1000] <chris_wot> &nbsp;a short time for) and the fact that I had added the list of DAs to the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:58:21+1000] &lt;+Huon&gt; chris_wot, you seem to be disregarding half of what I said</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:58:32+1000] &lt;+Huon&gt; you were not blocked because "one section was too long"</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:58:44+1000] &lt;+Huon&gt; that was only one symptom of a larger issue</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:59:02+1000] <chris_wot> I'm sorry, but I just don't know what that larger issue is...</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:59:13+1000] <chris_wot> could you restate what it is?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:59:18+1000] &lt;+Huon&gt; you seemed to be involved in collecting massive amonts of negative information, much of it based on dubious, inappropriate sources</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:59:36+1000] <chris_wot> well, that's incorrect</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T10:59:48+1000] &lt;+Huon&gt; no, that's entirely correct</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:00:13+1000] &lt;+Huon&gt; need I quote you on how his DAs all are controversial in some way?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:00:15+1000] <chris_wot> alright then. Can you please provide me the dubious, inapppropriate sources?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:00:36+1000] <chris_wot> so it was the DAs then</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:00:48+1000] <chris_wot> OK, was there any other sources?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:00:50+1000] &lt;+Huon&gt; that's another part, yes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:01:20+1000] <chris_wot> no, you've accused me of collecting information from dubious, inappropriate sources, I think it's best if you tell me what they are</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:01:29+1000] <chris_wot> it appears the DAs were one of the issues</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:01:34+1000] <chris_wot> what about the other sources?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:03:44+1000] <chris_wot> sorry, need to go to the loo... be right back</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:10:34+1000] <unblockbot> 1 - [[User talk:Jgg1999]] NEW Jgg1999 is not blocked</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:10:35+1000] <unblockbot> Autoreport: there are 12 users in [[Category:Requests for unblock]] (1 new).</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:22:09+1000] <unblockbot> [[user:Yamla]] reviewed and declined to unblock [[user talk:Jgg1999]]: &nbsp;Procedural decline. You are not blocked directly and did not provide your block message and/or IP, which we need to figure out what's going on.</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:25:35+1000] <unblockbot> Handled: [[User talk:Jgg1999]]</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:25:35+1000] <unblockbot> Autoreport: there are 11 users in [[Category:Requests for unblock]] (0 new).</unblockbot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:27:34+1000] <chris_wot> OK, I'm back :-) sorry about that</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:28:02+1000] <chris_wot> so... when you are ready, could you advise me what sources you believe are from dubious and inappropriate sources?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:28:24+1000] &lt;+Huon&gt; practically everything put on the talk page, I'd say</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:28:47+1000] <chris_wot> Why do you say that?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:29:27+1000] <chris_wot> I would appreciate even one source that is not from Auburn Coucil</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:29:30+1000] <chris_wot> Council</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:29:39+1000] &lt;+Huon&gt; because those are primary sources, not subject to editorial oversight, that are used to create a synthesis and make a point that no reliable secondary source makes</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:29:57+1000] &lt;+Huon&gt; and yes, the Auburn Council is a highly inappropriate source for a BLP</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:30:14+1000] <chris_wot> that's OK, I would have removed them if I was asked, as I've said</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:30:36+1000] <chris_wot> however, as I just asked, aside from those sources, what was inappropriate?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:32:11+1000] <chris_wot> I really would like an answer to this question, you have been very quick to make that assertion so it should not be hard for you to provide me with a source reasonably quickly</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:32:51+1000] &lt;+Huon&gt; you dumped some 40k of content on the talk page</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:33:04+1000] <chris_wot> and you have stated that there is inappropriate sources</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:33:16+1000] <chris_wot> which indicates you saw a source you felt was inappropriate</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:33:26+1000] <chris_wot> thus, you should be able to provide it to me</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:33:52+1000] <chris_wot> you are the one making this accusation, after all. I am the one asking you to prove it.&nbsp;</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:34:12+1000] <chris_wot> however, I am happy to give you time</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:34:31+1000] &lt;+Huon&gt; the "developments", "home" and "council car park" sections have no place on Wikipedia, article or talk page</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:34:46+1000] <chris_wot> why is that?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:35:35+1000] &lt;+Huon&gt; basically, because WP:BLPPRIMARY says so</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:35:47+1000] &lt;+Huon&gt; we should not base BLP content on such public records</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:35:55+1000] &lt;+Huon&gt; and that goes for a talk page too</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:36:08+1000] &lt;+Huon&gt; this is not useful research aimed at improving the article</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:36:32+1000] <chris_wot> OK, and all of these are from Auburn Council, and as I said had I been informed of this fact I would have happily removed them</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:37:31+1000] <chris_wot> if someone adds material that they didn't realise would be an issue, isn't it normal practice to inform them of the material that is inappropriate and either get them to remove it, or remove it?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:38:08+1000] &lt;+Huon&gt; well, people informed you of other BLP concerns before - what happened?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:38:21+1000] &lt;+Huon&gt; Why was it reasonable to assume that your reaction now would be different?</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:39:07+1000] <chris_wot> Sure, they informed me of what they said were BLP concerns, but I asked them to clarify what the BLP concerns were and they told me that primary sources aren't allowed at all, which is not true, and they said the article was a violation of [[WP:UNDUE]], which I asked them to clarify</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:39:27+1000] <chris_wot> nobody told me that I could add some research links to the talk page</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:39:34+1000] <chris_wot> couldn't</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:39:44+1000] <chris_wot> frankly, I honestly didn't think it would be a concern</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:40:01+1000] <chris_wot> evidently it is, but I only really just found this out right now</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:40:19+1000] <chris_wot> so, I guess I'm asking once again - wouldn't it have been good had I been informed?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:40:27+1000] <chris_wot> and once again, is this why I was blocked?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:40:40+1000] &lt;+Huon&gt; you were informed in the note accompanying the block</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:40:57+1000] <chris_wot> so I was advised of my mistake, and then blocked</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:41:11+1000] <chris_wot> sorry, scratch that - I was blocked, then advised of my mistake</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:41:21+1000] &lt;+Huon&gt; yes, to prevent further BLP issues</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:41:44+1000] <chris_wot> but... if it was just an error, why would there have been further BLP issues?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:42:46+1000] <chris_wot> it's a massive assumption that I was digging for information to attack Salim Mehajer</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:42:52+1000] &lt;+Huon&gt; well, I'm sorry, probably I'm doing you an injustice here, but from the outside it looks entirely reasonable to expect that you would have argued, would have edit warred, and would have tried to push that content onto Wikipedia in some way</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:43:09+1000] <chris_wot> you are indeed doing me a massive injustice</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:43:14+1000] &lt;+Huon&gt; well, we have the selection of sources you found</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:43:41+1000] <chris_wot> you certainly do - all the ones that show what property he and his companies owned or have developed</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:08+1000] <chris_wot> I'm trying to understand though, why is this a concern?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:14+1000] <chris_wot> you still haven't explained why</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:35+1000] &lt;+Huon&gt; the selection is rather one-sided</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:36+1000] <chris_wot> you asked me if I was trying to find his other DAs, and I have explained I have, but I can't find anything</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:42+1000] <chris_wot> how so?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:48+1000] <chris_wot> what should have been included?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:44:53+1000] &lt;+Huon&gt; I did a quick Google News search on Mehajer some time in between</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:45:04+1000] <chris_wot> oh yes</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:45:09+1000] <chris_wot> what did you discover?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:45:11+1000] &lt;+Huon&gt; what would have been difficult to put a negative spin on seems to be missing</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:45:23+1000] <chris_wot> which is?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:46:50+1000] &lt;+Huon&gt; well, the most relevant from the first page of Google News hits, beyond celebrity gossip, is this: http://www.theaustralian.com.au/business/property/salim-mehajer-gets-65m-lifeline-to-complete-project/news-story/fbdc14dbb346a83cb70e109c46036172</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:47:17+1000] <chris_wot> funny, I seem to recall documenting that exact link in that section</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:48:05+1000] <chris_wot> yup, here it is:</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:48:06+1000] <chris_wot> Robertson, James (6 May 2016). "Salim Mehajer secures $65m in loans to build apartment complex". The Sydney Morning Herald.</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:48:24+1000] <chris_wot> different source, but same article</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:48:35+1000] <chris_wot> so... you were saying?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:48:45+1000] <chris_wot> any other info I'm missing?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:49:11+1000] &lt;+Huon&gt; I missed that because I assumed a "Property development and Auburn City Council" section would contain sources relevant to both</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:49:54+1000] <chris_wot> which means that you missed the fact that I divided that into really a few major sections</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:50:24+1000] <chris_wot> but I'm not sure how, given that the first section is entitled "Developments", and the second section is "In The News"</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:51:07+1000] <chris_wot> and the Developments section was just to identify his property portfolio, and I never really expected to document news sources in it, although there was a few I added</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:51:54+1000] <chris_wot> so. Could you please tell me what other sources were dubious or inappropriate?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:56:57+1000] <chris_wot> Actually, I think I see one that was irrelevant: http://www.cbp.com.au/publications/2015/july/client-lunch-comes-back-to-bite-solicitor-found</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:57:03+1000] <chris_wot> that's it though</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:57:16+1000] <chris_wot> not sure why that link is in there...</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:58:53+1000] <chris_wot> hello?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:59:07+1000] <chris_wot> Huon?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:59:40+1000] &lt;+Huon&gt; chris_wot, sorry, was reading sources...</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T11:59:49+1000] <chris_wot> you know, this sort of annoys me Huon</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:00:06+1000] <chris_wot> you have made an accusation about me, but you have done so before checking your facts</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:00:52+1000] <chris_wot> the reason I know that is the case, is with the exception of that mistaken link and the Council links, all the sources were from reliable and verifable news sources</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:01:02+1000] &lt;+Huon&gt; chris_wot, I apologize, but I noted repeatedly that I was giving opinions based on cursory readings of what in total amounts to many dozens of pages' worth of information</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:01:17+1000] <chris_wot> I understand</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:01:26+1000] &lt;+Huon&gt; chris_wot, in this particular instance I indeed screwed up; I'm sorry for that</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:01:40+1000] <chris_wot> it's OK :-) like I say, it wasn't my intent to trap you</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:01:52+1000] <chris_wot> my sole purpose here is to understand my block</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:02:13+1000] <chris_wot> you are an uninvolved admin, so I know you won't know the ins and outs of this case</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:02:47+1000] <chris_wot> however, my deep concern here is that the issues that are being raised are really about the council links on the talk page.&nbsp;</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:07+1000] &lt;+Huon&gt; chris_wot, I'm terribly sorry, but I'll have to call it a night and get some sleep</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:11+1000] <chris_wot> it's OK</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:23+1000] <chris_wot> is there another admin I can speak to though?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:33+1000] <chris_wot> or another avenue I can email?</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:41+1000] &lt;+Huon&gt; there is UTRS, of course</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:51+1000] <chris_wot> I think I am going to ask them to clarify what the issues are</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:57+1000] <chris_wot> thank you for taking the time to speak with me</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:03:58+1000] &lt;+Huon&gt; https://en.wikipedia.org/wiki/Wikipedia:Unblock_Ticket_Request_System</span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:04:02+1000] <chris_wot> I appreciate it :-)</chris_wot></span><br /> <span style="font-family: Courier New, Courier, monospace; font-size: xx-small;">[2016-05-19T12:20:15+1000] Huon (~shogunat@wikipedia/Huon) left IRC (Quit: Bye!)</span><br /> <br />Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-26029380407128045622016-05-21T00:48:00.000-07:002016-05-21T01:45:23.578-07:00For Great Justice!<br /> <div style="border: 1px solid black;"> <div class="p1"> <b>From:</b>&nbsp;Unblock Review Team &lt;<a href="mailto:noreply-unblock@toolserver.org"><span class="s2">noreply-unblock@toolserver.org</span></a>&gt;</div> <div class="p2"> <span class="s3"><b>Date:</b>&nbsp;21 May 2016 at 5:39:41 AM AEST</span></div> <div class="p1"> <span class="s1"><b>To:</b>&nbsp;<span class="s2">chris.sherlock79 at gmail.com</span></span></div> <div class="p2"> <span class="s3"><b>Subject:</b>&nbsp;<b>Response to unblock appeal #15811</b></span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">This is a reply to your Wikipedia unblock appeal from TParis, a Wikipedia administrator.&nbsp;<b>DO NOT reply to this email</b>&nbsp;- it is coming from an unattended email address.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">Hello Letsbefiends,</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">The primary issue appears to be your misunderstanding of the purpose of Wikipedia. Wikipedia is a tertiary source. All material hosting on Wikipedia needs to have gone through published secondary sources before we'll cover it. The only material we'll include as a primary source is information on a person's identity; such as: race, religion, gender, sexual orientation, etc.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">The diffs you were gathering appears to be opposition research and it appears that you may have a personal connection. To the blocking administrator, that makes it seem like you have an axe to grind. It's one thing to include secondary sources to improve the encyclopedia. It's another thing to gather primary sources to use Wikipedia to 'get the word out' about someone you consider to be a bad person.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">Whatever your intent for doing the things that you did, we cannot get inside your head. We can't know what you really intend or intended to do. All we can do is make a judgement based on your actions. Even if you said it was not your intention, we can't know the truth of that. All we have are the diffs to go by. To be unblocked, you'd have to say you'd come off the subject or approach the dispute from another angle within policy.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p1"> <span class="s1">See&nbsp;<a href="http://en.wikipedia.org/wiki/Wikipedia:No_original_research#Primary.2C_secondary_and_tertiary_sources"><span class="s2">WP:PRIMARY</span></a>&nbsp;and&nbsp;<a href="http://en.wikipedia.org/wiki/Wikipedia:Tendentious_editing#Righting_Great_Wrongs"><span class="s2">WP:RIGHTGREATWRONGS</span></a>.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">As you aren't asking to be unblocked, I'm going to close this ticket. I hope this gives you closure.</span></div> <div class="p3"> <span class="s3"></span><br /></div> <div class="p2"> <span class="s3">TParis</span></div> <br /> <div class="p2"> <span class="s3">English Wikipedia Administrator</span></div> </div> <br /> <blockquote class="tr_bq"> <i>The primary issue appears to be your misunderstanding of the purpose of Wikipedia.</i>&nbsp;</blockquote> OK then.<br /> <blockquote class="tr_bq"> <i>Wikipedia is a tertiary source. All material hosting on Wikipedia needs to have gone through published secondary sources before we'll cover it.</i></blockquote> <br /> <div style="border: 3px double red;"> <h3 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 1.2em; line-height: 1.6; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0 em;"> <span class="mw-headline" id="Primary.2C_secondary_and_tertiary_sources">Primary, secondary and tertiary sources</span></h3> <div> <span class="mw-headline"></span><br /> <div class="hatnote" role="note" style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; font-style: italic; line-height: 22.4px; margin-bottom: 0.5em; padding-left: 1.6em;"> <span class="mw-headline">"<a href="https://en.wikipedia.org/wiki/WP:PRIMARY">WP:PRIMARY</a>" redirects here. For the article naming guideline, see&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:PRIMARYTOPIC" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:PRIMARYTOPIC">WP:PRIMARYTOPIC</a>.</span></div> <span class="mw-headline"> </span> <br /> <div class="hatnote" role="note" style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; font-style: italic; line-height: 22.4px; margin-bottom: 0.5em; margin-top: -0.5em; padding-left: 1.6em;"> <span class="mw-headline">Further information:&nbsp;<a href="https://en.wikipedia.org/wiki/Wikipedia:Identifying_and_using_primary_and_secondary_sources" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:Identifying and using primary and secondary sources">Wikipedia:Identifying and using primary and secondary sources</a></span></div> <span class="mw-headline"> </span> <br /> <div style="color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> <span class="mw-headline"><span style="background-color: white;">Wikipedia articles should be based on&nbsp;</span><a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:RS" style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Wikipedia:RS">reliable</a><span style="background-color: white;">, published&nbsp;</span><a href="https://en.wikipedia.org/wiki/Secondary_source" style="background-attachment: initial; background-clip: initial; background-color: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Secondary source">secondary sources</a><span style="background-color: white;">&nbsp;and, </span><span style="background-color: yellow;">to a lesser extent, on&nbsp;<a href="https://en.wikipedia.org/wiki/Tertiary_source" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Tertiary source">tertiary sources</a>&nbsp;and&nbsp;<a href="https://en.wikipedia.org/wiki/Primary_source" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Primary source">primary sources</a>.</span><span style="background-color: white;"> Secondary or tertiary sources are needed to establish the topic's notability and to avoid novel interpretations of primary sources. All analyses and interpretive or synthetic claims about primary sources must be referenced to a secondary source, and must not be an original analysis of the primary-source material by Wikipedia editors.</span></span></div> </div> </div> <br /> I'm not entirely sure I'm following... but all right then. Next...<br /> <blockquote class="tr_bq"> <i>The only material we'll include as a primary source is information on a person's identity; such as: race, religion, gender, sexual orientation, etc.</i></blockquote> <br /> <div style="border: 3px double red;"> <div> <h3 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 1.2em; line-height: 1.6; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0em;"> <span class="mw-headline" id="Avoid_misuse_of_primary_sources">Avoid misuse of primary sources</span></h3> <div class="hatnote" role="note" style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; font-style: italic; line-height: 22.4px; margin-bottom: 0.5em; padding-left: 1.6em;"> Further information:&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:PRIMARY" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:PRIMARY">WP:PRIMARY</a></div> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; position: relative; top: -3em;"> <span id="WP:BLPPRIMARY"></span></div> <div class="shortcutbox plainlist noprint" role="note" style="background: rgb(255, 255, 255); border: 1px solid rgb(170, 170, 170); color: #252525; float: right; font-family: sans-serif; font-size: smaller; font-weight: bold; line-height: 2em; margin: 0.3em 0.3em 0.3em 1em; padding: 0.4em 0.6em; text-align: center;"> <a href="https://en.wikipedia.org/wiki/Wikipedia:Shortcut" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:Shortcut">Shortcut</a>:<br /> <ul style="line-height: inherit; list-style: none none; margin: 0px; padding: 0px;"> <li style="margin-bottom: 0px;"><a href="https://en.wikipedia.org/wiki/Wikipedia:Biographies_of_living_persons#Avoid_misuse_of_primary_sources">WP:BLPPRIMARY</a></li> </ul> </div> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> Exercise extreme caution in using primary sources. Do&nbsp;<i><b>not</b></i>&nbsp;use trial transcripts and other court records, or other public documents, to support assertions about a living person. Do&nbsp;<i><b>not</b></i>&nbsp;use public records that include personal details, such as date of birth, home value, traffic citations, vehicle registrations, and home or business addresses.</div> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> Where primary-source material has been discussed by a reliable secondary source, it&nbsp;<i>may</i>&nbsp;be acceptable to rely on it to augment the secondary source, subject to the restrictions of this policy,&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:NOR" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:NOR">no original research</a>, and the other sourcing policies.<sup class="reference" id="cite_ref-Exceptional_4-0" style="font-size: 11.2px; line-height: 1; unicode-bidi: isolate; white-space: nowrap;"><a href="https://en.wikipedia.org/wiki/Wikipedia:Biographies_of_living_persons#cite_note-Exceptional-4" style="background: none; color: #0b0080; text-decoration: none;">[4]</a></sup></div> </div> </div> <br /> Must have read that wrong, he's saying something that look like it's violating the <a href="https://en.wikipedia.org/wiki/Wikipedia:Biographies_of_living_persons">Biography of Living Person's policy</a>. Hang on...<br /> <blockquote class="tr_bq"> <i>The <span style="background-color: yellow;">only material</span> we'll include as a primary source is information on a person's identity; such as: race, religion, gender, sexual orientation, etc.</i></blockquote> <br /> <div style="border: 3px double red;"> <div> <h2 style="background: none rgb(255, 255, 255); border-bottom-color: rgb(170, 170, 170); border-bottom-style: solid; border-bottom-width: 1px; font-family: 'Linux Libertine', Georgia, Times, serif; font-weight: normal; line-height: 1.3; margin: 1em 0px 0.25em; overflow: hidden; padding: 0px;"> <span class="mw-headline" id="You_are_allowed_to_use_primary_sources..._carefully"><a href="https://en.wikipedia.org/wiki/Wikipedia:Identifying_and_using_primary_and_secondary_sources#You_are_allowed_to_use_primary_sources..._carefully">You are allowed to use primary sources... carefully</a></span></h2> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> Material based on primary sources can be valuable and appropriate additions to articles.</div> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> Primary sources may only be used on Wikipedia to make straightforward, descriptive statements that any educated person—with access to the source but without specialist knowledge—will be able to verify are directly supported by the source. This person does not have to be able to determine that the material in the article or in the primary source is true. The goal is only that the person could compare the primary source with the material in the Wikipedia article, and agree that the primary source actually, directly says just what the article says it does.</div> <dl style="color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.2em;"> <dt style="font-weight: bold; margin-bottom: 0.1em;"><span style="background-color: yellow;">Examples</span></dt> </dl> <ul style="color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="background-color: white; margin-bottom: 0.1em;"><b>An article about the conquest of the hypothetical country above:</b>&nbsp;The proclamation itself is an acceptable primary source for a simple description of the proclamation, including its size, whether it was written in&nbsp;<a href="https://en.wikipedia.org/wiki/Blackletter" style="background: none; color: #0b0080; text-decoration: none;" title="Blackletter">blackletter</a>&nbsp;calligraphy, whether it is signed or has an&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Official_seal" style="background: none; color: #0b0080; text-decoration: none;" title="Official seal">official seal</a>, and what words, dates, or names were on it. Anyone should be able to look at an image of the proclamation and see that it was all written on one page, whether it used that style of calligraphy, and so forth. However, the proclamation's authenticity, meaning, relevance, importance, typicality, influences, and so forth should all be left to the book that analyzed it, not to Wikipedia's editors.</li> <li style="background-color: white; margin-bottom: 0.1em;"><b>An article about a novel:</b>&nbsp;The novel itself is an acceptable primary source for information about the plot, the names of the characters, the number of chapters, or other contents in the book: Any educated person can read Jane Austen's&nbsp;<i>Pride and Prejudice</i>&nbsp;and discover that the main character's name is Elizabeth or that there are 61 chapters. It is not an acceptable source for claims about book's style, themes, foreshadowing, symbolic meaning, values, importance, or other matters of critical analysis, interpretation, or evaluation: No one will find a direct statement of this material in the book.</li> <li style="background-color: white; margin-bottom: 0.1em;"><b>An article about a film:</b>&nbsp;The film itself is an acceptable primary source for information about the plot and the names of the characters. A Wikipedian cannot use the film as a source for claims about the film's themes, importance to the film genre, or other matters that require critical analysis or interpretation.</li> <li style="background-color: white; margin-bottom: 0.1em;"><b>An article about a painting:</b>&nbsp;The painting itself is an acceptable primary source for information about the colors, shapes, and figures in the painting. Any educated person can look at Georgia O'Keeffe's&nbsp;<i>Cow Skull: Red, White, and Blue</i>, and see that it is a painting of a cow's skull on a background of red, white, and blue. It is not an acceptable source for claims about the artist's motivation, allusions or relationships to other works, the meaning of the figures in the painting, or any other matters of analysis, interpretation, or evaluation: Looking at the painting does not tell anyone why the artist chose these colors, whether she meant to evoke religious or patriotic sentiments, or what motivated the composition.</li> <li style="margin-bottom: 0.1em;"><span style="background-color: yellow;"><b>An article about a person:</b>&nbsp;The person's&nbsp;<a href="https://en.wikipedia.org/wiki/Autobiography" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Autobiography">autobiography</a>, own website, or a page about the person on an employer's or publisher's website, is an acceptable (although possibly incomplete) primary<sup class="reference plainlinks nourlexpansion" id="ref_1" style="font-size: 11.2px; line-height: 1; unicode-bidi: isolate; white-space: nowrap;"><a href="https://en.wikipedia.org/wiki/Wikipedia:Identifying_and_using_primary_and_secondary_sources#endnote_1" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;">‡</a></sup>&nbsp;source for information about what the person says about himself or herself. Such primary sources can normally be used for non-controversial facts about the person and for&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:INTEXT" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Wikipedia:INTEXT">clearly attributed</a>&nbsp;controversial statements. Many other primary sources, including&nbsp;<a href="https://en.wikipedia.org/wiki/Birth_certificate" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Birth certificate">birth certificates</a>, the&nbsp;<a href="https://en.wikipedia.org/wiki/Social_Security_Death_Index" style="background-attachment: initial; background-clip: initial; background-image: none; background-origin: initial; background-position: initial; background-repeat: initial; background-size: initial; color: #0b0080; text-decoration: none;" title="Social Security Death Index">Social Security Death Index</a>, and court documents, are usually not acceptable primary sources, because it is impossible for the viewer to know whether the person listed on the document is the notable subject rather than another person who happens to have the same name.</span></li> <li style="background-color: white; margin-bottom: 0.1em;"><b>An article about a business:</b>&nbsp;The organization's own website is an acceptable (although possibly incomplete) primary<sup class="reference plainlinks nourlexpansion" id="ref_1" style="font-size: 11.2px; line-height: 1; unicode-bidi: isolate; white-space: nowrap;"><a href="https://en.wikipedia.org/wiki/Wikipedia:Identifying_and_using_primary_and_secondary_sources#endnote_1" style="background: none; color: #0b0080; text-decoration: none;">‡</a></sup>&nbsp;source for information about what the company says about itself and for most basic facts about its history, products, employees, finances, and facilities. It is not likely to be an acceptable source for most claims about how it or its products compare to similar companies and their products (e.g., "OurCo's Foo is better than Brand X"), although it will be acceptable for some simple, objective comparison claims ("OurCo is the oldest widget business in Smallville" or "OurCo sells more widgets than anyone else in New Zealand"). It is never an acceptable source for claims that evaluate or analyze the company or its actions, such as an analysis of its marketing strategies (e.g., "OurCo's sponsorship of National Breast Cancer Month is an effective tool in expanding sales to middle-aged, middle-class American women").</li> </ul> <div class="refbegin" style="background-color: white; color: #252525; font-family: sans-serif; font-size: 12.6px; margin-bottom: 0.5em;"> <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;">‡&nbsp;<span class="citation wikicite" id="endnote_1" style="word-wrap: break-word;"><b><a href="https://en.wikipedia.org/wiki/Wikipedia:Identifying_and_using_primary_and_secondary_sources#ref_1" style="background: none; color: #0b0080; text-decoration: none;">^</a></b></span>&nbsp;A person's or an organization's website could contain some secondary material about itself, although this is not very common. Such material would still be&nbsp;<a class="mw-redirect" href="https://en.wikipedia.org/wiki/Wikipedia:SPS" style="background: none; color: #0b0080; text-decoration: none;" title="Wikipedia:SPS">self-published</a>&nbsp;as well as first-party/affiliated/non-independent material, and thus would still be subject to restrictions in how you can use it.</dd></dl> </div> </div> </div> <br /> Hang about, didn't he say that primary sources can only be "<i>information on a person's identity; such as: race, religion, gender, sexual orientation, etc"</i>? (and why "sexual orientation"?)<br /> <br /> So in other words, <a href="https://en.wikipedia.org/w/index.php?title=Talk:Salim_Mehajer&amp;oldid=720683401#Researched_information">the following</a> is not allowed?<br /> <br /> <div style="border: 2px double black;"> <h2 style="background: none rgb(255, 255, 255); border-bottom-color: rgb(170, 170, 170); border-bottom-style: solid; border-bottom-width: 1px; font-family: 'Linux Libertine', Georgia, Times, serif; font-weight: normal; line-height: 1.3; margin: 1em 0px em; overflow: hidden; padding: 0px;"> <span class="mw-headline" id="Researched_information">Researched information</span></h2> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> I have put together quite a bit of information about the subject. See below. -&nbsp;<a href="https://en.wikipedia.org/wiki/User:Letsbefiends" style="background: none; color: #0b0080; text-decoration: none;" title="User:Letsbefiends">Letsbefiends</a>&nbsp;(<a href="https://en.wikipedia.org/wiki/User_talk:Letsbefiends" style="background: none; color: #0b0080; text-decoration: none;" title="User talk:Letsbefiends">talk</a>) 14:57, 15 May 2016 (UTC)</div> <dl style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;">Please don't collapse this. It took me a lot of time to gather this material and collapsing it makes it unnecessarily difficult to view it. -&nbsp;<a href="https://en.wikipedia.org/wiki/Special:Contributions/203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="Special:Contributions/203.217.39.91">203.217.39.91</a>&nbsp;(<a href="https://en.wikipedia.org/wiki/User_talk:203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="User talk:203.217.39.91">talk</a>) 12:05, 16 May 2016 (UTC)</dd></dl> <h3 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 1.2em; line-height: 1.6; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Developments">Developments</span></h3> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> OK, so these are developments he owns. They've all been controversial one way or another. -&nbsp;<a href="https://en.wikipedia.org/wiki/Special:Contributions/203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="Special:Contributions/203.217.39.91">203.217.39.91</a>&nbsp;(<a href="https://en.wikipedia.org/wiki/User_talk:203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="User talk:203.217.39.91">talk</a>) 12:09, 16 May 2016 (UTC)</div> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Owns/owned (through Mehajer Bros Pty Ltd)&nbsp;<b>3 Mary St, Auburn</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">There is a DA for this property according to a DA search on Auburn Council's website - DA-416/2011, DA is for "Minor internal alterations and fit out works to existing educational establishment." Applicant is 288 Capital Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=87123073138" rel="nofollow">87 123 073 138</a>, ACN 123 073 138) and approved on 21/12/2011...</li> <li style="margin-bottom: 0.1em;">No council meeting minutes!!!</li> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony (19 March 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/news/investigations/salim-mehajer-eyes-7m-property-sale-jackpot/news-story/03a5fcc796a5dc21ba49b1a2e576ecdd" rel="nofollow">"Salim Mehajer eyes $7m property sale jackpot"</a>. The Australian.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+eyes+%247m+property+sale+jackpot&amp;rft.aufirst=Anthony&amp;rft.aulast=Klan&amp;rft.date=2016-03-19&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnews%2Finvestigations%2Fsalim-mehajer-eyes-7m-property-sale-jackpot%2Fnews-story%2F03a5fcc796a5dc21ba49b1a2e576ecdd&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> </li> </ul> <dl style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.2em;"> <dt style="font-weight: bold; margin-bottom: 0.1em;">Discussion</dt> <dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;">So with this one, it's what got him suspended from council. He didn't disclose ownership of this but passed council business, which is what the tribunal found he did wrong because he was bound to get a substantial material gain from it. -&nbsp;<a href="https://en.wikipedia.org/wiki/Special:Contributions/203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="Special:Contributions/203.217.39.91">203.217.39.91</a>&nbsp;(<a href="https://en.wikipedia.org/wiki/User_talk:203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="User talk:203.217.39.91">talk</a>)</dd></dl> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Development_Applications">Development Applications</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>13-21 John St, Lidcombe</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-119/2012:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Owner: Auburn City Council</li> <li style="margin-bottom: 0.1em;">Applicant: Sydney Constructions &amp; Developers Pty Ltd and Mr S Mehajer (Selim Mehajer)</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202012/Minutes%20of%20the%20Council%20Meeting%20-%2021%20November%202012.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">21 November 2012 Meeting Minutes</a>, Information Report – JRPP - 13-21 John Street, Lidcombe, Page 6</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202012/Business%20Paper%20for%20Council%20Meeting%20-%2021%20November%202012.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">21 November 2012 Business Paper</a>, Information Report – JRPP - 13-21 John Street, Lidcombe, Page 29</li> </ul> </li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>36-38 John St, Lidcombe:</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-290/2012/A:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Zhinar Architects</li> <li style="margin-bottom: 0.1em;">Owner: Sydney Building Constructions Pty Ltd</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2016%20July%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">July 16, 2014 Business Paper</a>, Page 314</li> <li style="margin-bottom: 0.1em;"><a href="http://www.ragaa.org/devsites/johnst36-38.html" rel="nofollow">http://www.ragaa.org/devsites/johnst36-38.html</a></li> </ul> </li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>38 John St, Lidcombe:</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-290/2012/B</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Salim Mehajer</li> <li style="margin-bottom: 0.1em;">Owner: S.E.T Services Pty Ltd</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2019%20November%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">19 November 2014 Business Paper</a>, Page 203</li> </ul> </li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>36-44 John St, Lidcombe:</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA294/2014 (JRPP No: 2014SYW140 DA)</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Project Group</li> <li style="margin-bottom: 0.1em;">Owner: Sydney Project Group Pty Ltd, S.E.T Services Pty Ltd</li> <li style="margin-bottom: 0.1em;">Proposed development:&nbsp;<i>Construction of a 12 storey mixed use development comprising 153 residential units, 16 commercial units with 4 levels of basement parking and 241 car spaces</i></li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.jrpp.nsw.gov.au/DesktopModules/JRPP/getdocument.aspx?docid=13706" rel="nofollow">Cover Sheet</a></li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.jrpp.nsw.gov.au/DesktopModules/JRPP/getdocument.aspx?docid=13709" rel="nofollow">Remediation plan</a>, commissioned by SM Engineering and Constructions Pty Ltd</li> <li style="margin-bottom: 0.1em;">Approved: 4 June 2015</li> <li style="margin-bottom: 0.1em;"><a class="external free" href="http://www.ragaa.org/devsites/johnst36-44.html" rel="nofollow">http://www.ragaa.org/devsites/johnst36-44.html</a></li> </ul> </li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>40-44 John Street, Lidcombe:</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-352/2012/A</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Owner: Mr J G T Vuong and Ms C H Lam (Clr Lam...)</li> <li style="margin-bottom: 0.1em;">Sydney Project Group Pty Ltd</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2016%20July%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">16 July 2014 Business Paper</a>, Page 354</li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-352/2012/B</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Salim Mehajer</li> <li style="margin-bottom: 0.1em;">Owner: Mr J G T Vuong and Ms C H Lam (Councillor Lam...)</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2015%20October%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">15 Octomber 2014 Business Paper</a>, Page 121</li> </ul> </li> <li style="margin-bottom: 0.1em;"><a class="external free" href="http://www.ragaa.org/devsites/johnst4044.html" rel="nofollow">http://www.ragaa.org/devsites/johnst4044.html</a></li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>52-56 John Street and 1A Childs Street, Lidcombe:</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-507/2005:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Building Construction Pty Limited</li> <li style="margin-bottom: 0.1em;">Owner: Mr M Mehajer and Mrs A Mehajer</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202008/Agenda%20-%20Council%20Meeting%20-%203%20December%202008.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">December 3, 2008 Business Paper</a>, Page 202</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202009/Agenda%20for%20Council%20Meeting%20-%2019%20August%202009.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">August 19, 2009 Business Paper</a>, Page 142</li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-241/2010:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Building Construction Pty Limited</li> <li style="margin-bottom: 0.1em;">Owner: Mr M Mehajer and Mrs A Mehajer</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202010/Business%20Paper%20for%20Extraordinary%20Council%20Meeting%20-%2028%20September%202010.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">28 September 2010 Business Paper for Extraordinary Council Meeting</a>, page 69</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202010/Business%20Paper%20for%20Council%20Meeting%20-%2020%20October%202010.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">October 20, 2010 Business Paper - Notice of Rescission Motion - 52-56 John Street, Lidcombe</a>, page 74</li> </ul> </li> <li style="margin-bottom: 0.1em;"><a class="external free" href="http://www.ragaa.org/devsites/johnst.html" rel="nofollow">http://www.ragaa.org/devsites/johnst.html</a></li> </ul> </li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><b>46-50A John Street, Lidcombe</b><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-627/2003/B:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Building Construction Pty Limited</li> <li style="margin-bottom: 0.1em;">Owner: Mr M Mehajer and Mrs A Mehajer</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202008/Agenda%20-%20Council%20Meeting%20-%207%20May%202008.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">May 7, 2008 Business Paper</a>, Page 15</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202009/Agenda%20for%20Council%20Meeting%20-%2019%20August%202009.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">August 19, 2009 Meeting Agenda</a>, Page 142</li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-240/2010:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Building Construction Pty Limited</li> <li style="margin-bottom: 0.1em;">Owner: Mr M Mehajer and Mrs A Mehajer</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202010/Business%20Paper%20for%20Extraordinary%20Council%20Meeting%20-%2028%20September%202010.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">28 September 2010 Business Paper for Extraordinary Council Meeting</a>, page 32</li> <li style="margin-bottom: 0.1em;">Auburn Council&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202010/Business%20Paper%20for%20Council%20Meeting%20-%2020%20October%202010.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">October 20, 2010 Business Paper - Notice of Rescission Motion - 46-50A John Street, Lidcombe</a>, page 34</li> </ul> </li> <li style="margin-bottom: 0.1em;"><a class="external free" href="http://www.ragaa.org/devsites/johnst4650.html" rel="nofollow">http://www.ragaa.org/devsites/johnst4650.html</a></li> </ul> </li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Salim_Mehajer_home">Salim Mehajer home</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">14 Frances St, Lidcombe<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><i>DA-79/2009:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Granted 9 June 2009<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">There are no minutes for this meeting!!!</li> </ul> </li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-79/2009/B:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Sydney Project Group Pty Ltd</li> <li style="margin-bottom: 0.1em;">Owner: Salim Mehajer</li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2019%20November%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">19 November 2014 Business Meeting</a></li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-232/2008:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Granted 28 November 2008<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">There are no minutes for this meeting!!!</li> <li style="margin-bottom: 0.1em;"><i>Council under delegated authority approved Development Application Number 232/2008 for demolition of existing dwelling, removal of a tree and construction of two storey dwelling house with basement carpark, a front fence, an outbuilding and a BBQ facility subject to conditions.</i>&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2019%20November%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">Business Paper</a>, Page 299</li> </ul> </li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-232/2008/E:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Application: Sydney Project Group Pty Ltd</li> <li style="margin-bottom: 0.1em;">Owner: Salim Mehajer</li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Business%20Paper%20for%20Council%20Meeting%20-%2019%20November%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">19 November Business Paper</a>, Page 299</li> <li style="margin-bottom: 0.1em;"><i>Section 96(1A) modification to increase height of lift and stair overruns and for changes to internal layout of dwelling.</i></li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202014/Minutes%20of%20the%20Council%20Meeting%20-%203%20December%202014.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">Rescinded!</a>&nbsp;- meeting minutes 3 December 2014, only one opposed Clr. Oldfield</li> </ul> </li> <li style="margin-bottom: 0.1em;"><i>DA-232/2008/F:</i><ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Applicant: Advanced International Developments Pty Ltd</li> <li style="margin-bottom: 0.1em;">Owner: Salim Mehajer</li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.auburn.nsw.gov.au/Develop/AIAP%20Reports/Business%20Paper%20for%20the%20Auburn%20Independent%20Assessment%20Panel%20Meeting%20-%206%20April%202016.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">Auburn Independent Assessment Panel Meeting</a>, 6 April 2016, Page 4</li> <li style="margin-bottom: 0.1em;">"The subject Section 96(1A) application DA-232/2008/F is lodged to the Council for determination for modifications to approved plans associated with DA-232/2008 to increase height of rear and side boundary fences to 2.1m (from 1.8m), and replace approved grass in the nature strip outside the front of the property with artificial grass" - refused</li> </ul> </li> </ul> </li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Council_Car_Park">Council Car Park</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">13 John St, Lidcombe<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Sale clause was in&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202011/Minutes%20of%20the%20Council%20Meeting%20-%2016%20November%202011.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">333/11</a>&nbsp;of council minutes of 16 November 2011:<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">"In the event that the Purchaser does not obtain the Development Consent for the subject property and the adjoining property within eighteen (18) months from the date hereof then either party may be at liberty to rescind this contract whereupon the provisions of Clause 19 shall apply"</li> <li style="margin-bottom: 0.1em;">"That Simon Diab &amp; Associates on behalf of Sydney Constructions &amp; Developments Pty Limited be advised of Council’s decision."</li> </ul> </li> <li style="margin-bottom: 0.1em;">In the council Business Paper for their meeting 21 November, it states that:<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">"Sydney Constructions and Developments Pty Limited (Purchaser) submitted Development Application 119/2012 (DA) on 20 April 2012, for a mixed use development over the properties at 15, 19 and 21 John Street and Council’s open car park at 13 John Street Lidcombe. The DA is being assessed externally by a Planning Consultant and will be determined by the Joint Regional Planning Panel." (<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202012/Business%20Paper%20for%20Council%20Meeting%20-%2021%20November%202012.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">Background, page 125</a>)</li> </ul> </li> <li style="margin-bottom: 0.1em;">Council chooses to&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202012/Item%20300A-12%20-%20Notice%20of%20Rescission%20Motion%20-%20Sale%20of%20Council's%20Car%20Park%20at%2013%20John%20Street,%20Lidcombe.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">rescind sale</a>&nbsp;to original purchaser and sells car park to Sydney Constructions and Developments Pty Ltd for $6.5 million (see&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20Papers%202012/Minutes%20of%20the%20Council%20Meeting%20-%205%20December%202012.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">300A/12</a>&nbsp;of Council meeting minutes for 5 December 2012).</li> <li style="margin-bottom: 0.1em;">Request is made to reduce the holding deposit for the sale of the Car Park, which is discussed under closed session on&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20papers%202013/Minutes%20of%20the%20Planning%20Committee%20Meeting%20-%2020%20November%202013.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">20 November 2013</a>, on the grounds that open discussion would "contain information that would, if disclosed, confer a commercial advantage on a person with whom the Council is conducting (or proposes to conduct) business".</li> <li style="margin-bottom: 0.1em;">Council decides to reduce the deposit to 5% - or $325,000 (see&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20papers%202013/Minutes%20of%20the%20Council%20Meeting%20-%204%20December%202013.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">C039/13</a>&nbsp;of Council minutes of meeting held 4 December 2013)<ul style="list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); list-style-type: disc; margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;">Note! I cannot find item C038/13 which was rescinded! There appears to be a set of meeting minutes missing...</li> </ul> </li> <li style="margin-bottom: 0.1em;">On 11 December 2013, Clr Simms attempts to rescind reduction in holding deposit,&nbsp;<a class="external text" href="http://www.auburn.nsw.gov.au/Govern1/CouncilMeetings/Business%20papers%202013/Minutes%20of%20the%20Council%20Meeting%20-%2011%20December%202013.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;">C040/13</a>&nbsp;but motion is lost (For: Councillors Campbell, Batik, Oldfield and Simms; Against: Zraika, Attie, Lam, Oueik, and Yang).</li> </ul> </li> </ul> <dl style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.2em;"> <dt style="font-weight: bold; margin-bottom: 0.1em;">Discussion</dt> </dl> <div style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.5em;"> The council car park was very controversial. See-Win won it initially, but asked for more time. Council rescinded the contract though. But when Mehajer asked to reduce his holding deposit by half, it was initially opposed and then pushed through by the other councillors. I distinct;y remember press at the time commenting on this, I'll have to see if I can find it. -&nbsp;<a href="https://en.wikipedia.org/wiki/Special:Contributions/203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="Special:Contributions/203.217.39.91">203.217.39.91</a>&nbsp;(<a href="https://en.wikipedia.org/wiki/User_talk:203.217.39.91" style="background: none; color: #0b0080; text-decoration: none;" title="User talk:203.217.39.91">talk</a>) 12:13, 16 May 2016 (UTC)</div> <h3 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 1.2em; line-height: 1.6; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="In_the_news">In the news</span></h3> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="His_home">His home</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha (28 October 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-council-deputy-mayor-salim-mehajer-being-sued-for-his-staircase-20151028-gkkgaf.html" rel="nofollow">"Auburn Council deputy mayor Salim Mehajer being sued for his staircase"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+Council+deputy+mayor+Salim+Mehajer+being+sued+for+his+staircase&amp;rft.aufirst=Leesha&amp;rft.aulast=McKenny&amp;rft.date=2015-10-28&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-council-deputy-mayor-salim-mehajer-being-sued-for-his-staircase-20151028-gkkgaf.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Thomson, Warren (6 April 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/newslocal/parramatta/salim-mehajer-in-trouble-with-auburn-council-after-installing-artificial-turf-without-consent/news-story/15318f0266247bbcf0045b9fc3a57e84" rel="nofollow">"Salim Mehajer in trouble with Auburn Council after installing artificial turf without consent"</a>. Parramatta Advertiser.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+in+trouble+with+Auburn+Council+after+installing+artificial+turf+without+consent&amp;rft.aufirst=Warren&amp;rft.aulast=Thomson&amp;rft.date=2016-04-06&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnewslocal%2Fparramatta%2Fsalim-mehajer-in-trouble-with-auburn-council-after-installing-artificial-turf-without-consent%2Fnews-story%2F15318f0266247bbcf0045b9fc3a57e84&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.skynews.com.au/news/national/nsw/2016/04/06/mehajer-under-fire-over-home.html" rel="nofollow">"Mehajer under fire over home"</a>. Sky News. 6 April 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Mehajer+under+fire+over+home&amp;rft.date=2016-04-06&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.skynews.com.au%2Fnews%2Fnational%2Fnsw%2F2016%2F04%2F06%2Fmehajer-under-fire-over-home.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Property_development_and_Auburn_City_Council">Property development and Auburn City Council</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Murphy, Damien (16 August 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/yo-you-da-man-and-da-groom-20150816-gj07dw.html" rel="nofollow">"Auburn Deputy Mayor Salim Mehajer wedding was delayed until father's release from jail"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+Deputy+Mayor+Salim+Mehajer+wedding+was+delayed+until+father%27s+release+from+jail&amp;rft.aufirst=Damien&amp;rft.aulast=Murphy&amp;rft.date=2015-08-16&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fyo-you-da-man-and-da-groom-20150816-gj07dw.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Robertson, James (6 May 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajers-big-pay-day-20160506-gontv5" rel="nofollow">"Salim Mehajer secures $65m in loans to build apartment complex"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+secures+%2465m+in+loans+to+build+apartment+complex&amp;rft.aufirst=James&amp;rft.aulast=Robertson&amp;rft.date=2016-05-06&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajers-big-pay-day-20160506-gontv5&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony (19 March 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/news/investigations/salim-mehajer-eyes-7m-property-sale-jackpot/news-story/03a5fcc796a5dc21ba49b1a2e576ecdd" rel="nofollow">"Salim Mehajer eyes $7m property sale jackpot"</a>. The Australian.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+eyes+%247m+property+sale+jackpot&amp;rft.aufirst=Anthony&amp;rft.aulast=Klan&amp;rft.date=2016-03-19&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnews%2Finvestigations%2Fsalim-mehajer-eyes-7m-property-sale-jackpot%2Fnews-story%2F03a5fcc796a5dc21ba49b1a2e576ecdd&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony (19 March 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/news/investigations/salim-mehajer-eyes-7m-property-sale-jackpot/news-story/03a5fcc796a5dc21ba49b1a2e576ecdd" rel="nofollow">"Salim Mehajer eyes $7m property sale jackpot"</a>. The Australian.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+eyes+%247m+property+sale+jackpot&amp;rft.aufirst=Anthony&amp;rft.aulast=Klan&amp;rft.date=2016-03-19&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnews%2Finvestigations%2Fsalim-mehajer-eyes-7m-property-sale-jackpot%2Fnews-story%2F03a5fcc796a5dc21ba49b1a2e576ecdd&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Godfrey, Miles (19 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/salim-mehajer-accuses-former-colleagues-after-council-decisions-went-against-him/news-story/abfaa117beadeab02772424a6de2093e" rel="nofollow">"Salim Mehajer accuses former colleagues after council decisions went against him"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+accuses+former+colleagues+after+council+decisions+went+against+him&amp;rft.aufirst=Miles&amp;rft.aulast=Godfrey&amp;rft.date=2016-02-19&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fsalim-mehajer-accuses-former-colleagues-after-council-decisions-went-against-him%2Fnews-story%2Fabfaa117beadeab02772424a6de2093e&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Kidd, Jessica (18 February 2016).&nbsp;<a class="external text" href="http://www.abc.net.au/news/2016-02-18/salim-mehajer-claims-former-counsellors-jealous-of-his-success/7180126" rel="nofollow">"Salim Mehajer rebukes 'dole bludger' Auburn council colleagues after planning decisions overturned"</a>. ABC News.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+rebukes+%27dole+bludger%27+Auburn+council+colleagues+after+planning+decisions+overturned&amp;rft.aufirst=Jessica&amp;rft.aulast=Kidd&amp;rft.date=2016-02-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.abc.net.au%2Fnews%2F2016-02-18%2Fsalim-mehajer-claims-former-counsellors-jealous-of-his-success%2F7180126&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Robertson, James (18 February 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajer-goes-on-front-foot-after-auburn-council-decisions-overturned-20160218-gmx795.html" rel="nofollow">"Salim Mehajer defiant after Auburn council decisions overturned"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+defiant+after+Auburn+council+decisions+overturned&amp;rft.aufirst=James&amp;rft.aulast=Robertson&amp;rft.date=2016-02-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajer-goes-on-front-foot-after-auburn-council-decisions-overturned-20160218-gmx795.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Thomson, Warren (18 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/newslocal/parramatta/administrator-blocks-salim-mehajers-purchase-of-an-auburn-council-carpark-in-lidcombe/news-story/fabe3fa8fbe7def1059a893560c629d9" rel="nofollow">"Administrator blocks Salim Mehajer’s purchase of an Auburn Council carpark in Lidcombe"</a>. Parramatta Advertiser.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Administrator+blocks+Salim+Mehajer%99s+purchase+of+an+Auburn+Council+carpark+in+Lidcombe&amp;rft.aufirst=Warren&amp;rft.aulast=Thomson&amp;rft.date=2016-02-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnewslocal%2Fparramatta%2Fadministrator-blocks-salim-mehajers-purchase-of-an-auburn-council-carpark-in-lidcombe%2Fnews-story%2Ffabe3fa8fbe7def1059a893560c629d9&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.abc.net.au/news/2016-02-17/auburn-council-administrator-reverses-salim-mehajer-decision/7178732" rel="nofollow">"Auburn Council administrator reverses decisions set to benefit Salim Mehajer"</a>. ABC News. 18 February 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+Council+administrator+reverses+decisions+set+to+benefit+Salim+Mehajer&amp;rft.date=2016-02-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.abc.net.au%2Fnews%2F2016-02-17%2Fauburn-council-administrator-reverses-salim-mehajer-decision%2F7178732&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Thomson, Warren (17 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/nsw/auburn-council-deal-to-sell-council-carpark-to-salim-mehajer-overturned/news-story/02e50dd27dd08e228b104d1e9bbad4f0" rel="nofollow">"Auburn Council: Deal to sell council carpark to Salim Mehajer overturned"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+Council%3A+Deal+to+sell+council+carpark+to+Salim+Mehajer+overturned&amp;rft.aufirst=Warren&amp;rft.aulast=Thomson&amp;rft.date=2016-02-17&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fnsw%2Fauburn-council-deal-to-sell-council-carpark-to-salim-mehajer-overturned%2Fnews-story%2F02e50dd27dd08e228b104d1e9bbad4f0&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Brook, Benedict (11 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/business/the-apartment-block-that-brought-down-a-council-and-could-cost-salim-mehajer-millions/news-story/acbaa85de088fff420ec877753afb22c" rel="nofollow">"The apartment block that brought down a council and could cost Salim Mehajer millions"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=The+apartment+block+that+brought+down+a+council+and+could+cost+Salim+Mehajer+millions&amp;rft.aufirst=Benedict&amp;rft.aulast=Brook&amp;rft.date=2016-02-11&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fbusiness%2Fthe-apartment-block-that-brought-down-a-council-and-could-cost-salim-mehajer-millions%2Fnews-story%2Facbaa85de088fff420ec877753afb22c&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Godfrey, Miles (11 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/newslocal/parramatta/auburn-council-sacked-by-state-government-following-allegations-of-improper-conduct/news-story/cf5d0af831b43b5ebc97890ed6fc147b" rel="nofollow">"Auburn Council sacked by State Government following allegations of improper conduct"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+Council+sacked+by+State+Government+following+allegations+of+improper+conduct&amp;rft.aufirst=Miles&amp;rft.aulast=Godfrey&amp;rft.date=2016-02-11&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnewslocal%2Fparramatta%2Fauburn-council-sacked-by-state-government-following-allegations-of-improper-conduct%2Fnews-story%2Fcf5d0af831b43b5ebc97890ed6fc147b&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Brook, Benedict (10 February 2016).&nbsp;<a class="external text" href="http://www.news.com.au/finance/work/leaders/salim-mehajer-says-auburn-sacking-an-abuse-of-power-by-nsw-government/news-story/504fe4fa24d38d6cf3f5a6691876f558" rel="nofollow">"Salim Mehajer says Auburn sacking an “abuse of power” by NSW Government"</a>. news.com.au.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+says+Auburn+sacking+an+%9Cabuse+of+power%9D+by+NSW+Government&amp;rft.aufirst=Benedict&amp;rft.aulast=Brook&amp;rft.date=2016-02-10&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.news.com.au%2Ffinance%2Fwork%2Fleaders%2Fsalim-mehajer-says-auburn-sacking-an-abuse-of-power-by-nsw-government%2Fnews-story%2F504fe4fa24d38d6cf3f5a6691876f558&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.bbc.co.uk/news/world-australia-35490225" rel="nofollow">"<span style="padding-left: 0.2em;">'</span>Mr Teflon': Sydney's showiest politician comes unstuck"</a>. BBC News. 5 February 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=%27Mr+Teflon%27%3A+Sydney%27s+showiest+politician+comes+unstuck&amp;rft.date=2016-02-05&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.bbc.co.uk%2Fnews%2Fworld-australia-35490225&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <dl style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin-bottom: 0.5em; margin-top: 0.2em;"> <dt style="font-weight: bold; margin-bottom: 0.1em;">Changing the Auburn LEP</dt> </dl> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Silmalis, Linda (22 August 2015).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/nsw/auburn-councillors-push-to-ban-developers-from-sitting-on-all-councils/news-story/3350a466b76b332080f6c8ed5f7ece6b" rel="nofollow">"How deputy mayor Salim Mehajer and mayor Ronney Oueik struck property gold in Auburn"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=How+deputy+mayor+Salim+Mehajer+and+mayor+Ronney+Oueik+struck+property+gold+in+Auburn&amp;rft.aufirst=Linda&amp;rft.aulast=Silmalis&amp;rft.date=2015-08-22&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fnsw%2Fauburn-councillors-push-to-ban-developers-from-sitting-on-all-councils%2Fnews-story%2F3350a466b76b332080f6c8ed5f7ece6b&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Police_investigations.2FCourt_cases.2FTribunals">Police investigations/Court cases/Tribunals</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (10 August 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-deputy-mayor-salim-mehajer-faces-tribunal-over-alleged-breach-of-pecuniary-interest-laws-20151109-gkuxbv.html" rel="nofollow">"Auburn deputy mayor Salim Mehajer faces tribunal over alleged breach of pecuniary interest laws"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+deputy+mayor+Salim+Mehajer+faces+tribunal+over+alleged+breach+of+pecuniary+interest+laws&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2015-08-10&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-deputy-mayor-salim-mehajer-faces-tribunal-over-alleged-breach-of-pecuniary-interest-laws-20151109-gkuxbv.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (8 September 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-deputy-mayor-salim-mehajer-and-companies-being-sued-for-almost-2-million-20150908-gjhqmw.html" rel="nofollow">"Auburn deputy mayor Salim Mehajer and companies being sued for almost $2 million"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+deputy+mayor+Salim+Mehajer+and+companies+being+sued+for+almost+%242+million&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2015-09-08&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-deputy-mayor-salim-mehajer-and-companies-being-sued-for-almost-2-million-20150908-gjhqmw.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha; Whitbourn, Michaela (27 October 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-deputy-mayor-salim-mehajers-right-hand-man-admits-forging-documents-20151027-gkk01f.html" rel="nofollow">"Auburn deputy mayor Salim Mehajer's 'right hand man' admits forging documents"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+deputy+mayor+Salim+Mehajer%27s+%27right+hand+man%27+admits+forging+documents&amp;rft.aufirst=Leesha&amp;rft.aulast=McKenny&amp;rft.au=Whitbourn%2C+Michaela&amp;rft.date=2015-10-27&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-deputy-mayor-salim-mehajers-right-hand-man-admits-forging-documents-20151027-gkk01f.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha; Whitbourn, Michaela (27 October 2015).&nbsp;<a class="external text" href="http://www.brisbanetimes.com.au/nsw/auburn-deputy-mayor-salim-mehajer-and-partner-being-sued-for-almost-700000-20151026-gkj4a4.html" rel="nofollow">"Auburn deputy mayor Salim Mehajer and partner being sued for almost $700,000"</a>. The Brisbane Times.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+deputy+mayor+Salim+Mehajer+and+partner+being+sued+for+almost+%24700%2C000&amp;rft.aufirst=Leesha&amp;rft.aulast=McKenny&amp;rft.au=Whitbourn%2C+Michaela&amp;rft.date=2015-10-27&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.brisbanetimes.com.au%2Fnsw%2Fauburn-deputy-mayor-salim-mehajer-and-partner-being-sued-for-almost-700000-20151026-gkj4a4.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha; Whitbourn, Michaela (18 November 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-deputy-mayor-salim-mehajer-in-court-over-driving-charges-20151118-gl1nsk.html" rel="nofollow">"Auburn deputy mayor Salim Mehajer in court over driving charges"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+deputy+mayor+Salim+Mehajer+in+court+over+driving+charges&amp;rft.aufirst=Leesha&amp;rft.aulast=McKenny&amp;rft.au=Whitbourn%2C+Michaela&amp;rft.date=2015-11-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-deputy-mayor-salim-mehajer-in-court-over-driving-charges-20151118-gl1nsk.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (20 December 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajer-facing-10-years-in-jail-on-vote-fraud-charges-20151220-glrrnm.html" rel="nofollow">"Salim Mehajer facing 10 years' jail on vote fraud charges blames 'hidden agendas<span style="padding-right: 0.2em;">'</span>"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+facing+10+years%27+jail+on+vote+fraud+charges+blames+%27hidden+agendas%27&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2015-12-20&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajer-facing-10-years-in-jail-on-vote-fraud-charges-20151220-glrrnm.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (29 January 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajer-suspended-from-office-for-failing-to-disclose-financial-interests-20160128-gmglce.html" rel="nofollow">"Salim Mehajer suspended for voting without disclosure, adding $1m to property's value"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+suspended+for+voting+without+disclosure%2C+adding+%241m+to+property%27s+value&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2016-01-29&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajer-suspended-from-office-for-failing-to-disclose-financial-interests-20160128-gmglce.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (3 February 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajer-launches-urgent-appeal-against-suspension-from-council-20160203-gmkvpa.html" rel="nofollow">"Salim Mehajer launches urgent appeal against suspension from council"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+launches+urgent+appeal+against+suspension+from+council&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2016-02-03&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajer-launches-urgent-appeal-against-suspension-from-council-20160203-gmkvpa.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Robertson, James (5 February 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/auburn-councillor-salim-mehajers-unusual-defence-in-court-it-may-be-unattractive-but-we-believe-it-20160205-gmmvpx.html" rel="nofollow">"Auburn councillor Salim Mehajer's unusual defence in court: 'It may be unattractive but we believe it<span style="padding-right: 0.2em;">'</span>"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Auburn+councillor+Salim+Mehajer%27s+unusual+defence+in+court%3A+%27It+may+be+unattractive+but+we+believe+it%27&amp;rft.aufirst=James&amp;rft.aulast=Robertson&amp;rft.date=2016-02-05&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fauburn-councillor-salim-mehajers-unusual-defence-in-court-it-may-be-unattractive-but-we-believe-it-20160205-gmmvpx.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Hills, Brenden (1 May 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/salim-mehajer-lodged-documents-claiming-alleged-criminal-lived-in-widows-home/news-story/b06395c6469d10f2d33bf28c4b3fd9f4" rel="nofollow">"Salim Mehajer lodged documents claiming alleged criminal lived in widow’s home"</a>. The Sunday Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+lodged+documents+claiming+alleged+criminal+lived+in+widow%99s+home&amp;rft.aufirst=Brenden&amp;rft.aulast=Hills&amp;rft.date=2016-05-01&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fsalim-mehajer-lodged-documents-claiming-alleged-criminal-lived-in-widows-home%2Fnews-story%2Fb06395c6469d10f2d33bf28c4b3fd9f4&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Quinn, Liam (24 April 2016).&nbsp;<a class="external text" href="http://www.dailymail.co.uk/news/article-3555938/Charges-dropped-against-six-people-accused-rigging-Auburn-Council-election-Salim-Mehajer.html" rel="nofollow">"Salim chance of a comeback? Case against six people accused of rigging council vote to get suspended deputy Mayor Mehajer elected ‘has fallen apart because police waiting too long to charge them’"</a>. Daily Mail.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+chance+of+a+comeback%3F+Case+against+six+people+accused+of+rigging+council+vote+to+get+suspended+deputy+Mayor+Mehajer+elected+%98has+fallen+apart+because+police+waiting+too+long+to+charge+them%99&amp;rft.aufirst=Liam&amp;rft.aulast=Quinn&amp;rft.date=2016-04-24&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-3555938%2FCharges-dropped-against-six-people-accused-rigging-Auburn-Council-election-Salim-Mehajer.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Hills, Brenden (24 April 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/salim-mehajer-case-time-delay-kills-off-charges-against-six/news-story/02db60ee3e662afa8b925fbc14fe6c52" rel="nofollow">"Salim Mehajer case: Time delay kills off charges against six"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+case%3A+Time+delay+kills+off+charges+against+six&amp;rft.aufirst=Brenden&amp;rft.aulast=Hills&amp;rft.date=2016-04-24&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fsalim-mehajer-case-time-delay-kills-off-charges-against-six%2Fnews-story%2F02db60ee3e662afa8b925fbc14fe6c52&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Robertson, James (18 April 2016).&nbsp;<a class="external text" href="http://www.brisbanetimes.com.au/nsw/salim-mehajer-company-fights-windup-move-20160418-go8wj0.html" rel="nofollow">"Salim Mehajer company fights wind-up move"</a>. The Brisbane Times.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+company+fights+wind-up+move&amp;rft.aufirst=James&amp;rft.aulast=Robertson&amp;rft.date=2016-04-18&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.brisbanetimes.com.au%2Fnsw%2Fsalim-mehajer-company-fights-windup-move-20160418-go8wj0.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Awford, Jenny (10 April 2016).&nbsp;<a class="external text" href="http://www.dailymail.co.uk/news/article-3532118/Stream-voter-forms-sparked-probe-Salim-Mehajer.html" rel="nofollow">"<span style="padding-left: 0.2em;">'</span>Stream of voter forms faxed from the SAME fax number sparked electoral fraud probe' against controversial Auburn deputy mayor Salim Mehajer"</a>. Daily Mail.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=%27Stream+of+voter+forms+faxed+from+the+SAME+fax+number+sparked+electoral+fraud+probe%27+against+controversial+Auburn+deputy+mayor+Salim+Mehajer&amp;rft.aufirst=Jenny&amp;rft.aulast=Awford&amp;rft.date=2016-04-10&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-3532118%2FStream-voter-forms-sparked-probe-Salim-Mehajer.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Hills, Brenden (10 April 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/salim-mehajer-probe-fax-marathon-of-57-voter-enrolment-forms-is-smoking-gun-prosecutors-say/news-story/e5d2110045bbdd340a130aee4380d27f" rel="nofollow">"Salim Mehajer probe: Fax marathon of 57 voter enrolment forms is smoking gun, prosecutors say"</a>. The Sunday Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+probe%3A+Fax+marathon+of+57+voter+enrolment+forms+is+smoking+gun%2C+prosecutors+say&amp;rft.aufirst=Brenden&amp;rft.aulast=Hills&amp;rft.date=2016-04-10&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fsalim-mehajer-probe-fax-marathon-of-57-voter-enrolment-forms-is-smoking-gun-prosecutors-say%2Fnews-story%2Fe5d2110045bbdd340a130aee4380d27f&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Rushton, Gina (31 March 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/news/investigations/court-orders-state-to-pay-salim-mehajer-legal-costs/news-story/92d60f6d16f5a5c599419a8f5278e79f" rel="nofollow">"Court orders state to pay Salim Mehajer legal costs"</a>. The Australian.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Court+orders+state+to+pay+Salim+Mehajer+legal+costs&amp;rft.aufirst=Gina&amp;rft.aulast=Rushton&amp;rft.date=2016-03-31&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnews%2Finvestigations%2Fcourt-orders-state-to-pay-salim-mehajer-legal-costs%2Fnews-story%2F92d60f6d16f5a5c599419a8f5278e79f&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Rushton, Gina (30 March 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/national-affairs/state-politics/salim-mehajer-nsw-taxpayers-to-foot-legal-bill-for-auburn-fight/news-story/7ec27d0fb745e4c465b43b000be1c6f2" rel="nofollow">"Salim Mehajer: NSW taxpayers to foot legal bill for Auburn figh"</a>. The Australian.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer%3A+NSW+taxpayers+to+foot+legal+bill+for+Auburn+figh&amp;rft.aufirst=Gina&amp;rft.aulast=Rushton&amp;rft.date=2016-03-30&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnational-affairs%2Fstate-politics%2Fsalim-mehajer-nsw-taxpayers-to-foot-legal-bill-for-auburn-fight%2Fnews-story%2F7ec27d0fb745e4c465b43b000be1c6f2&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Brook, Benedict (30 March 2016).&nbsp;<a class="external text" href="http://www.news.com.au/national/nsw-act/courts-law/nsw-government-forced-to-pay-legal-costs-of-former-auburn-deputy-mayor-salim-mehajer/news-story/d0c289e4e672e86b606adfb390c40a93" rel="nofollow">"NSW Government forced to pay legal costs of former Auburn Deputy Mayor Salim Mehajer"</a>. news.com.au.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=NSW+Government+forced+to+pay+legal+costs+of+former+Auburn+Deputy+Mayor+Salim+Mehajer&amp;rft.aufirst=Benedict&amp;rft.aulast=Brook&amp;rft.date=2016-03-30&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.news.com.au%2Fnational%2Fnsw-act%2Fcourts-law%2Fnsw-government-forced-to-pay-legal-costs-of-former-auburn-deputy-mayor-salim-mehajer%2Fnews-story%2Fd0c289e4e672e86b606adfb390c40a93&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Whitbourn, Michaela (30 March 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/state-government-ordered-to-pay-salim-mehajers-legal-costs-20160329-gntsol.html" rel="nofollow">"State government ordered to pay Salim Mehajer's legal costs"</a>. The Sydney Morning Herald.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=State+government+ordered+to+pay+Salim+Mehajer%27s+legal+costs&amp;rft.aufirst=Michaela&amp;rft.aulast=Whitbourn&amp;rft.date=2016-03-30&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fstate-government-ordered-to-pay-salim-mehajers-legal-costs-20160329-gntsol.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="https://au.news.yahoo.com/nsw/a/31187206/salim-mehajers-family-business-empire-cracking-under-legal-strains/" rel="nofollow">"Salim Mehajer's family business empire cracking under legal strains"</a>. Yahoo7 News. 25 March 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer%27s+family+business+empire+cracking+under+legal+strains&amp;rft.date=2016-03-25&amp;rft.genre=article&amp;rft_id=https%3A%2F%2Fau.news.yahoo.com%2Fnsw%2Fa%2F31187206%2Fsalim-mehajers-family-business-empire-cracking-under-legal-strains%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Crawford, Sarah (26 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/nsw/salim-mehajer-wins-hollow-victory-appeal-against-auburn-council-suspension/news-story/ae2e3c528560c34bea08f50fdb66695d" rel="nofollow">"Salim Mehajer wins appeal against Auburn Council suspension"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+wins+appeal+against+Auburn+Council+suspension&amp;rft.aufirst=Sarah&amp;rft.aulast=Crawford&amp;rft.date=2016-02-26&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fnsw%2Fsalim-mehajer-wins-hollow-victory-appeal-against-auburn-council-suspension%2Fnews-story%2Fae2e3c528560c34bea08f50fdb66695d&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Seymour, Bryan (16 February 2016).&nbsp;<a class="external text" href="https://au.news.yahoo.com/a/30839350/reality-tv-star-embroiled-in-salims-dodgy-demerit-point-transfer/" rel="nofollow">"Reality TV star embroiled in Salim's 'dodgy demerit point transfer<span style="padding-right: 0.2em;">'</span>"</a>. Yahoo7 News.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Reality+TV+star+embroiled+in+Salim%27s+%27dodgy+demerit+point+transfer%27&amp;rft.aufirst=Bryan&amp;rft.aulast=Seymour&amp;rft.date=2016-02-16&amp;rft.genre=article&amp;rft_id=https%3A%2F%2Fau.news.yahoo.com%2Fa%2F30839350%2Freality-tv-star-embroiled-in-salims-dodgy-demerit-point-transfer%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Seymour, Bryan (2 February 2016).&nbsp;<a class="external text" href="https://au.news.yahoo.com/a/30716404/salims-cut-price-cars-mehajers-650-000-rolls-royce-valued-to-the-rms-for-just-65-000/" rel="nofollow">"Salim's cut-price cars: Mehajer's $650,000 Rolls Royce valued to the RMS for just $65,000"</a>. 7News Sydney.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim%27s+cut-price+cars%3A+Mehajer%27s+%24650%2C000+Rolls+Royce+valued+to+the+RMS+for+just+%2465%2C000&amp;rft.aufirst=Bryan&amp;rft.aulast=Seymour&amp;rft.date=2016-02-02&amp;rft.genre=article&amp;rft_id=https%3A%2F%2Fau.news.yahoo.com%2Fa%2F30716404%2Fsalims-cut-price-cars-mehajers-650-000-rolls-royce-valued-to-the-rms-for-just-65-000%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McClellan, Ben; Bamford, Matt (2 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/news/nsw/salim-mehajer-and-his-sister-fatima-accused-of-local-council-voting-fraud/news-story/3942d7ba9ce39085b60ebd9646c18597" rel="nofollow">"Salim Mehajer and his sister Fatima accused of local council voting fraud"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+and+his+sister+Fatima+accused+of+local+council+voting+fraud&amp;rft.au=Bamford%2C+Matt&amp;rft.aufirst=Ben&amp;rft.aulast=McClellan&amp;rft.date=2016-02-02&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fnews%2Fnsw%2Fsalim-mehajer-and-his-sister-fatima-accused-of-local-council-voting-fraud%2Fnews-story%2F3942d7ba9ce39085b60ebd9646c18597&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.news.com.au/national/nsw-act/salim-mehajer-chooses-not-to-appear-at-court-to-face-electoral-fraud-charges/news-story/190d4c3bd5d86b5897af7e3b5e77c1ea" rel="nofollow">"Salim Mehajer chooses not to appear at court to face electoral fraud charges"</a>. news.com.au. 2 February 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+chooses+not+to+appear+at+court+to+face+electoral+fraud+charges&amp;rft.date=2016-02-02&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.news.com.au%2Fnational%2Fnsw-act%2Fsalim-mehajer-chooses-not-to-appear-at-court-to-face-electoral-fraud-charges%2Fnews-story%2F190d4c3bd5d86b5897af7e3b5e77c1ea&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Seymour, Bryan (1 February 2016).&nbsp;<a class="external text" href="https://au.news.yahoo.com/a/30707243/sydney-student-unknowingly-wearing-demerit-points-accrued-against-controversial-deputy-mayor-salim-mehajer/" rel="nofollow">"Sydney student unknowingly wearing demerit points accrued against controversial deputy mayor Salim Mehajer"</a>. Yahoo7 News.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Sydney+student+unknowingly+wearing+demerit+points+accrued+against+controversial+deputy+mayor+Salim+Mehajer&amp;rft.aufirst=Bryan&amp;rft.aulast=Seymour&amp;rft.date=2016-02-01&amp;rft.genre=article&amp;rft_id=https%3A%2F%2Fau.news.yahoo.com%2Fa%2F30707243%2Fsydney-student-unknowingly-wearing-demerit-points-accrued-against-controversial-deputy-mayor-salim-mehajer%2F&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Auerbach, Taylor (2 February 2016).&nbsp;<a class="external text" href="http://www.dailytelegraph.com.au/business/work/salim-mehajer-claims-no-knowledge-of-demerit-points-issued-under-his-name/news-story/75512ae058eb0cc495f6761c260d7a18" rel="nofollow">"Salim Mehajer claims ‘no knowledge’ of demerit points issued under his name"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+claims+%98no+knowledge%99+of+demerit+points+issued+under+his+name&amp;rft.aufirst=Taylor&amp;rft.aulast=Auerbach&amp;rft.date=2016-02-02&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fbusiness%2Fwork%2Fsalim-mehajer-claims-no-knowledge-of-demerit-points-issued-under-his-name%2Fnews-story%2F75512ae058eb0cc495f6761c260d7a18&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Godfrey, Miles (29 January 2016).&nbsp;<a class="external text" href="http://www.heraldsun.com.au/news/salim-mehajer-banned-for-four-months-for-failing-to-disclose-development-interests/news-story/09c55cfc4b22e571a84ac4084ba59a3e" rel="nofollow">"Salim Mehajer banned for four months for failing to disclose development interests"</a>. The Daily Telegraph.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+banned+for+four+months+for+failing+to+disclose+development+interests&amp;rft.aufirst=Miles&amp;rft.aulast=Godfrey&amp;rft.date=2016-01-29&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.heraldsun.com.au%2Fnews%2Fsalim-mehajer-banned-for-four-months-for-failing-to-disclose-development-interests%2Fnews-story%2F09c55cfc4b22e571a84ac4084ba59a3e&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Brook, Benedict (5 May 2016).&nbsp;<a class="external text" href="http://www.news.com.au/lifestyle/relationships/family-friends/salim-mehajer-praises-wife-but-singles-out-another-for-a-special-thank-you/news-story/e961ef001b6e59919cb9b4dcd5fad8a1" rel="nofollow">"Salim Mehajer praises wife but singles out another for a special thank you"</a>. news.com.au.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">The former deputy mayor of western Sydney’s Auburn Council is being taken to court by metal and aluminium fabricators Iron World to get back $46,000 the business claims it is owed for work on a luxury marble staircase installed in Mr Mehajer’s Lidcombe home, reports the Daily Telegraph. “We have done work before (for Mr Mehajer) and got paid but the last invoice just before the wedding we could not get the money,” Iron World business owner Sam Obeid said. “He is just delaying, that is all — we know every time he promises, promises and then nothing happens ... We need to pay our suppliers,” reported the Telegraph.</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+praises+wife+but+singles+out+another+for+a+special+thank+you&amp;rft.aufirst=Benedict&amp;rft.aulast=Brook&amp;rft.date=2016-05-05&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.news.com.au%2Flifestyle%2Frelationships%2Ffamily-friends%2Fsalim-mehajer-praises-wife-but-singles-out-another-for-a-special-thank-you%2Fnews-story%2Fe961ef001b6e59919cb9b4dcd5fad8a1&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Cheer, Louise (28 October 2015).&nbsp;<a class="external text" href="http://www.dailymail.co.uk/news/article-3292907/Salim-Mehajer-sued-unpaid-bill-marble-staircase-featured-Bow-Wow-music-video.html" rel="nofollow">"Gaudy groom Salim Mehajer sued by a tradesman for an unpaid $15,000 bill for a marble staircase built inside his home - which featured in rapper Bow Wow's video"</a>. Daily Mail.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">The owner of Marmonyx Stone, Yashar Shokrgozar, claims Cr Mehajer failed to pay his company thousands of dollars for the work his employees carried out in his Lidcombe home, in Sydney's west, last year. It is understood by the Herald Cr Mehajer allegedly owes Marmonyx Stone about $15,000 for the Persian onyx staircase that took a month to erect and was completed nine months ago, The Sydney Morning Herald reported.</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Gaudy+groom+Salim+Mehajer+sued+by+a+tradesman+for+an+unpaid+%2415%2C000+bill+for+a+marble+staircase+built+inside+his+home+-+which+featured+in+rapper+Bow+Wow%27s+video&amp;rft.aufirst=Louise&amp;rft.aulast=Cheer&amp;rft.date=2015-10-28&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-3292907%2FSalim-Mehajer-sued-unpaid-bill-marble-staircase-featured-Bow-Wow-music-video.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Hangin.27_with_celebrities">Hangin' with celebrities</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.dailytelegraph.com.au/entertainment/sydney-confidential/salim-mehajer-throws-overthetop-party-for-wife-aysha-to-dispel-rumours-of-marriage-split/news-story/0de7187f61e19f78349f19d2664f4108" rel="nofollow">"Salim Mehajer throws $50k party with rapper Tyga for wife’s 30th... but Aysha’s nowhere to be seen"</a>. The Daily Telegraph. 13 April 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer+throws+%2450k+party+with+rapper+Tyga+for+wife%99s+30th...+but+Aysha%99s+nowhere+to+be+seen&amp;rft.date=2016-04-13&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailytelegraph.com.au%2Fentertainment%2Fsydney-confidential%2Fsalim-mehajer-throws-overthetop-party-for-wife-aysha-to-dispel-rumours-of-marriage-split%2Fnews-story%2F0de7187f61e19f78349f19d2664f4108&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.news.com.au/entertainment/music/former-auburn-deputy-mayor-salim-mehajer-posts-picture-on-facebook-of-himself-and-us-musicians-tyga-and-omarion-posing-with-a-cake/news-story/97e4e0497b93f387c7b506cea458099b" rel="nofollow">"Former Auburn Deputy Mayor Salim Mehajer posts picture on Facebook of himself, and US musicians Tyga and Omarion, posing with a cake"</a>. news.com.au. 12 April 2016.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Former+Auburn+Deputy+Mayor+Salim+Mehajer+posts+picture+on+Facebook+of+himself%2C+and+US+musicians+Tyga+and+Omarion%2C+posing+with+a+cake&amp;rft.date=2016-04-12&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.news.com.au%2Fentertainment%2Fmusic%2Fformer-auburn-deputy-mayor-salim-mehajer-posts-picture-on-facebook-of-himself-and-us-musicians-tyga-and-omarion-posing-with-a-cake%2Fnews-story%2F97e4e0497b93f387c7b506cea458099b&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Piotrowski, Daniel (5 May 2016).&nbsp;<a class="external text" href="http://www.dailymail.co.uk/news/article-3574381/Salim-Mehajer-s-little-sister-Mary-won-Miss-Lebanon-Australia.html" rel="nofollow">"<span style="padding-left: 0.2em;">'</span>She wasn't my first pick': Three Miss Lebanon Australia judges say Salim Mehajer's little sister Mary was NOT their top choice - but she won the crown anyway"</a>. The Daily Mail.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=%27She+wasn%27t+my+first+pick%27%3A+Three+Miss+Lebanon+Australia+judges+say+Salim+Mehajer%27s+little+sister+Mary+was+NOT+their+top+choice+-+but+she+won+the+crown+anyway&amp;rft.aufirst=Daniel&amp;rft.aulast=Piotrowski&amp;rft.date=2016-05-05&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.dailymail.co.uk%2Fnews%2Farticle-3574381%2FSalim-Mehajer-s-little-sister-Mary-won-Miss-Lebanon-Australia.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></li> </ul> <h4 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 14px; line-height: 22.4px; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Other">Other</span></h4> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><a class="external free" href="http://www.cbp.com.au/publications/2015/july/client-lunch-comes-back-to-bite-solicitor-found" rel="nofollow">http://www.cbp.com.au/publications/2015/july/client-lunch-comes-back-to-bite-solicitor-found</a></li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://www.therealestateconversation.com.au/news/2015/08/18/the-properties-which-paid-that-wedding/1439899200" rel="nofollow">Article about his former website</a></li> <li style="margin-bottom: 0.1em;"><a class="external text" href="http://junkee.com/obnoxious-deputy-mayors-wedding-shuts-down-half-of-sydney-peaks-with-ridiculous-movie-trailer-2/63451" rel="nofollow">Junkee's take on Salim Mehajer</a></li> </ul> <h3 style="background: none rgb(255, 255, 255); border-bottom-style: none; font-family: sans-serif; font-size: 1.2em; line-height: 1.6; margin: 0.3em 0px 0px; overflow: hidden; padding-bottom: 0px; padding-top: 0.5em;"> <span class="mw-headline" id="Companies">Companies</span></h3> <ul style="background-color: white; color: #252525; font-family: sans-serif; font-size: 14px; line-height: 22.4px; list-style-image: url(&quot;data:image/svg+xml,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22UTF-8%22%3F%3E%0A%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20version%3D%221.1%22%20width%3D%225%22%20height%3D%2213%22%3E%0A%3Ccircle%20cx%3D%222.5%22%20cy%3D%229.5%22%20r%3D%222.5%22%20fill%3D%22%2300528c%22%2F%3E%0A%3C%2Fsvg%3E%0A&quot;); margin: 0.3em 0px 0px 1.6em; padding: 0px;"> <li style="margin-bottom: 0.1em;"><s>Sydney Group Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=59154021002" rel="nofollow">59 154 021 002</a>, ACN 154 021 002)</s> <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><s><cite class="citation news" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://www.smh.com.au/nsw/seeing-double-salim-mehajers-wife-and-sister-partner-up-in-new-venture-20151213-glmkoo.html" rel="nofollow" title="User talk:203.217.39.91">talk</a>) 08:24, 17 May 2016 (UTC)</cite></s></dd></dl> </li> <li style="margin-bottom: 0.1em;">SM Project Developments Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=30130968811" rel="nofollow">30 130 968 811</a>, ACN 130 968 811) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony; Bearup, Greg (12 December 2015).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/life/weekend-australian-magazine/salim-mehajer-its-good-to-be-the-deputy-mayor/news-story/5d477b8fd9b200a46f386a9453541333" rel="nofollow">the original</a>&nbsp;on 25 October 2012<span class="reference-accessdate">. Retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">13 May</span>&nbsp;2016</span>.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">Co Director of SM Project Developments</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=About+Us&amp;rft.date=2012-10-25&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.sydneygroup.com.au%2Findex.php%2Fabout-us&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">SM Engineering &amp; Construction Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=11132853153" rel="nofollow">Liquidated</a>) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation web" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://web.archive.org/web/20121025182851/http://www.sydneygroup.com.au/index.php/about-us" rel="nofollow">the original</a>&nbsp;on 25 October 2012<span class="reference-accessdate">. Retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">13 May</span>&nbsp;2016</span>.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">Salim has since opened his very own company in 2007 known as SM Engineering &amp; Constructions P/L, whereby he is the sole director</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=About+Us&amp;rft.date=2012-10-25&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.sydneygroup.com.au%2Findex.php%2Fabout-us&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">SM Engineering &amp; Constructions (sole trader,&nbsp;<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=50388412508" rel="nofollow">50 388 412 508</a>) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation web" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=50388412508" rel="nofollow">"Historical details for ABN 50 388 412 508"</a>.&nbsp;<i>abr.business.gov.au</i>. 17 May 2015.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">Entity Name: MEHAJER, SALIM, From: 01 Oct 2007, To: (current)</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Historical+details+for+ABN+50+388+412+508&amp;rft.date=2015-05-17&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fabr.business.gov.au%2FSearchByAbnHistory.aspx%3Fabn%3D50388412508&amp;rft.jtitle=abr.business.gov.au&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">SM Engineering &amp; Construction (NSW) Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=18164405109" rel="nofollow">18 164 405 109</a>, ACN 164 405 109) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">SM Engineering &amp; Construction Services Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=19164334276" rel="nofollow">19 164 334 276</a>, ACN 164 334 276) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">S.E.T. Services (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=48151314439" rel="nofollow">48 151 314 439</a>, ACN 151 314 439) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha (24 November 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajers-wife-appointed-director-of-his-companies-as-he-has-a-go-at-medicine-20151122-gl57p3.html" rel="nofollow" title="The Sydney Morning Herald">The Sydney Morning Herald</a>.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Salim+Mehajer%27s+wife+appointed+director+of+his+companies+as+he+%27has+a+go%27+at+medicine&amp;rft.aufirst=Leesha&amp;rft.aulast=McKenny&amp;rft.date=2015-11-24&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.smh.com.au%2Fnsw%2Fsalim-mehajers-wife-appointed-director-of-his-companies-as-he-has-a-go-at-medicine-20151122-gl57p3.html&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Sydney Constructions &amp; Developments Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=35147549102" rel="nofollow">35 147 549 102</a>, ACN 147 549 102) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">McKenny, Leesha (24 November 2015).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajers-wife-appointed-director-of-his-companies-as-he-has-a-go-at-medicine-20151122-gl57p3.html" rel="nofollow">the original</a>&nbsp;on 25 October 2012<span class="reference-accessdate">. Retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">13 May</span>&nbsp;2016</span>.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">Co director of Sydney Constructions and Developments P/L</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=About+Us&amp;rft.date=2012-10-25&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.sydneygroup.com.au%2Findex.php%2Fabout-us&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Sydney Project Group Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=18155827295" rel="nofollow">18 155 827 295</a>, ACN 155 827 295) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Robertson, James (24 March 2016).&nbsp;<a class="external text" href="http://www.smh.com.au/nsw/salim-mehajer-misses-debt-deadlines-and-mortgages-family-property-20160324-gnq96y.html" rel="nofollow" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Sydney Construction Group Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=62114931743" rel="nofollow">62 114 931 743</a>, ACN 114 931 743) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation web" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://web.archive.org/web/20121025182851/http://www.sydneygroup.com.au/index.php/about-us" rel="nofollow">the original</a>&nbsp;on 25 October 2012<span class="reference-accessdate">. Retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">13 May</span>&nbsp;2016</span>.&nbsp;<q style="quotes: &quot;\&quot;&quot; &quot;\&quot;&quot; &quot;'&quot; &quot;'&quot;;">Co Director of Sydney Construction Group P/L</q></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=About+Us&amp;rft.date=2012-10-25&amp;rft.genre=unknown&amp;rft_id=http%3A%2F%2Fwww.sydneygroup.com.au%2Findex.php%2Fabout-us&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Australian Community Association Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Company_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Company Number">ACN</a>&nbsp;150 648 936) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" id="CITEREF2016" style="font-style: inherit; word-wrap: break-word;"><i>Current &amp; Historical Company Extract, Australian Community Association Pty Ltd, ACN: 150 648 936</i>,&nbsp;<a href="https://en.wikipedia.org/wiki/Australian_Securities_and_Investments_Commission" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Securities and Investments Commission">Australian Securities and Investments Commission</a>, 12 May 2016</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Current+%26+Historical+Company+Extract%2C+Australian+Community+Association+Pty+Ltd%2C+ACN%3A+150+648+936&amp;rft.date=2016-05-12&amp;rft.genre=book&amp;rft.pub=Australian+Securities+and+Investments+Commission&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" id="CITEREF2016" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="https://www.caselaw.nsw.gov.au/decision/56a95346e4b05f2c4f04acff" rel="nofollow"><i>Office of Local Government v Salim Mehajer [2016] NSWCATOD 10</i></a>, NSW Civil and Administrative Tribunal, 29 January 2016<span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Office+of+Local+Government+v+Salim+Mehajer+%5B2016%5D+NSWCATOD+10&amp;rft.date=2016-01-29&amp;rft.genre=book&amp;rft_id=https%3A%2F%2Fwww.caselaw.nsw.gov.au%2Fdecision%2F56a95346e4b05f2c4f04acff&amp;rft.pub=NSW+Civil+and+Administrative+Tribunal&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Mehajer Bros Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=45155093977" rel="nofollow">45 155 093 977</a>, ACN 155 093 977) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" id="CITEREF2014" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="https://www.caselaw.nsw.gov.au/decision/54a640003004de94513dca8b" rel="nofollow" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Advanced International Developments (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=16165691850" rel="nofollow">16 165 691 850</a>, ACN 165 691 850) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony (25 February 2016).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/news/investigations/cleaner-chasing-25k-debt-subject-of-mehajer-firm-fraud/news-story/eebfa6e321234b2bcda74f5fc043cf2a" rel="nofollow" title="The Australian">The Australian</a>.</cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.atitle=Cleaner+chasing+%2425k+debt+subject+of+Mehajer+firm+fraud&amp;rft.aufirst=Anthony&amp;rft.aulast=Klan&amp;rft.date=2016-02-25&amp;rft.genre=article&amp;rft_id=http%3A%2F%2Fwww.theaustralian.com.au%2Fnews%2Finvestigations%2Fcleaner-chasing-25k-debt-subject-of-mehajer-firm-fraud%2Fnews-story%2Feebfa6e321234b2bcda74f5fc043cf2a&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Ajournal"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Skypoint Towers Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=58167719959" rel="nofollow">ABN 58 167 719 959</a>, ACN 167 719 959) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation news" style="font-style: inherit; word-wrap: break-word;">Klan, Anthony; Bearup, Greg (12 December 2015).&nbsp;<a class="external text" href="http://www.theaustralian.com.au/life/weekend-australian-magazine/salim-mehajer-its-good-to-be-the-deputy-mayor/news-story/5d477b8fd9b200a46f386a9453541333" rel="nofollow" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Mehajer Law Group Pty Ltd <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Mehajer Bros Auto Pty Ltd <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Mehajer Consolidated Pty Ltd <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Mehajer Holdings Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=62601957662" rel="nofollow">62 601 957 662</a>, ACN 601 957 662) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Sydney Building Constructions Pty Ltd (<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=73064430280" rel="nofollow">73 064 430 280</a>, ACN 064 430 280) <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><b>Note:</b>&nbsp;Not to be confused with&nbsp;<i>The Sydney Building Construction Pty Ltd</i>&nbsp;(<a href="https://en.wikipedia.org/wiki/Australian_Business_Number" style="background: none; color: #0b0080; text-decoration: none;" title="Australian Business Number">ABN</a>&nbsp;<a class="external text" href="http://abr.business.gov.au/SearchByAbnHistory.aspx?abn=37000005989" rel="nofollow" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></dd></dl> </li> </ul> <span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span> <br /> <br /> <br /> <br /> <li style="margin-bottom: 0.1em;">Sydney Building Developments Pty Ltd <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd></dl> </li> <li style="margin-bottom: 0.1em;">Oz Buildings &amp; Constructions Pty Ltd <dl style="margin-bottom: 0.5em; margin-top: 0.2em;"><dd style="margin-bottom: 0.1em; margin-left: 1.6em; margin-right: 0px;"><cite class="citation" style="font-style: inherit; word-wrap: break-word;"><a class="external text" href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf" rel="nofollow" style="background: url(&quot;//upload.wikimedia.org/wikipedia/commons/2/23/Icons-mini-file_acrobat.gif&quot;) 100% 50% no-repeat; color: #663366; padding-right: 18px; text-decoration: none;"><i>Life in the Fast Lane</i></a>&nbsp;<span style="font-size: 11.9px;">(PDF)</span>,&nbsp;<a href="https://en.wikipedia.org/wiki/The_Australian" style="background: none; color: #0b0080; text-decoration: none;" title="The Australian">The Australian</a><span class="reference-accessdate">, retrieved&nbsp;<span class="nowrap" style="white-space: nowrap;">2016-05-12</span></span></cite><span class="Z3988" title="ctx_ver=Z39.88-2004&amp;rfr_id=info%3Asid%2Fen.wikipedia.org%3ATalk%3ASalim+Mehajer&amp;rft.btitle=Life+in+the+Fast+Lane&amp;rft.genre=book&amp;rft_id=http%3A%2F%2Fresources.news.com.au%2Ffiles%2F2015%2F10%2F30%2F1227588%2F903283-aus-news-file-life-in-the-fast-lane.pdf&amp;rft.pub=The+Australian&amp;rft_val_fmt=info%3Aofi%2Ffmt%3Akev%3Amtx%3Abook"></span></dd><div> <cite class="citation" style="font-style: inherit; word-wrap: break-word;"><span class="reference-accessdate"><span class="nowrap" style="white-space: nowrap;"><br /></span></span></cite></div> </dl> </li> </div> Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-17100560318781030742016-05-15T10:23:00.001-07:002016-05-16T05:17:54.048-07:00Don't bite the newbies: why Wikipedia is such a horrible place to contribute to This isn't going to be very long really. Wikipedia is a horrible place to edit because it encourages horrible behaviour.<br /> <br /> When I first started many years ago, there was a real sense that you could collaborate on articles. You could have a disagreement and come to a compromise. That's not possible any more. What happens is that instead of asking on the talk page "do you think that might be a bit too much", or even actually discuss the issues at hand, you instead get folks who just lop out whole sections of articles. And of course, you get insulted and called "obsessive" when you try to actually do some decent research. Normally you get called this by people who like to tweak the articles, or do a lot of talking on Wikipedia space, especially WP:AN/I or WP:AN or even (ugh) WP:AN/3RR.<br /> <br /> Here's an example - a certain deputy mayor of a certain suspended council in Western Sydney has had 22 traffic incidents, flouted the law with impunity, and used a section 10 to get out of driving without a license in an unregistered vehicle. He's never once been <strike>charged</strike>&nbsp;convicted,&nbsp;which frankly should boggle the mind. But OK, I can understand how you <i>might</i>&nbsp;consider that it is possibly "obsessive" to look up Google news to locate what he did so it can be properly sourced.<br /> <br /> Because, you know, when the deputy mayor of a very large city in Sydney holds a list of driving convictions that include using a mobile phone whilst driving, performing an illegal burn out, driving whilst viewing a distracting Visual Display Unit, running a red light, disobeying a stop sign, performing an illegal U-turn, breaking the speed limit on five seperate occasions, driving his car on the wrong side of the road on one occasion, driving without showing his P plate correctly and then refusing to show his driver's license; call me crazy but I think that's fairly significant!<br /> <br /> But imagine that same politician took out his Ferrari and drove it so badly that he ran over two women who were rushed to hospital with serious injuries to their pelvic area and their legs, then spent a month in recovery. Then imagine that same person was charged and convicted of negligent driving. And then appealed and got off completely, then put a half page advertisement out in the local paper proclaiming his vindication. Then imagine he got sued (and lost) for $1.35 million, which his insurer had to pay out.<br /> <br /> Now would you consider that perhaps the law has let us down? Do you think that maybe the automobile incidents are actually fairly important to have documented? Would you consider it "obsessive" to have spent about 10 minutes reading a number of news articles and then documenting the fact that this politician seems to literally get away with what you or I could never get away with?<br /> <br /> Of course it's not important. In fact, <a href="https://en.wikipedia.org/w/index.php?title=Salim_Mehajer&amp;diff=prev&amp;oldid=720390961">it's positively ridiculous</a>!<br /> <br /> What about the fact that the politician is a developer who has been voting through serious changes that negatively impact on his constituents through a series of proprietary limited shell corporations which, when people look a little too closely at, he transfers his directorship over to someone else? Or the fact that he has a not-for-profit company supposedly for the good of the youth of his city that was used to take out a half page advertisement praising his decision to do law?<br /> <br /> Evidently chasing down these companies and putting them in a list with their ABNs and ACNs is.... well, why don't I just <a href="https://en.wikipedia.org/w/index.php?title=Talk%3ASalim_Mehajer&amp;type=revision&amp;diff=720392224&amp;oldid=720389302">quote from them</a>? "The compilation of all the companies he's a director of, many of which are so non-notable the author has had to refer to business registration records, is an atrocious case of original research and absolutely does not belong in this article. These are such trivial details that <a href="http://resources.news.com.au/files/2015/10/30/1227588/903283-aus-news-file-life-in-the-fast-lane.pdf">no journalist has bothered to compile them in any of the tens of thousands of stories about him for a reason</a>." (but of course I didn't use that as a citation... or did I?)<br /> <br /> No, of course the citations to the secondary sources aren't enough. Because, you know, Original Research. If only I <i>truly</i>&nbsp;understood what Original Research was - I've been labouring under the impression all these years that the WP:OR rule was to ensure that only material that uses reliable, published sources (like, say, <i>The Australian</i>&nbsp;or <i>The Sydney Morning Herald</i>, or even an extract from the ASIC company report that shows it's history...) and that directly relate to the article itself (like, I don't know, the fact that the subject is a director of all these shell companies to avoid scrutiny and is currently being investigated by the Australian Securities and Investment Commission...) should be used in articles.<br /> <br /> <a href="https://en.wikipedia.org/w/index.php?title=Salim_Mehajer&amp;diff=720391779&amp;oldid=720390961">Silly me.</a><br /> <br /> Yup, Wikipedia - you once were great, now you are the shit-pile of the Internet and so not worth my time that it's easier just to scramble my password, write up an angry blog post and wipe my hands of it forever more.Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com1tag:blogger.com,1999:blog-9025736111713624877.post-38180177756966785962016-05-07T21:10:00.001-07:002016-05-08T01:36:04.158-07:00Running and disguising programs through XCode shims on OS XHere's a spot of non-sudo fun on OS X, figured out after reading the following <a href="https://news.ycombinator.com/item?id=11643829">Hacker News story</a> from the <a href="http://rachelbythebay.com/w/2016/05/05/xcode/">OS X git security flaw update article</a>&nbsp;written by the always amazing Rachel (which is in turn a <a href="http://rachelbythebay.com/w/2016/04/17/unprotected/">follow up to this article</a>). Open the OS X terminal and paste in the following: <br /> <pre style="background-color: #f6f6ef; font-size: 12px; max-width: 600px; overflow: auto; padding: 2px;">mkdir -p ~/xcls/usr/bin cat &lt;&lt;EOF &gt; ~/xcls/usr/bin/xcrun #!/bin/sh if [ "\$1" = "git" ]; then exec -a "/usr/bin/git" echo "Hello world!" exit \$? fi shift 1 xcrun "\$@" exit \$? EOF chmod a+x ~/xcls/usr/bin/xcrun chflags hidden ~/xcls echo "export DEVELOPER_DIR=~/xcls/" &gt;&gt; ~/.bashrc export DEVELOPER_DIR=~/xcls/</pre> If I run git HelloWorld, even if I start up a new bash shell: <br /> <pre style="background-color: #f6f6ef; font-size: 12px; max-width: 600px; overflow: auto; padding: 2px;"><code><b>630188s-iMac:testrun 5K$</b> git HelloWorld Hello world!</code></pre> If you were to look at echo statement under ps, you would see it show the process title as "/usr/bin/git". To back out of this, just do the following: <br /> <pre style="background-color: #f6f6ef; font-size: 12px; max-width: 600px; overflow: auto; padding: 2px;"><code>unset DEVELOPER_DIR </code><span style="background-color: transparent;">sed -i -e "/export DEVELOPER_DIR=~\/xcls\//d" ~/.bashrc</span></pre> Proof: <br /> <pre style="background-color: #f6f6ef; font-size: 12px; max-width: 600px; overflow: auto; padding: 2px;"><b>630188s-iMac:testrun 5K$</b> git HelloWorld git: 'HelloWorld' is not a git command. See 'git --help'.</pre> <h4> Why does this occur?</h4> I was clued in on how to do this from the <a href="https://macops.ca/developer-binaries-on-os-x-xcode-select-and-xcrun">following article</a> on the blog Mac Operations. On Mac OS X, starting from OS X Maverick, Apple attempted to make life easier for developers. They did this by installing shims in place of a number useful developer binaries, one of which is git. git is located in /usr/bin/. This git, however, is not <i>actually</i>&nbsp;git but instead is linked against Apple's libxcselect library. <br /> <pre style="background-color: #f6f6ef; font-size: 12px; max-width: 600px; overflow: auto; padding: 2px;"><code><b>630188s-iMac:testrun 5K$</b> otool -L /usr/bin/git /usr/bin/git: /usr/lib/libxcselect.dylib (compatibility version 1.0.0, current version 1.0.0) /usr/lib/libSystem.B.dylib (compatibility version 1.0.0, current version 1226.10.1)</code></pre> It's interesting to display the name list of the libxcselect.dylib symbol table: <br /> <pre style="background-color: #f6f6ef; max-width: 600px; overflow: auto; padding: 2px;"><b>630188s-iMac:testrun 5K$</b> nm -gU /usr/lib/libxcselect.dylib 0000000000000fb9 T _xcselect_find_developer_contents_from_path 00000000000012a2 T _xcselect_get_developer_dir_path 0000000000001b21 T _xcselect_get_manpaths 0000000000001647 T _xcselect_invoke_xcrun 0000000000001aec T _xcselect_manpaths_free 0000000000001acd T _xcselect_manpaths_get_num_paths 0000000000001ad6 T _xcselect_manpaths_get_path 0000000000001d96 T _xcselect_trigger_install_request</pre> Notice _xcselect_invoke_xcrun? <br /> <pre style="background-color: #f6f6ef; max-width: 600px; overflow: auto; padding: 2px;"><b>630188s-iMac:testrun 5K$</b> nm /usr/bin/git 0000000100000000 T __mh_execute_header 0000000100000f5f T _main 0000000100001018 S _shim_marker U _xcselect_invoke_xcrun U dyld_stub_binder</pre> As you can see, it calls upon xcrun. What is xcrun? xcrun is used to "run or locate development tools and properties." What it basically does is locates where a variety of XCode tools are located and if no --find option is sent to it, then it executes the tool with the provided arguments. The tool has a bunch of rules to resolve the location of the tool, but if you define the environment variable DEVELOPER_DIR and set it to a directory of your choice, then this will force xcrun to redirect itself to $DEVELOPER_DIR/usr/bin/ and then run xcrun with the same parameters it was given at the command line. If you want to have a look at this a bit further, someone has <a href="https://github.com/b-man/xcode-tools">reimplemented this on GitHub</a> as an open sourced project. <br /> <h4> An unusual decision by Apple...</h4> This is, frankly, somewhat bemusing. Apple seems to be locking down /usr/bin under a rootless system called <a href="https://en.wikipedia.org/wiki/System_Integrity_Protection">System Integrity Protection</a>. However, as Rachel pointed out in her article, she couldn't even set the execute bit to off on that binary, not even by root. SIP does more than just render certain directories immutable, but this aspect has been designed to try to prevent malware from being installed onto the system - which often was occurring because single-user systems would often just have software ask for the admin password (the same as the user's) and the end user, not being technical, typed it in and gave unfettered root access to the system. However, as you can see above, I'm able to "replace" certain utilities (in this case, git) with my very own script that isn't in my $PATH variable. Note that I don't even have to have XCode tools installed for this to work - the library being used by the preinstalled shims is actually designed to prompt the user to install the XCode command line utilities via a popup dialog box. I find it odd that Apple would do this for the following reasons: <br /> <ol> <li>They use bash by default. In bash 4.x a new feature was introduced (and widely implemented by pretty much every major Linux distribution) that handles this much more cleverly. When bash encounters someone trying to execute a file it can't find, it <a href="https://www.gnu.org/software/bash/manual/bashref.html#Command-Search-and-Execution">looks for the shell function <code>command_not_found_handle</code></a>. Normally this is implemented by giving a number of suggestions and then returns status code 127, which is the same code that you get if the shell can't find the executable or that function. There is absolutely no executing of a specific binary, it's all completely done within the user's bash environment. Apple currently have a 3.2.x version of bash on El Capitan. If they were to update it to anything in the 4.x series, they could do pretty much everything that Linux distributions do - and more effectively.<p></li> <li>It bypasses SIP - if someone wanted to be malicious, instead of updating their binary in /usr/bin all they have to do is name the compromised binary xcrun, and store it anywhere in the user's directory user the usr/bin subdirectory, and then point the environment variable DEVELOPER_DIR to that directory. Notice that on OS X you can hide directory from the Finder (<code>chflag hidden ~/xcls</code>), thus obscuring the tracks of anyone who manages to compromise the system unaided, and you can easily mask the process title in bash via running your program as exec -a "/usr/bin/git" command "parameter1 parameter2 etc"</li> </ol> Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com2tag:blogger.com,1999:blog-9025736111713624877.post-28453645513845093162016-03-16T16:10:00.002-07:002016-03-16T16:24:43.979-07:00Tips for LibreOffice newbiesLi Haoyi has written an excellent blog post entitled "<a href="http://www.lihaoyi.com/post/DivingIntoOtherPeoplesCode.html" target="_blank">Diving Into Other People's Code</a>" about diving into an unfamilar codebase (HN discussion <a href="https://news.ycombinator.com/item?id=11288685" target="_blank">here</a>).<br /> <div> <br /></div> <div> I think this is really very helpful for anyone who wants to look at the LibreOffice source for the first time. Many of the things he mentions are directly relatable to LibreOffice - in particular getting your dev environment setup is particularly relatable.&nbsp;</div> <h4> Getting Started</h4> <div> To develop in LibreOffice, you really need some level of C++ skill, an ability to read other people's code, and be willing to learn and improve over time. However, you can still contribute Java and Python code to parts of the project (though in terms of unit tests, we really encourage converting Java unit tests to C++ tests eventually).&nbsp;</div> <div> <br /></div> <div> Any newbies should start here:</div> <div> <br /></div> <div> <a href="https://wiki.documentfoundation.org/Development/GetInvolved" target="_blank">https://wiki.documentfoundation.org/Development/GetInvolved</a></div> <div> <br /></div> <div> and then have a look at:</div> <div> <br /></div> <div> <a href="https://wiki.documentfoundation.org/Development/How_to_build" target="_blank">https://wiki.documentfoundation.org/Development/How_to_build</a><br /> <br /> One easy way of setting up your development environment is to use lode, which is a project that helps you setup a base environment to build LibreOffice:<br /> <br /> <a href="https://wiki.documentfoundation.org/Development/lode" target="_blank">https://wiki.documentfoundation.org/Development/lode</a></div> <div> <br /></div> <div> Once it is installed, check out how to use gerrit:</div> <div> <br /></div> <div> <a href="https://wiki.documentfoundation.org/Development/gerrit" target="_blank">https://wiki.documentfoundation.org/Development/gerrit</a></div> <div> <br /></div> <div> Be warned, depending on your setup this can take quite a bit of time and can be at times frustrating. We do our best to make things as easy as possible, but even building LibreOffice can take hours and hours to complete.&nbsp;</div> <h4> Learn git</h4> <div> A bit of git experience is very helpful - luckily you only ever have to do a git clone once, but you should learn about branching, rebasing, pulling and pushing. I would strongly suggest using the logerrit scripts. I personally use the following to pull in changes onto my current working branch:</div> <div> <br /></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">./g pull -r</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><br /></span></div> <div> <span style="font-family: inherit;">I strongly recommend spending a few hours on the following graphical tutorial on git, </span><a href="http://pcottle.github.io/learnGitBranching/" style="font-family: inherit;" target="_blank">Learn Git Branching</a><span style="font-family: inherit;">. This is well worth doing regardless of whether you contribute to LibreOffice - knowing how git works to the degree that this shows you is a skill that is&nbsp;</span>immensely<span style="font-family: inherit;">&nbsp;valuable. This tutorial&nbsp;</span>demystified<span style="font-family: inherit;">&nbsp;a lot of git concepts for me, and helped me "get" how git does things. Eventually you <i>will</i>&nbsp;get stuck in some git mess, so knowing how to reset is very valuable.&nbsp;</span></div> <div> <span style="font-family: inherit;"><br /></span></div> <div> <span style="font-family: inherit;">I also recommend learning how to use interactive rebase in git, which is done via:</span></div> <div> <span style="font-family: inherit;"><br /></span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">git rebase -i</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><br /></span></div> <div> <span style="font-family: inherit;">What this does is take your changes are change the "base" of the commit in question. You can move the commit up or down the version history, reword specific commit messages, "squash" commits into the parent commit (be very careful about doing this) or edit the commit itself. When you run git rebase -i it opens up your text editor - just read what it states in the editor to learn how to use it.&nbsp;</span></div> <div> <span style="font-family: inherit;"><br /></span></div> <div> <span style="font-family: inherit;">If you do ever mess up a rebase, incidentally, you can use the git reflog to back out of your change. Check out the <a href="https://www.atlassian.com/git/tutorials/refs-and-the-reflog/" target="_blank">Atlassian reflog tutorial</a> on this, could be a lifesaver. Another tutorial I used before I found the Atlassian one can be <a href="http://gitready.com/intermediate/2009/02/09/reflog-your-safety-net.html" target="_blank">found here</a>, try the Atlassian one first though.&nbsp;</span></div> <h4> Hot tip for vim fans</h4> <div> If you are a vim fan, then I suggest the following setup for your .vimrc file:</div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><br /></span></div> <div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">filetype indent on</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">set tabstop=4</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">set shiftwidth=4</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">set expandtab</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">highlight ExtraWhitespace ctermbg=red guibg=red</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">match ExtraWhitespace /\s\+$/</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><br /></span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">augroup trailing_whitespace</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">&nbsp; autocmd!</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">&nbsp; autocmd BufWritePre *.c :%s/\s\+$//e</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">&nbsp; autocmd BufWritePre *.h :%s/\s\+$//e</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">&nbsp; autocmd BufWritePre *.cxx :%s/\s\+$//e</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">&nbsp; autocmd BufWritePre *.hxx :%s/\s\+$//e</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;">augroup END</span></div> <div> <span style="font-family: &quot;courier new&quot; , &quot;courier&quot; , monospace;"><br /></span></div> <div> <span style="font-family: inherit;">We don't use tabs, we use 4 spaced-tabs. Some time ago I discovered a way of showing extra whitespace at the end of lines directly in vim, and then later after some discussion on the <a href="https://lists.freedesktop.org/archives/libreoffice/2015-December/071583.html" target="_blank">LibreOffice developer mailing</a> list I discovered how to <a href="https://lists.freedesktop.org/archives/libreoffice/2015-December/071603.html" target="_blank">safely remove trailing whitespace on write</a>.&nbsp;</span></div> </div> <h4> Start Hacking!</h4> <div> When you are modifying the LibreOffice codebase, you'll find that you'll spend more time reading and grokking the code than actually modifying it. I'd consider this normal, so if you find this is occurring don't fret - we all have to do this. The LibreOffice codebase is massive, I think from memory it has more lines of code than the Linux codebase and has been in continuous development since 1988.&nbsp;</div> <div> <br /></div> <div> When I started on LibreOffice hacking, I found I was most interested in finding the code entry point. Frankly, I was only initially reading the code for pleasure (yes, I'm strange that way) and so I used <a href="http://opengrok.libreoffice.org/">http://opengrok.libreoffice.org</a> to browse the code.&nbsp;</div> <div> <br /></div> <div> However, many years before I had actually attempted to compile OpenOffice.org - and failed rather spectacularly as I ran out of disk space. Whilst this was occuring I did a lot of reading of OpenOffice.org developer manuals - I really recommend reading&nbsp;<a href="https://wiki.openoffice.org/wiki/Documentation/DevGuide/OpenOffice.org_Developers_Guide" target="_blank">OpenOffice.org's Developer Guide</a>. Don't be put off by the fact that it is hosted on the competing Apache OpenOffice site, it's really very high quality and whilst the LibreOffice codebase is more actively developed there is still a lot of really useful information on the Apache OpenOffice sites.&nbsp;</div> <div> <br /></div> <div> Once you have read enough, have a look at our <a href="https://wiki.documentfoundation.org/Development/Easy_Hacks" target="_blank">EasyHacks list</a>. These are a list of things that need to be done in the LibreOffice codebase that are designed for newbies - and if you ever want to participate in Google Summer of Code you'll need to demonstrate that you've worked on a few bugs or submitted a few commits to deal with easy hacks. You'll also know that you've contributed to a codebase that literally millions of people use every day, and your name will be in the commit history. :-)</div> <h4> Join in with the development community</h4> <div> LibreOffice is a very friendly environment. We mostly go out of our way to help out newbies, as we want to encourage as many participants as possible. A such, you can join us on the <a href="https://wiki.documentfoundation.org/Website/IRC" target="_blank">#libreoffice-dev IRC channel on Freenode</a>. We don't largely answer user questions (for that there is #libreoffice), but if you are getting stuck on something feel free to ask on the channel.&nbsp;</div> <div> <br /></div> <div> The other way of joining in is to subscribe to the <a href="https://lists.freedesktop.org/mailman/listinfo/libreoffice" target="_blank">developer mailing list</a>. You can either subscribe to the digest, or get every message directly - in which case I suggest setting up a filter or else you might get drowned out in emails. If you do get digest messages, please don't reply to the digest directly but copy the message you want to respond to into the email, and retain the original subject line, prefixed with "Re:". We suggest setting up the Reply-To header on your mail client, but it's good practice to ensure that the original mail receipients are cc'ed into your responses.&nbsp;</div> <div> <br /></div> <div> (I'm also a chronic abuser, but please don't <a href="https://en.wikipedia.org/wiki/Posting_style#Top-posting" target="_blank">top-post</a>. Don't be me.)</div> <h4> Commit messages</h4> <div> A final tip: commit messages are really important. I personally tend to write longer messages detailing the work that I've done, but that's just my own style. The most important thing about commit messages is they must be to the point and explain <i>what you have done</i>, not <i>what the code used to do</i>. If your code change is complicated or not necessarily easy to follow, then it's best to try to leave an explanation of what you are doing. The commit title should be clear enough that someone <a href="https://cgit.freedesktop.org/libreoffice/core/log/" target="_blank">browsing the git log in cgit</a>&nbsp;can understand the purpose of the commit.&nbsp;</div> <div> <br /></div> <div> If your commit is easy to understand or minor, then only a commit message title is needed. If you need to explain things in more detail in the commit message body, as I said, you should state what you did.&nbsp;</div> <div> <br /></div> <div> An example that shows both what you should and shouldn't do is where I fixed an issue where the <a href="https://bugs.documentfoundation.org/show_bug.cgi?id=85761" target="_blank">PPI wasn't being exported to JPEGs correctly</a>.&nbsp;</div> <div> <br /></div> <div> Good things about my <a href="https://cgit.freedesktop.org/libreoffice/core/commit/?id=f8355221ae62b89a706f2d04b63eda658f3ccfa5" target="_blank">commit message</a>:&nbsp;</div> <div> <ul> <li>Note that as I fixed a bug, I prefixed the commit message short title with tdf#85761. There is a bot that reviews the git logs and if it finds this in the message title it automatically updates the bugzilla bug. You can only reference one bug however.</li> <li>I summarised my change that we don't hardcode JPEGs to 96 DPI any more but use mapmode pref size to get the DPI, and moved the scaling function from the EPS filter code to the MapMode class.&nbsp;</li> <li>It explains what the problem actually is, as it was a bit difficult to understand the cause of the issue from the original bug report.&nbsp;</li> </ul> <div> Bad thing:</div> </div> <div> <ul> <li>I still spent too much time explaining what the code originally did (thus violating my own recommendation I give in this blog post).</li> </ul> <div> FWIW, it can still be useful in explaining what the code did, but I'd leave that to a note in the last paragraph - and I recommend you make it brief.&nbsp;</div> </div> Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-30963832297163496962016-01-22T17:59:00.002-08:002016-01-24T02:35:33.613-08:00Why I love hacking at LibreOfficeThe LibreOffice codebase is, to be frank, messy. This isn't a criticism of previous developers - it's still an amazing product and an amazing feat of programming given the number of platforms it runs on. The StarView guys, and later OpenOffice.org development team, did a great job. For instance, I was reading up on the font mapping code and I often saw Herbert Duerr's name, and I've got nothing but respect for the work that he did and his dedication to the project.<br /> <br /> Unfortunately, the messiness is the result of a codebase that was first created in 1988 and has been actively worked on and changed directions a number of times. So... what is it that I love about working on LibreOffice?<br /> <br /> In a word: the people. I've never met any of my fellow hackers in person, only a few phone calls to Michael Meeks and listened in on some Collabora meetings when I did some work for them. Mostly I stick around the IRC channel and keep an eye on the mailing list.<br /> <br /> On the IRC channel, however, I've noticed the good humour and tolerance of the developers towards those not as expert as themselves. For example, Stephan Bergman (sberg) is the go to guy in terms of anything C++ related - and the other day he helped me out with a tricky bit of code (well, I thought it was tricky) related to the equality operator. Tor Lillqvist, as another example, is a diamond in the rough IMO&nbsp;and has often pointed me in the right direction when I'm online. And I cannot forget to mention Norbert Thiebaud (shm_get on IRC) for his constant maintenance of Jenkins (a thankless task!) and gerrit. These are literally just <i>some</i>&nbsp;of the folks who I interact with all the time and just a small sample of the folks who work on the LibreOffice project.<br /> <br /> Without the goodwill and encouragement of the folks who hack away daily on the LibreOffice project, I doubt I'd be able to work on the small part of the codebase that I have chosen to improve. In fact, there is an active outreach program currently being run lead by Jan Iverson (JanIV on IRC) and there are quite a few commits coming in from newbies of all stripes. This is leading to some real improvements in the code, for instance new developer Dipankar Niranjan did a whole series of commits to remove the "dog-tag" code from the VCL module (the "dog-tags" was a way of attempting to ensure that Windows weren't deleted at the wrong time, but was a total hack and has been solved by <a href="https://gerrit.libreoffice.org/gitweb?p=core.git;a=blob;f=vcl/README.lifecycle;h=6b5cbd6e8df4bcc77b28b0e296e50a96ca8899a0;hb=HEAD" target="_blank">VclPtr</a>) - this has recently allowed sberg to <a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl?id=04d4af8496c8fae5515c7f76e143310eb7098702" target="_blank">remove ImplSVEvent::maDelData</a>. Seeing the code evolve is also highly enjoyable :-)<br /> <br /> There are so many more examples of this it's just not possible for me to list them in this post. It's interesting that LibreOffice has made so much traction in the last year in terms of code quality - whilst the UI hasn't changed hugely (though that is going to change I suspect in the next year!) the incremental improvements have been increasing at a rate of knots and folks are beginning to notice the positive effects. One user, who will remain nameless but is an active follower of the LibreOffice development process, told me that he noticed that the 5.x release was very much more responsive and stable that the 4.x series... and amusingly commented that "it's remarkable how interesting it is to watch the development of such an intrinsically boring type of software".<br /> <br /> So there you have it, the reason I love hacking at LibreOffice is the people who work on it! May it ever be this way.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com1tag:blogger.com,1999:blog-9025736111713624877.post-33048807178891192242016-01-07T16:34:00.002-08:002016-01-07T20:58:54.607-08:00Restricting Doxygen indexing to particular LibreOffice modulesI have <a href="http://cgit.freedesktop.org/libreoffice/core/commit/?id=cfcef8c99908a781c1d5b4153f4fa9fca69d4351" target="_blank">committed a code change</a> to the LibreOffice tree to allow developers to specify what modules they want Doxygen to index. I have done this because indexing every module is quite time consuming, and you may only want to review a subset of modules (in my case I am interested primarily in the vcl module).<br /> <br /> To index specific modules only, you now export the $INPUT_PROJECTS environment variable and run make docs. For example, if you want to index only the vcl and svtools modules, you would do the following:<br /> <br /> <div class="p1"> <span class="s1"><span style="font-family: Courier New, Courier, monospace; font-size: x-small;">chris@libreoffice-ia64:~/repos/libreoffice$ export INPUT_PROJECTS="vcl svtools"</span></span><br /> <span style="font-family: 'Courier New', Courier, monospace; font-size: x-small;">chris@libreoffice-ia64:~/repos/libreoffice$ make docs</span><br /> <span style="font-family: 'Courier New', Courier, monospace; font-size: x-small;">chris@libreoffice-ia64:~/repos/libreoffice$ unset INPUT_PROJECTS</span></div> Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-15982646685095467302016-01-07T16:26:00.003-08:002016-01-08T02:41:08.514-08:00You can(not) have a void namespace in C++...<b>Update:</b>&nbsp;So this was discussed on IRC, and it turns out I've got this all entirely wrong. It's actually much simpler - it turns out you don't need a space before the scope operator thus you can legally have:<br /> <br /> <span style="font-family: Courier New, Courier, monospace;">void::TheClass::TheFunction(int n1, int n2) {}</span><br /> <br /> This is the same as:<br /> <br /> <span style="font-family: Courier New, Courier, monospace;">void ::TheClass::TheFunction(int n1, int n2) {}</span><br /> <br /> and:<br /> <br /> <span style="font-family: Courier New, Courier, monospace;">void &nbsp; &nbsp; ::TheClass &nbsp; &nbsp; &nbsp;::TheFunction(int n1, int n2) {}</span><br /> <span style="font-family: Courier New, Courier, monospace;"><br /></span> <span style="font-family: Courier New, Courier, monospace;">--------</span><br /> <br /> I ran doxygen over the vcl module in LibreOffice and I got a lot of warnings and errors. I am now making a concerted effort to fix these warnings because I actually find doxygen generates good info on the classes, and I rather like the collaboration and inheritance diagrams it produces.<br /> <br /> However, a strange error that it produced was:<br /> <br /> <span style="background-color: white; color: #333333; font-family: monospace; font-size: 13.3333px; white-space: pre;">/home/chris/repos/libreoffice/vcl/source/control/combobox.cxx:1322 warning: no uniquely matching class member found for void::ComboBox::Impl::ImplUserDrawHandler(UserDrawEvent *pEvent)</span><br /> <br /> "A <i>void</i>&nbsp;namespace in the LibreOffice codebase?" I thought. How could this be? How is this even possible?<br /> <br /> Sure enough, the definition was void::ComboBox::Impl:ImplUserDrawHandler(UserDrawEvent*)!<br /> <br /> In an effort to work out if this was what was intended (which I was very doubtful of) I tracked down the commit, which converted the old style IMPL_LINK macro to a boost signal. It was definitely not intended!<br /> <br /> I then tracked down where the C++ standard is held and reviewed the <a href="http://open-std.org/JTC1/SC22/WG21/docs/papers/2015/n4527.pdf" target="_blank">C++14 draft</a> (I can't afford to spend US$216 on the official ISO standard). Section 7.3 deals with namespaces:<br /> <br /> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA3mziH9izcEGj8Yqmr3JGS9DcPv3pBv8nRPUYq6-nr9JQPEelWK5xPMSE6YlfePkv78vWVsFK4fwNsvBTkEkZtujqELTnqRvrX_Imm8t3w3mdHZpqvSIAWD88rO1Zj0JdMACkvdn8XFzg/s1600/Screen+Shot+2016-01-08+at+11.21.22+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="640" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgA3mziH9izcEGj8Yqmr3JGS9DcPv3pBv8nRPUYq6-nr9JQPEelWK5xPMSE6YlfePkv78vWVsFK4fwNsvBTkEkZtujqELTnqRvrX_Imm8t3w3mdHZpqvSIAWD88rO1Zj0JdMACkvdn8XFzg/s640/Screen+Shot+2016-01-08+at+11.21.22+AM.png" width="556" /></a></div> <br /> <br /> Amazingly (to my mind) there is no restriction on the namespace identifier, thus it is entirely possible to accidentally create a void, int, float or any other reserved C++ keyword as a namespace!<br /> <br /> I wonder if it might be worthwhile for compilers to spit out a warning if they see this? Perhaps we need to write a clang plugin to detect this sort of thing in LibreOffice. The only reason this hasn't had an impact is that it doesn't appear that anything is currently using user-defined draw signals on comboboxes.<br /> <br /> I pushed commit&nbsp;<a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl/source/control/combobox.cxx?id=86338fbb94324ede329e1d232eeaf70f2fde696e" target="_blank">86338fbb94324ed</a> to fix this.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com1tag:blogger.com,1999:blog-9025736111713624877.post-10226279710112212242016-01-05T01:55:00.000-08:002016-01-05T01:55:03.019-08:00Possible 15 year old regressionA few days ago, I filed <a href="https://bugs.documentfoundation.org/show_bug.cgi?id=96826" target="_blank">bug 96826 </a>("Typewriter attribute not given enough weight when finding font based on attributes") against LibreOffice. Basically, I've been refactoring VCL font code and I was very interested to see what my predecessors had been doing before me. This meant that I actually read pretty much all of the commits I could find all the way back to the year 2000 for that file, which held much of the font code for VCL.&nbsp;<div> <br /></div> <div> One of the functions was originally in a class called ImplFontCache, which had a get() function that worked as a font mapper. It basically does a running total of a number of weighted values depending on the "strength" or "quality" of the font matching attribute. One of those attributes was to check if the font is a fixed-width font, then check to see if the font is a typewriter style font, giving a deliberately higher weighting to typewriter style fonts.&nbsp;</div> <div> <br /></div> <div> Anyway, on the 29th June 2001 someone with the initials th (no idea who this was, nor is it really important) did some tweaks to the function in an attempt to improve font mapping in <a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl/source/gdi/outdev3.cxx?id=925806de64f97d3b11a552143d3dbd42648f64cc" target="_blank">commit&nbsp;925806de6</a>. To ensure that the typewriter style was given a weighted value, they have multiplied the value by 2. However, they appear to have accidentally removed a zero from the weighting, thus <i>reducing</i>&nbsp;the weighting of the typewriter style fonts, not increased it!</div> <div> <br /></div> <div> As I was reading the code, I thought "whoops, that was unfortunate" and assumed I'd see the error picked up somewhere down the track and fixed. Now either the weighting has little effect on these fonts, or not many people have problems with typewriter fonts not being cleanly mapped by the underlying platform, but <i>this has never been fixed</i>.&nbsp;</div> <div> <br /></div> <div> The code has since migrated its way into <a href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#FindFontFamilyByAttributes" target="_blank">PhysicalFontCollection::FindFontFamilyByAttributes()</a>, and it's still there!</div> <div> <br /></div> <div> <pre style="padding: 0px;"><a class="hl" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#610" name="610" style="background-color: #dddddd; color: black; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;610&nbsp;</a><span style="background-color: white;"> </span><span class="c" style="background-color: white; color: #666666;">// test MONOSPACE+TYPEWRITER attributes</span><span style="background-color: white;"> </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#611" name="611" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;611&nbsp;</a><span style="background-color: white;"> </span><b style="background-color: white;">if</b><span style="background-color: white;">( </span><a href="http://opengrok.libreoffice.org/s?defs=nSearchType&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">nSearchType</a><span style="background-color: white;"> &amp; </span><a href="http://opengrok.libreoffice.org/s?defs=ImplFontAttrs&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">ImplFontAttrs</a><span style="background-color: white;">::</span><a href="http://opengrok.libreoffice.org/s?defs=Fixed&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">Fixed</a><span style="background-color: white;"> ) </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#612" name="612" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;612&nbsp;</a><span style="background-color: white;"> { </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#613" name="613" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;613&nbsp;</a><span style="background-color: white;"> </span><b style="background-color: white;">if</b><span style="background-color: white;">( </span><a class="f" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#nMatchType" style="background-color: white; color: #990099; text-decoration: none;">nMatchType</a><span style="background-color: white;"> &amp; </span><a href="http://opengrok.libreoffice.org/s?defs=ImplFontAttrs&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">ImplFontAttrs</a><span style="background-color: white;">::</span><a href="http://opengrok.libreoffice.org/s?defs=Fixed&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">Fixed</a><span style="background-color: white;"> ) </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#614" name="614" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;614&nbsp;</a><span style="background-color: white;"> </span><a class="f" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#nTestMatch" style="background-color: white; color: #990099; text-decoration: none;">nTestMatch</a><span style="background-color: white;"> += </span><span class="n" style="background-color: white; color: brown;">1000000*2</span><span style="background-color: white;">; </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#615" name="615" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;615&nbsp;</a><span style="background-color: white;"> </span><span class="c" style="background-color: white; color: #666666;">// a typewriter attribute is even better</span><span style="background-color: white;"> </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#616" name="616" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;616&nbsp;</a><span style="background-color: white;"> </span><b style="background-color: white;">if</b><span style="background-color: white;">( </span><a href="http://opengrok.libreoffice.org/s?defs=ImplFontAttrs&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">ImplFontAttrs</a><span style="background-color: white;">::</span><a href="http://opengrok.libreoffice.org/s?defs=None&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">None</a><span style="background-color: white;"> == ((</span><a href="http://opengrok.libreoffice.org/s?defs=nSearchType&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">nSearchType</a><span style="background-color: white;"> ^ </span><a class="f" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#nMatchType" style="background-color: white; color: #990099; text-decoration: none;">nMatchType</a><span style="background-color: white;">) &amp; </span><a href="http://opengrok.libreoffice.org/s?defs=ImplFontAttrs&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">ImplFontAttrs</a><span style="background-color: white;">::</span><a href="http://opengrok.libreoffice.org/s?defs=Typewriter&amp;project=core" style="background-color: white; color: #105802; text-decoration: none;">Typewriter</a><span style="background-color: white;">) ) </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#617" name="617" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;617&nbsp;</a><span style="background-color: white;"> </span><span style="background-color: yellow;"><a class="f" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#nTestMatch" style="color: #990099; text-decoration: none;">nTestMatch</a> += <span class="n" style="color: brown;">10000*2</span>;</span><span style="background-color: white;"> </span><a class="l" href="http://opengrok.libreoffice.org/xref/core/vcl/source/font/PhysicalFontCollection.cxx#618" name="618" style="background-color: #dddddd; color: #888888; margin-right: 0.2em; padding-right: 0.1em; text-align: right; text-decoration: none;">&nbsp;&nbsp;&nbsp;&nbsp;618&nbsp;</a><span style="background-color: white;"> }</span></pre> <pre style="padding: 0px;"><span style="background-color: white;"> </span></pre> <pre style="padding: 0px;"><span style="font-family: Times;"><span style="white-space: normal;">As with any codebase with a 30 year pedigree, I've not committed a fix because I just don't know if this is something I want to touch. Hence I've logged the bug to see if anyone can shed any light on it. I'll probably follow up on the mailing list in a few weeks time to ping any more experienced developers, but until then this potential bug, which is in the middle of going through puberty, will remain.&nbsp;</span></span></pre> </div> Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-67486526649040664862015-12-03T07:02:00.000-08:002015-12-03T07:02:16.773-08:00VirtualBox on OS X with Windows 10 guest and the ctrl keyKarabiner allows you to disable ctrl+left click on OS X. That will, by default, do the same thing that right-click does with a mouse. You choose the following option to disable it:<br /> <br /> <span id="goog_1471667198"></span><span id="goog_1471667199"></span><br /> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiV5ey4puJZV1pz15EfGRSEqyVyjoYaRANyYr8OCZzw8JqragesLQMHQ9cx92dRd2AM29MHE0AzzjB_ES18DtbhGXmhyphenhyphenyB2ElnsmSH3xvXN4IRqfZ3Q1ghTunYtIcvRsb-P8CtJ3cxkpp5i/s1600/Screen+Shot+2015-12-04+at+1.57.00+AM.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="253" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiV5ey4puJZV1pz15EfGRSEqyVyjoYaRANyYr8OCZzw8JqragesLQMHQ9cx92dRd2AM29MHE0AzzjB_ES18DtbhGXmhyphenhyphenyB2ElnsmSH3xvXN4IRqfZ3Q1ghTunYtIcvRsb-P8CtJ3cxkpp5i/s320/Screen+Shot+2015-12-04+at+1.57.00+AM.png" width="320" /></a></div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> So here's where things go bad. If you run VirtualBox and you run a Windows 10 system, you have to turn this off. I believe I had this on due to an early version of VirtualBox not handling ctrl+left click, but they seem to have fixed this in the latest version... ironically my workaround that fixed my issue now breaks it!</div> <br />Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-10282423408842459932015-11-30T01:58:00.000-08:002015-11-30T02:08:48.481-08:00Bypassing the compatibility checker when upgrading from Windows 8.1 to Windows 10 in VirtualBox <div class="separator" style="clear: both; text-align: center;"> </div> <div class="separator" style="clear: both; text-align: left;"> I use OS X as my primary operating system, but still need to use Windows so I've installed Windows 8.1 as a VirtualBox Virtual Machine. Recently I decided that I wanted to upgrade to Windows 10, but when I do Windows complains it doesn't like the VirtualBox Graphics Adapter for Windows 8:</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxHIW4VrtIwJhhuseBb8avdIhRsWyjGjs_xFGFJwJNAJM3HcR_ci21FuLx6nVdagsU3aQjzQd_4DWRLatbzsbtOeZfsTBCsFsb15YGiQpoXVjqdnNP2rLr-sXMjm507l9tIRMs9rc3t83A/s1600/virtualbox_compatibility_issue.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="416" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhxHIW4VrtIwJhhuseBb8avdIhRsWyjGjs_xFGFJwJNAJM3HcR_ci21FuLx6nVdagsU3aQjzQd_4DWRLatbzsbtOeZfsTBCsFsb15YGiQpoXVjqdnNP2rLr-sXMjm507l9tIRMs9rc3t83A/s640/virtualbox_compatibility_issue.PNG" width="640" /></a></div> <div class="separator" style="clear: both; text-align: center;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> I got quite busy, but recently I decided to find out how to resolve this. A (very) cursory Google search wasn't terribly helpful, so I decided to see what registry keys Windows looks for when it checks for compatibility. For this task I used&nbsp;<a href="https://technet.microsoft.com/en-us/sysinternals/processmonitor.aspx">Process Monitor</a>&nbsp;- the process is called GWXUX.exe so I restricted the capture to only the registry and added the filter: Process Name is GWXUX.exe</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsROM-zDBkzgBs-D1-bXZtjBdQA5lGFTsxjn6FIzsEuf880WxnzokAUDm_Hlm8TO_Hq9vEzDw-7RMX_ujKg0zjfh4sxDnv3rZwV469k1evk4j8TBg-rv2OkaBXlhKorVfr_lDFTWu3xa_W/s1600/procmon_filters.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="271" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsROM-zDBkzgBs-D1-bXZtjBdQA5lGFTsxjn6FIzsEuf880WxnzokAUDm_Hlm8TO_Hq9vEzDw-7RMX_ujKg0zjfh4sxDnv3rZwV469k1evk4j8TBg-rv2OkaBXlhKorVfr_lDFTWu3xa_W/s320/procmon_filters.PNG" width="320" /></a></div> <div class="separator" style="clear: both; text-align: center;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> A quick scroll through the output showed that there is a registry DWORD&nbsp;HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\OSUpgrade\AllowOSUpgrade</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8hJIQA2Jw8Cn4JyJ-Ci91JXF6bnXiU7eHsZqpTCqLKBV6a2MNQuf32h4KDWdSlKlknUVAjIQwQoTJrY_7R4Ew0q58peTtziGujCznSLcMsr25s0CQJufVpYdVQxq9xWUVX-JXV0pxIku1/s1600/procmon_screenshot_osupgradekey_highlighted_2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="262" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEh8hJIQA2Jw8Cn4JyJ-Ci91JXF6bnXiU7eHsZqpTCqLKBV6a2MNQuf32h4KDWdSlKlknUVAjIQwQoTJrY_7R4Ew0q58peTtziGujCznSLcMsr25s0CQJufVpYdVQxq9xWUVX-JXV0pxIku1/s640/procmon_screenshot_osupgradekey_highlighted_2.png" width="640" /></a></div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> This is set to 0x0, but if you change it to 0x1, then you can upgrade in Windows Update itself (note, if you click on the upgrade to Windows 10 icon in the system notification tray it will still run the compatibility check).&nbsp;</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdy1vUYHeU5Qsv_8kLfaPDiIeBm8MQj0UaN00ZxEQYl1RB6DqLhWjBtWSTHfQF8fGU5gJwuJT0z-zUbWEGiUKEnWyiiCO_VRxy3IQbghY1ftZw9OFbcGXXQ_g4jW0HWmdTEt9Rvr1WM-_V/s1600/windows_update_bypass_compatcheck.PNG" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="348" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhdy1vUYHeU5Qsv_8kLfaPDiIeBm8MQj0UaN00ZxEQYl1RB6DqLhWjBtWSTHfQF8fGU5gJwuJT0z-zUbWEGiUKEnWyiiCO_VRxy3IQbghY1ftZw9OFbcGXXQ_g4jW0HWmdTEt9Rvr1WM-_V/s640/windows_update_bypass_compatcheck.PNG" width="640" /></a></div> <div class="separator" style="clear: both; text-align: center;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> Hopefully someone will find this useful. I can only imagine VMware installs might be getting the same issue, so this key will force an upgrade. I <i>should</i>&nbsp;note that if you set this key on anything other than VirtualBox and do an OS upgrade you do so at your own risk :-)&nbsp;</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-14441932831319651172015-03-02T16:50:00.002-08:002015-03-02T16:50:27.110-08:00OSI membership<div class="separator" style="clear: both; text-align: center;"> <a href="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm5g_hirff4bP0pfeHPPShOpjeKZDweFVvMIZw30jgmP2l44azUkm1GUbt1aR_LdFsuSsS5P3wZMT0t0UWYnZVspheYVF7EAtWznoVkJ3XpbfSIgjVcopqDIQX5h8qZ0FruU5AgLWPFp8T/s1600/garland_logo.png" imageanchor="1" style="clear: left; float: left; margin-bottom: 1em; margin-right: 1em;"><img border="0" src="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjm5g_hirff4bP0pfeHPPShOpjeKZDweFVvMIZw30jgmP2l44azUkm1GUbt1aR_LdFsuSsS5P3wZMT0t0UWYnZVspheYVF7EAtWznoVkJ3XpbfSIgjVcopqDIQX5h8qZ0FruU5AgLWPFp8T/s1600/garland_logo.png" /></a></div> I've just joined the OSI as a member - in AUD it is about $50, but it's well worth it!<br /> <br /> The reason I became a member was because I thought it was high time that I did this. I contribute to LibreOffice, and I truly believe that open source and open culture is very important to society at large. I believe that open source gives maximum freedom to those in society who are not necessarily empowered due to economic or social circumstances. It levels the playing field, and what I most love is that it really gives transparency to those who use software so that they can verify and improve upon the work of those who have gone before them, without restricting the ability of others to use the work to improve the conditions and lives of others in society.<br /> <br /> I encourage others to also <a href="http://opensource.org/civicrm/contribute/transact?reset=1&amp;id=1">join the OSI</a>, as it is really is a force of good in the world.Chris Sherlockhttp://www.blogger.com/profile/06614784827774439321noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-56737672026695276562014-10-17T22:57:00.000-07:002014-10-19T00:16:35.694-07:00Refactoring LibreOffice: VCL FontCharMapI have been looking at the <a href="http://opengrok.libreoffice.org/xref/core/vcl/">VCL</a> in LibreOffice, which is its cross-platform widget and window library. Whilst reading the <span style="font-family: Courier New, Courier, monospace;"><a href="http://opengrok.libreoffice.org/xref/core/vcl/inc/salgdi.hxx#79">SalGraphics</a> </span>class (more on this in a future post) I noticed a class called&nbsp;<a href="http://opengrok.libreoffice.org/xref/core/vcl/inc/impfont.hxx#160"><span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap</span></a>&nbsp;. Curious, I looked more into it. Why the "Impl"-prefix? What about&nbsp;<span style="font-family: Courier New, Courier, monospace;"><a href="http://opengrok.libreoffice.org/xref/core/include/vcl/metric.hxx#99">FontCharMap</a></span>?<br /> <br /> As it turns out,&nbsp;<span style="font-family: 'Courier New', Courier, monospace;">ImplFontCharMap</span>&nbsp;is a <a href="http://c2.com/cgi/wiki?PimplIdiom">Pimpl</a> for&nbsp;<span style="font-family: 'Courier New', Courier, monospace;">FontCharMap</span>. Now normally a Pimpl has very little code and is not directly accessible by any class other than the class that uses it. A Pimpl allows for better builds in C++, and a number of other reasons. In this case <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap</span> was doing a LOT.<br /> <br /> A font character map in VCL allows a font to be mapped to Unicode codepoints. The VCL font charmap allows you to find a character in the font based on the Unicode codepoint, find the next and previous character supported by the font (these are not necessarily contiguous) and the first and last characters supported. There is also a default charmap, which maps the <a href="http://en.wikipedia.org/wiki/Plane_%28Unicode%29#Basic_Multilingual_Plane">BMP plane</a>, including surrogates. <br /> <br /> <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap </span>had an internal reference counting mechanism to optimise sharing of charmaps. However, this was better changed to boost's <a href="http://www.boost.org/doc/libs/1_56_0/libs/smart_ptr/intrusive_ptr.html">intrusive_ptr</a>, because frankly that implementation is far more well engineered and tested, not to mention I'm not a fan of maintaining code that isn't really specifically addressing VCL needs. (incidentally, the best rundown I found of intrusive_ptr can be found at <a href="http://baptiste-wicht.com/posts/2011/11/boost-intrusive_ptr.html">this man's blog</a>) The commit can be found <a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl?id=9177329a425cf70b515d1f266132838894fe54c6">here</a>. You can see that I've been able to immediately remove <span style="font-family: Courier New, Courier, monospace;">AddReference()</span> and <span style="font-family: Courier New, Courier, monospace;">DeReference()</span>. <br /> <br /> You will notice, however, that there are a few classes who rely on <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap </span>(now <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMapPtr</span>, a typedef to an intrusive_ptr) directly. In particular, <span style="font-family: Courier New, Courier, monospace;">SalGraphics </span>was relying on returning the Pimpl! Frankly, that's madness in my view. As I've said, Pimpls are really intended to be tightly coupled to a particular class and should <i>never</i> be used directly. The class that needs the Pimpl should be used! You can see other side effects, because the Pimpl is really duplicating code that should be in <span style="font-family: Courier New, Courier, monospace;">FontCharMap</span>. This is clearly a bit if a code maintenance nightmare. <br /> <br /> Given that a Pimpl is one of the very few concepts in C++ that relies on tightly coupling two classes, I made <span style="font-family: Courier New, Courier, monospace;">FontCharMap </span>a friend class of <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap </span>and moved most public functions from <span style="font-family: Courier New, Courier, monospace;">ImplFontCharMap </span>to <span style="font-family: Courier New, Courier, monospace;">FontCharMap</span>. I kept the destructor and the functions <span style="font-family: Courier New, Courier, monospace;">getDefaultCharMap()</span> and <span style="font-family: Courier New, Courier, monospace;">isCharMap()</span> but you'll notice I made them private, hence the lowercase first letter of the function names. I do NOT want VCL based code to access the Pimpl! I thought this was a necessary compromise because the logic really was more entwined with the data itself. There is a function <span style="font-family: Courier New, Courier, monospace;">FontCharMap::GetDefaultCharMap()</span>&nbsp;although it's not normally necessary as the default charmap is shared via intrusive_ptr and the default <span style="font-family: Courier New, Courier, monospace;">FontCharMap </span>constructor just returns a reference to the default charmap. I have provided it because you can get a default font charmap that excludes symbols.<br /> <br /> I realised at this point, after a chat with Kendy on IRC, that I had dealt with managing the Pimpl for <span style="font-family: Courier New, Courier, monospace;">FontCharMap</span>, but now I was returning raw <span style="font-family: Courier New, Courier, monospace;">FontCharMap </span>pointers. This was defeating my refactor, so I made the typedef <span style="font-family: Courier New, Courier, monospace;">FontCharMapPtr</span>, which is an intrusive_ptr to a <span style="font-family: Courier New, Courier, monospace;">FontCharMap </span>instance. I then refactored the code to use this instead of the raw pointer. <br /> <br /> The second commit that implemented this can be found <a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl?id=f6d61562d41b8a49449d881da66a3d8fa519487f">here.</a><br /> <br /> Finally, I have to have a big shout-out to Caolán McNamara from RedHat who found a rather embarassing bug I introduced and <a href="http://cgit.freedesktop.org/libreoffice/core/commit/vcl?id=affd907cb4f19d006efc5cbde903970d7f97ef46">fixed it</a>. The issue was that I didn't initialize the ref counter variables, except where I did where I set it to 1... which was rather silly of me, though I was reliably informed by Michael Meeks that he has done the same thing in the past.<br /> <br /> Anyway, this is how I refactored a relatively small class. It actually took a lot of effort to do. In the end, I created a <a href="http://opengrok.libreoffice.org/xref/core/vcl/qa/cppunit/fontcharmap.cxx">unit test </a>to ensure that <span style="font-family: Courier New, Courier, monospace;">FontCharMap </span>was still working correctly.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com1tag:blogger.com,1999:blog-9025736111713624877.post-73014379675716025492014-03-23T00:05:00.002-07:002014-10-21T03:35:34.058-07:00How to build only vcl modules from scratch in LibreOfficeAfter reviewing the component diagram on the <a href="https://wiki.documentfoundation.org/images/9/9a/2013-07-26-libreoffice-non-leaf-modules.png">LibreOffice wiki</a>, the following will make the VCL module in LibreOffice:<br /> <br /> <pre>make sal salhelper store cppuhelper cppu xmlreader registry unoidl dtrans \ binaryurp dtrans animations jvmfwk jvmaccess javaunohelper stoc i18nlangtag \ ucbhelper comphelper basegfx tools unotools i18nutil i18npool sot svl vcl</pre> <div class="separator" style="clear: both; text-align: center;"> <a href="https://wiki.documentfoundation.org/images/9/9a/2013-07-26-libreoffice-non-leaf-modules.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"><img border="0" height="400" src="https://wiki.documentfoundation.org/images/9/9a/2013-07-26-libreoffice-non-leaf-modules.png" width="372" /></a></div> <div class="separator" style="clear: both; text-align: center;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> <b>Update:</b>&nbsp;this doesn't always work. Turns out that there is some sort of circular dependency between i18npool and another module, which make sorts out itself.&nbsp;</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> I'm now trying:</div> <div class="separator" style="clear: both; text-align: left;"> <br /></div> <div class="separator" style="clear: both; text-align: left;"> <span style="font-family: Courier New, Courier, monospace;">make&nbsp;CppunitTest_i18npool_test_breakiterator ucb configmgr vcl</span></div> Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com2tag:blogger.com,1999:blog-9025736111713624877.post-82849436357433769092014-03-08T03:41:00.001-08:002014-03-08T21:39:10.285-08:00Google+ names policy discriminates against Native AmericansI find it absurd that Google+ doesn't recognize certain names. The latest outrage was when they rejected <a href="http://www.buzzfeed.com/joeflood/what-happens-when-google-doesnt-think-youre-a-human">Elaine Yellow Horse</a>. It was only after BuzzFeed contacted Google that they decided that, gee whiz, that <i>is</i> a real name! Who would have thought it.<br /> <br /> So I thought I might let Google know a few things about Anthroponymy. Given Google has a whole division who work out if you've given a real name or not, you would hope they would be well-versed on what can constitute a name. It appears not, even in their own country they don't recognize the name of the original native people who inhabited the land.<br /> <br /> &nbsp;Here are a few things that Google+ administrators might like to brush up on when it comes to names of people around the world:<br /> <br /> <ul> <li>You don't have to have two names. You can be named with just one name - a mononym. This is quite common all over the world.</li> <li>There are those who prefer to be named after their children - this is called teknonymy. As an example, I knew a Lebanese man whose first son was named George. We knew him as Abu George, literally "father of George".<br /> </li> <li>People can have names that are... unusual. Let's give you a few:<br /><br />Jellyfish McSaveloy<br />Heavenly Hiraani Tiger Lily Hutchence<br />Apple Blythe Alison Martin<br />Baby Hospital<br />Yahoo Serious<br />Goveg.com</li><br /><br /> <li>There are a number of people whose names may be mistaken for rudeness:<br /><br />Argelico Fucks<br />Dick Assman<br />Lucious Pusey (changed to Lucious Seymour)<br />Rusty Kuntz<br /><br />So let's see - Google will be banning all the Fucks, Assman, Pusey and Kuntz of the world, even though these are their legal names. </li> </ul> Google, pick up your act. It's getting really old. Frankly, the fact that Elaine Yellow Horse appealed your policy <i>three times</i> and it was only once the media got involved that you did the right thing shows that your staff are either incompetent, or racist. I hope for incompetence. Either is bad, but racism is much worse than incompetence.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com5tag:blogger.com,1999:blog-9025736111713624877.post-39540545644718985132011-02-22T04:03:00.000-08:002011-02-22T04:41:08.138-08:00How to use NUnit in Visual Studio 2010To run NUnit, you need to add the following to the NUnit.exe.config file:<br /><br />Under C:\Program Files\NUnit 2.5.9\bin\net-2.0\nunit.exe.config (replace version with whatever you have installed) add the following:<br /><br /><span style="font-family:courier new;">&nbsp;&lt;startup></span><br /><span style="font-family:courier new;">&nbsp;&nbsp;&nbsp;&lt;!-- the below is WRONG! </span><a style="font-family: courier new;" href="http://msdn.microsoft.com/en-us/library/w4atty68.aspx">See here for why.</a><br /><span style="font-family:courier new;">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&lt;requiredruntime version="v4.0.30319"></span><br /><span style="font-family:courier new;">&nbsp;&nbsp;&nbsp;&nbsp;--></span><br /><span style="font-family:courier new;">&nbsp;&nbsp;&nbsp;&lt;supportedruntime version="v4.0"></span><br /><span style="font-family:courier new;">&nbsp;&lt;/startup></span><br /><br />Also add the following in the &lt;runtime> block:<br /><br /><span style="font-family: courier new;">&lt;loadfromremotesources enabled="true"></span><br /><br />The reason is that in .NET v3.5 and below, remote assemblies were loaded partially trusted. Starting with .NET v4, unless you add this directive then you will get a <a href="http://msdn.microsoft.com/en-us/library/dd409252.aspx">runtime exception</a>.<br /><br />Once you have done this, add another dll project and add a reference to NUnit.Framework.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com2tag:blogger.com,1999:blog-9025736111713624877.post-71244885935786467262011-01-11T04:38:00.000-08:002011-01-11T04:43:36.319-08:00What does Vodafone 3G and the Sydney city bus system have in common?A note to the NSW government. Adding more buses does not decrease travel times. It actually <span style="font-style: italic;">increases </span>travel times. This is called "<a href="http://gettys.wordpress.com/2011/01/03/aggregate-bufferbloat-802-11-and-3g-networks/">bufferbloat</a>" in network systems. Why? Because if you have a limited capacity on a road, and it gets blocked, adding MORE vehicles makes things slower. The only way to fix the issue is to increase the capacity of the roads.<br /><br />It's the same for train lines. Adding MORE trains won't help anything. You need to add more platforms to stations, and with more platforms you need to lay more rail track. Then you distribute the current number of trains on these tracks and make them go faster than they do. If you then add enough platforms and rail tracks, then you can start adding more trains.<br /><br />Congestion theory 101. If only the dimwitted politicians would know it. Or perhaps the public? :-)<br /><br />On that note: Vodafone and 3 - please pay attention! I suspect that this is partly the cause of your incredibly crap service.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-83642412430992546102010-12-28T14:19:00.000-08:002010-12-28T14:22:04.336-08:00My greatest claim to fameSadly, my greatest claim to fame is that I invented the [citation needed] tag. I'll stop sobbing in a corner one day.<br /><br />P.S. if anyone writes [Citation needed], then <a href="http://en.wikipedia.org/w/index.php?title=Template:Citation_needed&amp;diff=391625026&amp;oldid=17662960">[Citation provided]</a>.Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0tag:blogger.com,1999:blog-9025736111713624877.post-60386598171379634022010-12-28T01:43:00.001-08:002010-12-28T02:08:39.904-08:00Markov Chain generatorAs it turns out, with a sufficiently dense input text, a Markov Chain generator is actually reasonably easy to implement.<br /><br />From page 62 of <a href="http://books.google.com/books?id=to6M9_dbjosC&amp;lpg=PP1&amp;ots=3YP0Kfy27a&amp;dq=The%20Practice%20of%20Programming&amp;pg=PA62#v=onepage&amp;q&amp;f=false">The Practice of Programming</a>:<br /><br /><div style="font-family: courier new; line-height: 100%;"><dl><br /><dt>set <i>w1</i> and <i>w2</i> to the first two words in the text</dt><br /><dt>print <i>w1</i> and <i>w2</i></dt><br /><dt>loop:</dt><br /><dd>randomly choose w3, one of the successors of prefix <i>w1</i> <i>w2</i> in the text<br />print <i>w3</i><br />print <i>w1</i> and <i>w2</i> by <i>w2</i> and <i>w3</i><br />repeat loop<br /></dd><br /></dl><br /></div>Ta bu shi da yuhttp://www.blogger.com/profile/00750381951662588677noreply@blogger.com0