Last active
July 11, 2017 04:02
-
-
Save trongthanh/3c99ba0b75e8bdaa39b245425031cae2 to your computer and use it in GitHub Desktop.
Read a News table (exported from MS SQL Server in Unicode format) and convert to static HTML pages
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* (c) 2017 Thanh Tran | |
* | |
* Node script to convert a SQL Server table of News article to a static HTML site (for archive purpose) | |
* | |
* The SQL Server management tool extract the table to flat text file with below specs: | |
* - Row delimiters: {CR} \r | |
* - Col delimiters: {|} vertical bars | |
* - Unicode encoding (UTF-16) | |
* By Windows OS nature, HTML content in Contents column has new lines with CRLF sequence. | |
* So we distinguish between a row and contents line breaks by new-line characters | |
* See sample.txt for a small extraction of the whole table and to test how it works | |
*/ | |
const fs = require('fs'); | |
const Iconv = require('iconv').Iconv; | |
const iconv = new Iconv( 'UTF-16', 'UTF-8'); | |
let buffer = fs.readFileSync('sample.txt'); | |
let contents = iconv.convert(buffer).toString('utf8') | |
.replace(/>/g, '>') | |
.replace(/</g, '<') | |
.replace(/&/g, '&') | |
.replace(/&/g, '&') // repeated &amp; likely in URL query strings | |
.replace(/"/g, '"') | |
.replace(/src="\/Portals\//g, 'src="http://luutru.sosvietnam.org/Portals/') | |
.replace(/src="http:\/\/(?:www\.)?sosvietnam.org/g, 'src="http://luutru.sosvietnam.org') | |
// normalize the newlines | |
.replace(/\r\n/gm, '\n') // post contents separated by \r\n | |
.split(/\r/g); // rows separated by just \r | |
console.log('Number of articles:', contents.length - 1); // first row has col headers | |
if (contents.length && contents.length > 1) { | |
process(contents); | |
} else { | |
console.log('contents empr:', contents[0].substr(0, 5000)); | |
} | |
function process(lines) { | |
let data = lines.map((line) => { | |
let cols = line.split('|'); | |
return { | |
Id: cols[0], | |
Address: cols[1], | |
Title: cols[2], | |
url: toSlug(cols[2]), | |
SourceInfomationId: cols[3], | |
IsForumIntro: cols[4], | |
Image1: cols[5], | |
ImageTitle1: cols[6], | |
Image2: cols[7], | |
ImageTitle2: cols[8], | |
Image3: cols[9], | |
ImageTitle3: cols[10], | |
Subject: cols[11], | |
Contents: cols[12], | |
Links: cols[13], | |
PrimaryCategoryId: cols[14], | |
Note: cols[15], | |
Status: cols[16], | |
ApprovalDate: cols[17], | |
PublishedDate: cols[18], | |
CreatedUser: cols[19], | |
CreatedDate: cols[20], | |
UpdatedUser: cols[21], | |
UpdatedDate: cols[22], | |
LanguageId: cols[23], | |
PortalId: cols[24], | |
ModuleId: cols[25], | |
ViewCount: cols[26], | |
VoteCount: cols[27], | |
NewsGuid: cols[28], | |
}; | |
}); | |
data.shift(); // remove headers row | |
let htmlIndex = `<html> | |
<head> | |
<title>News Archive</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<table class="table table-bordered table-condensed table-striped"> | |
<tr> | |
<td>ID</td> | |
<td>Title</td> | |
<td>Status</td> | |
<td>Language</td> | |
<td>Last Updated</td> | |
</tr>`; | |
data.forEach((line) => { | |
if (writeArticle(line)) { | |
// index page | |
htmlIndex += ` | |
<tr> | |
<td>${line.Id}</td> | |
<td><a href="posts/${line.Id}-${line.url}.html">${line.Title}</a></td> | |
<td>${line.Status}</td> | |
<td>${line.LanguageId}</td> | |
<td>${line.UpdatedDate}</td> | |
</tr> | |
`; | |
} | |
}); | |
htmlIndex += `</table> | |
</div> | |
</body> | |
</html>`; | |
fs.writeFileSync('index.html', htmlIndex, 'utf8'); | |
} | |
function writeArticle(row) { | |
if (row.Contents && row.url) { | |
let html = `<html> | |
<head> | |
<title>${row.Title}</title> | |
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> | |
</head> | |
<body> | |
<div class="container"> | |
<h1>${row.Title}</h1> | |
<hr> | |
${row.Contents} | |
</div> | |
</body> | |
</html>`; | |
// Please create the folder "posts" first | |
fs.writeFileSync(`posts/${row.Id}-${row.url}.html`, html, 'utf8'); | |
return true; | |
} | |
// content empty if reach here | |
return false; | |
} | |
// from https://codepen.io/trongthanh/pen/rmYBdX | |
function toSlug(str) { | |
if (!str) { | |
return ''; | |
} | |
// Chuyển hết sang chữ thường | |
str = str.toLowerCase(); | |
// xóa dấu | |
str = str.replace(/(à|á|ạ|ả|ã|â|ầ|ấ|ậ|ẩ|ẫ|ă|ằ|ắ|ặ|ẳ|ẵ)/g, 'a'); | |
str = str.replace(/(è|é|ẹ|ẻ|ẽ|ê|ề|ế|ệ|ể|ễ)/g, 'e'); | |
str = str.replace(/(ì|í|ị|ỉ|ĩ)/g, 'i'); | |
str = str.replace(/(ò|ó|ọ|ỏ|õ|ô|ồ|ố|ộ|ổ|ỗ|ơ|ờ|ớ|ợ|ở|ỡ)/g, 'o'); | |
str = str.replace(/(ù|ú|ụ|ủ|ũ|ư|ừ|ứ|ự|ử|ữ)/g, 'u'); | |
str = str.replace(/(ỳ|ý|ỵ|ỷ|ỹ)/g, 'y'); | |
str = str.replace(/(đ)/g, 'd'); | |
// Xóa ký tự đặc biệt | |
str = str.replace(/([^0-9a-z-\s])/g, ''); | |
// Xóa khoảng trắng thay bằng ký tự - | |
str = str.replace(/(\s+)/g, '-'); | |
// Xóa ký tự - liên tiếp | |
str = str.replace(/-+/g, '-'); | |
// xóa phần dự - ở đầu | |
str = str.replace(/^-+/g, ''); | |
// xóa phần dư - ở cuối | |
str = str.replace(/-+$/g, ''); | |
// return | |
return str; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "news-converter", | |
"version": "1.0.0", | |
"description": "", | |
"main": "index.js", | |
"scripts": { | |
"test": "echo \"Error: no test specified\" && exit 1" | |
}, | |
"author": "Thanh Tran <trongthanh@gmail.com> (http://int3ractive.com)", | |
"license": "ISC", | |
"dependencies": { | |
"iconv": "^2.3.0" | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Id|Address|Title|SourceInfomationId|IsForumIntro|Image1|ImageTitle1|Image2|ImageTitle2|Image3|ImageTitle3|Subject|Contents|Links|PrimaryCategoryId|Note|Status|ApprovalDate|PublishedDate|CreatedUser|CreatedDate|UpdatedUser|UpdatedDate|LanguageId|PortalId|ModuleId|ViewCount|VoteCount|NewsGuid | |
88||Thi đua khen thưởng|1||/Portals/0/users/DSC00491.JPG||||||Thi đua khen thưởng|<meta content="text/html; charset=utf-8" http-equiv="Content-Type"> | |
<meta content="Word.Document" name="ProgId"> | |
<meta content="Microsoft Word 12" name="Generator"> | |
<meta content="Microsoft Word 12" name="Originator"> | |
<link href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" rel="File-List" /><o:smarttagtype name="State" namespaceuri="urn:schemas-microsoft-com:office:smarttags"></o:smarttagtype><o:smarttagtype name="place" namespaceuri="urn:schemas-microsoft-com:office:smarttags"></o:smarttagtype> | |
<link href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" rel="themeData" /> | |
<link href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" rel="colorSchemeMapping" /><!--[if gte mso 9]><xml> | |
<w:WordDocument> | |
<w:View>Normal</w:View> | |
<w:Zoom>0</w:Zoom> | |
<w:TrackMoves/> | |
<w:TrackFormatting/> | |
<w:PunctuationKerning/> | |
<w:ValidateAgainstSchemas/> | |
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> | |
<w:IgnoreMixedContent>false</w:IgnoreMixedContent> | |
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> | |
<w:DoNotPromoteQF/> | |
<w:LidThemeOther>EN-US</w:LidThemeOther> | |
<w:LidThemeAsian>X-NONE</w:LidThemeAsian> | |
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> | |
<w:Compatibility> | |
<w:BreakWrappedTables/> | |
<w:SnapToGridInCell/> | |
<w:WrapTextWithPunct/> | |
<w:UseAsianBreakRules/> | |
<w:DontGrowAutofit/> | |
<w:SplitPgBreakAndParaMark/> | |
<w:DontVertAlignCellWithSp/> | |
<w:DontBreakConstrainedForcedTables/> | |
<w:DontVertAlignInTxbx/> | |
<w:Word11KerningPairs/> | |
<w:CachedColBalance/> | |
</w:Compatibility> | |
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> | |
<m:mathPr> | |
<m:mathFont m:val="Cambria Math"/> | |
<m:brkBin m:val="before"/> | |
<m:brkBinSub m:val="--"/> | |
<m:smallFrac m:val="off"/> | |
<m:dispDef/> | |
<m:lMargin m:val="0"/> | |
<m:rMargin m:val="0"/> | |
<m:defJc m:val="centerGroup"/> | |
<m:wrapIndent m:val="1440"/> | |
<m:intLim m:val="subSup"/> | |
<m:naryLim m:val="undOvr"/> | |
</m:mathPr></w:WordDocument> | |
</xml><![endif]--><!--[if gte mso 9]><xml> | |
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" | |
DefSemiHidden="true" DefQFormat="false" DefPriority="99" | |
LatentStyleCount="267"> | |
<w:LsdException Locked="false" Priority="0" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Normal"/> | |
<w:LsdException Locked="false" Priority="9" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 1"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 2"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 3"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 4"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 5"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 6"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 7"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 8"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 9"/> | |
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/> | |
<w:LsdException Locked="false" Priority="10" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Title"/> | |
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/> | |
<w:LsdException Locked="false" Priority="11" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/> | |
<w:LsdException Locked="false" Priority="22" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Strong"/> | |
<w:LsdException Locked="false" Priority="20" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/> | |
<w:LsdException Locked="false" Priority="59" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Table Grid"/> | |
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/> | |
<w:LsdException Locked="false" Priority="1" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 1"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 1"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 1"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/> | |
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/> | |
<w:LsdException Locked="false" Priority="34" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/> | |
<w:LsdException Locked="false" Priority="29" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Quote"/> | |
<w:LsdException Locked="false" Priority="30" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 1"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 1"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 2"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 2"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 2"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 2"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 2"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 3"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 3"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 3"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 3"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 3"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 4"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 4"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 4"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 4"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 4"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 5"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 5"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 5"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 5"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 5"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 6"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 6"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 6"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 6"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 6"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/> | |
<w:LsdException Locked="false" Priority="19" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/> | |
<w:LsdException Locked="false" Priority="21" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/> | |
<w:LsdException Locked="false" Priority="31" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/> | |
<w:LsdException Locked="false" Priority="32" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/> | |
<w:LsdException Locked="false" Priority="33" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/> | |
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/> | |
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/> | |
</w:LatentStyles> | |
</xml><![endif]--><!--[if !mso]><object | |
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object> | |
<style> | |
st1\:*{behavior:url(#ieooui) } | |
</style> | |
<![endif]--><style type="text/css"> | |
<!-- | |
/* Font Definitions */ | |
@font-face | |
{font-family:"Cambria Math"; | |
panose-1:2 4 5 3 5 4 6 3 2 4; | |
mso-font-charset:1; | |
mso-generic-font-family:roman; | |
mso-font-format:other; | |
mso-font-pitch:variable; | |
mso-font-signature:0 0 0 0 0 0;} | |
@font-face | |
{font-family:"\.VnTime"; | |
panose-1:2 11 114 0 0 0 0 0 0 0; | |
mso-font-charset:0; | |
mso-generic-font-family:swiss; | |
mso-font-pitch:variable; | |
mso-font-signature:3 0 0 0 1 0;} | |
/* Style Definitions */ | |
p.MsoNormal, li.MsoNormal, div.MsoNormal | |
{mso-style-unhide:no; | |
mso-style-qformat:yes; | |
mso-style-parent:""; | |
margin:0in; | |
margin-bottom:.0001pt; | |
mso-pagination:widow-orphan; | |
font-size:14.0pt; | |
font-family:"Times New Roman","serif"; | |
mso-fareast-font-family:"Times New Roman";} | |
.MsoChpDefault | |
{mso-style-type:export-only; | |
mso-default-props:yes; | |
font-size:10.0pt; | |
mso-ansi-font-size:10.0pt; | |
mso-bidi-font-size:10.0pt;} | |
@page Section1 | |
{size:8.5in 11.0in; | |
margin:1.0in 1.0in 1.0in 1.0in; | |
mso-header-margin:.5in; | |
mso-footer-margin:.5in; | |
mso-paper-source:0;} | |
div.Section1 | |
{page:Section1;} | |
--> | |
</style><!--[if gte mso 10]> | |
<style> | |
/* Style Definitions */ | |
table.MsoNormalTable | |
{mso-style-name:"Table Normal"; | |
mso-tstyle-rowband-size:0; | |
mso-tstyle-colband-size:0; | |
mso-style-noshow:yes; | |
mso-style-priority:99; | |
mso-style-qformat:yes; | |
mso-style-parent:""; | |
mso-padding-alt:0in 5.4pt 0in 5.4pt; | |
mso-para-margin:0in; | |
mso-para-margin-bottom:.0001pt; | |
mso-pagination:widow-orphan; | |
font-size:11.0pt; | |
font-family:"Calibri","sans-serif"; | |
mso-ascii-font-family:Calibri; | |
mso-ascii-theme-font:minor-latin; | |
mso-fareast-font-family:"Times New Roman"; | |
mso-fareast-theme-font:minor-fareast; | |
mso-hansi-font-family:Calibri; | |
mso-hansi-theme-font:minor-latin; | |
mso-bidi-font-family:"Times New Roman"; | |
mso-bidi-theme-font:minor-bidi;} | |
</style> | |
<![endif]--> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">§Ó x©y dùng ®éi ngò gi¸o viªn, HiÖu tr­ưëng ph¶i biÕt ®éng viªn tinh thÇn chñ ®éng, tÝch cùc cña mçi gi¸o viªn, t¹o bÇu kh«ng khÝ cëi më, phÊn khëi, tin cËy lÉn nhau, gióp nhau hoµn thµnh nhiÖm vô, ®ång thêi biÓu d­ư¬ng khen th­ưëng kÞp thêi. <o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">- Tæ chøc tèt ho¹t ®éng nh©n ngµy 20/11, täa ®µm gi÷a gi¸o viªn, c¸n bé qu¶n lý víi gi¸o viªn nghØ h­ưu nh»m «n l¹i truyÒn thèng nhµ tr­êng, trao ®æi kinh nghiÖm, t©m sù. Qua ®©y còng ®Ó thÓ hiÖn sù quan t©m cña l·nh ®¹o tr­êng ®èi víi gi¸o viªn ®ang c«ng t¸c còng nh­ư gi¸o viªn ®· nghØ h­ưu, tõ ®ã n©ng cao t×nh th©n ¸i, g¾n bã, ý thøc tr¸ch nhiÖm cïng nhau x©y dùng nhµ trư­êng.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">- KÞp thêi th¨m hái, ®éng viªn nh÷ng c¸n bé gi¸o viªn gÆp khã kh¨n, ho¹n n¹n. VËn ®éng mäi ng­ưêi chia sÎ cïng nhau niÒm vui, nçi buån, nh»m n©ng cao tÝnh céng ®ång trong tËp thÓ gi¸o viªn. <o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">- Tæ chøc täa ®µm, th¨m hái tÆng quµ cho nh÷ng c¸n bé gi¸o viªn ®· tõng tham gia qu©n ®éi, th­ư¬ng bÖnh binh nh©n dÞp 22/12, 27/7... §éng viªn khuyÕn khÝch hä ph¸t huy truyÒn thèng b¶n chÊt anh bé ®éi Cô Hå vµo trong c«ng t¸c, häc tËp, rÌn luyÖn lµm gư­¬ng cho mäi ng­ưêi noi theo.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">Song song víi viÖc ®éng viªn tinh thÇn th× hiÖu qu¶ c«ng t¸c cao cña gi¸o viªn còng ph¶i ®­ược ®éng viªn b»ng vËt chÊt ®Ó kÝch thÝch ngư­êi lao ®éng lµm viÖc s¸ng t¹o víi n¨ng suÊt cao h¬n n÷a. Muèn vËy ®Çu n¨m häc ph¶i x©y dùng ®­îc ®Þnh møc vÒ tiÒn thư­ëng thËt râ rµng tïy thuéc vµo tµi chÝnh cña nhµ tr­ưêng. Ph¶i ®Ó cho gi¸o viªn vµ tæ chuyªn m«n ®¨ng ký danh hiÖu thi ®ua. Cuèi kú vµ n¨m häc tæ chøc ®¸nh gi¸, xÕp lo¹i thi ®ua trªn c¬ së hiÖu qu¶ thùc hiÖn c¸c nhiÖm vô ®­ưîc giao cho c¸ nh©n vµ tËp thÓ. Khen th­ưëng kh«ng ®­ưîc b×nh qu©n chñ nghÜa, mµ theo c¸c møc ®Ó thư­ëng cho ®óng, øng víi c¸c lo¹i kh¸c nhau lµ c¸c møc tiÒn th­ưëng kh¸c nhau. Cã <st1:place w:st="on"><st1:state w:st="on">nh­ư</st1:state></st1:place> thÕ míi ®éng viªn, khuyÕn khÝch ®­ưîc mäi ng­ưêi phÊn ®Êu v­ư¬n lªn.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><b><span style="font-size: 12pt; line-height: 120%; color: black;">Các giải pháp khác</span></b><span style="font-size: 12pt; line-height: 120%; color: black;"><o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><b><span style="font-size: 12pt; line-height: 120%; color: black;">Giải pháp 3:</span></b><span style="font-size: 12pt; line-height: 120%; color: black;">&#160;Đổi mới phương pháp dạy học, kiểm tra đánh giá kết quả học tập, tự kiểm định và đánh giá giáo viên, hiệu trưởng theo chuẩn.<o:p></o:p></span></p> | |
<p style="text-align: justify; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;&#160;Thực hiện cuộc vận động toàn ngành đổi mới phương pháp dạy học theo hướng phát huy tính tích cực, tự giác, chủ động, sáng tạo của người học, biến quá trình học tập thành quá trình tự học có hướng dẫn và quản lý của giáo viên.<o:p></o:p></span></p> | |
<p style="text-align: justify; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">- Tổ chức kiểm tra chung các bài kiểm tra định kì theo phân phối chương trình, tổ chức kiểm tra học kì theo hình thức như thi tốt nghiệp.<o:p></o:p></span></p> | |
<p style="text-align: justify; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">- Đổi mới hình thức ra đề kiểm tra theo hướng vận dụng, sáng tạo khong theo hướng ghi nhớ máy móc, đánh đố. <o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><b><span style="font-size: 12pt; line-height: 120%; color: black;">Giải pháp 4:</span></b><span style="font-size: 12pt; line-height: 120%; color: black;">&#160;Xã hội hóa giáo dục<o:p></o:p></span></p> | |
<p style="text-align: justify; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;Thể chế hóa vai trò, trách nhiệm và quyền lợi của nhà trường, cá nhân và gia đình trong việc giám sát và đánh giá giáo dục, phối hợp với nhà trường thực hiện mục tiêu giáo dục, xây dựng môi trường giáo dục lành mạnh và an toàn.<o:p></o:p></span></p> | |
<p style="text-align: justify; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">- Khen thưởng, tôn vinh các nhà hảo tâm, doanh nghiệp đã đóng góp xuất sắc cho sự nghiệp giáo dục và đào tạo.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><b><span style="font-size: 12pt; line-height: 120%; color: black;">Giải pháp 5:</span></b><span style="font-size: 12pt; line-height: 120%; color: black;">&#160;Tăng cường đầu tư cơ sở vật chất <o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;Hoàn thành việc xây dựng sửa chữa, khu nhà chức năng, phòng học nhằm đảm bảo những điều kiện vật chất cơ bản thực hiện việc đổi mới quá trình dạy học. Trong đó, chú trọng đến chuẩn hóa phòng học, phòng thí nghiệm, phòng học bộ môn và trang thiết bị dạy học <o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;Chuyển khu tập thể nhà trường ra ngoài khuôn viên trường, đề nghị UBND Huyên, thành phố mở rộng về phía sau nhà.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;&#160;Xây dựng hệ thống thư viện điện tử dùng chung cho nhà trường, nối mạng Lan tới tất cả các máy tính trong<span style="">&#160; </span>nhà trường.<o:p></o:p></span></p> | |
<p style="text-align: justify; text-indent: 0.5in; line-height: 120%;" class="MsoNormal"><span style="font-size: 12pt; line-height: 120%; color: black;">-&#160;&#160;Xây dựng nhà công vụ cho giáo viên và cán bộ quản lý giáo dục.<o:p></o:p></span></p> | |
<input type="hidden" id="gwProxy" /><!--Session data--><input type="hidden" id="jsProxy" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" /> | |
<div id="refHTML">&#160;</div> | |
<br /> | |
<div id="refHTML">&#160;</div> | |
<input type="hidden" id="gwProxy" /><!--Session data--><input type="hidden" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" id="jsProxy" /> | |
<div id="refHTML">&#160;</div> | |
<input type="hidden" id="gwProxy" /><!--Session data--><input type="hidden" id="jsProxy" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" /> | |
<div id="refHTML">&#160;</div> | |
<input type="hidden" id="gwProxy" /><!--Session data--><input type="hidden" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" id="jsProxy" /> | |
<div id="refHTML">&#160;</div> | |
</meta> | |
</meta> | |
</meta> | |
</meta> | |
<input type="hidden" id="gwProxy"><!--Session data--></input><input type="hidden" id="jsProxy" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" /> | |
<div id="refHTML">&#160;</div>||83||4|2010-12-09 10:56:55.970000000|2010-12-09 11:16:52.640000000|1|2010-12-09 10:56:55.970000000|1|2010-12-09 11:16:52.640000000|vi-VN|0|0|1|0|9757fe5c-739f-4479-b57d-5cd7adf39321 | |
89||Sáng kiến kinh nghiệm|1||/Portals/0/users/host/122010/DSC00992.JPG||||||Sáng kiến kinh nghiệm|<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="ProgId" content="Word.Document"> | |
<meta name="Generator" content="Microsoft Word 12"> | |
<meta name="Originator" content="Microsoft Word 12"> | |
<link rel="File-List" href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_filelist.xml" /><o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="State"></o:smarttagtype><o:smarttagtype namespaceuri="urn:schemas-microsoft-com:office:smarttags" name="place"></o:smarttagtype> | |
<link rel="themeData" href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_themedata.thmx" /> | |
<link rel="colorSchemeMapping" href="file:///C:%5CDOCUME%7E1%5CAdmin%5CLOCALS%7E1%5CTemp%5Cmsohtmlclip1%5C01%5Cclip_colorschememapping.xml" /><!--[if gte mso 9]><xml> | |
<w:WordDocument> | |
<w:View>Normal</w:View> | |
<w:Zoom>0</w:Zoom> | |
<w:TrackMoves/> | |
<w:TrackFormatting/> | |
<w:PunctuationKerning/> | |
<w:ValidateAgainstSchemas/> | |
<w:SaveIfXMLInvalid>false</w:SaveIfXMLInvalid> | |
<w:IgnoreMixedContent>false</w:IgnoreMixedContent> | |
<w:AlwaysShowPlaceholderText>false</w:AlwaysShowPlaceholderText> | |
<w:DoNotPromoteQF/> | |
<w:LidThemeOther>EN-US</w:LidThemeOther> | |
<w:LidThemeAsian>X-NONE</w:LidThemeAsian> | |
<w:LidThemeComplexScript>X-NONE</w:LidThemeComplexScript> | |
<w:Compatibility> | |
<w:BreakWrappedTables/> | |
<w:SnapToGridInCell/> | |
<w:WrapTextWithPunct/> | |
<w:UseAsianBreakRules/> | |
<w:DontGrowAutofit/> | |
<w:SplitPgBreakAndParaMark/> | |
<w:DontVertAlignCellWithSp/> | |
<w:DontBreakConstrainedForcedTables/> | |
<w:DontVertAlignInTxbx/> | |
<w:Word11KerningPairs/> | |
<w:CachedColBalance/> | |
</w:Compatibility> | |
<w:BrowserLevel>MicrosoftInternetExplorer4</w:BrowserLevel> | |
<m:mathPr> | |
<m:mathFont m:val="Cambria Math"/> | |
<m:brkBin m:val="before"/> | |
<m:brkBinSub m:val="--"/> | |
<m:smallFrac m:val="off"/> | |
<m:dispDef/> | |
<m:lMargin m:val="0"/> | |
<m:rMargin m:val="0"/> | |
<m:defJc m:val="centerGroup"/> | |
<m:wrapIndent m:val="1440"/> | |
<m:intLim m:val="subSup"/> | |
<m:naryLim m:val="undOvr"/> | |
</m:mathPr></w:WordDocument> | |
</xml><![endif]--><!--[if gte mso 9]><xml> | |
<w:LatentStyles DefLockedState="false" DefUnhideWhenUsed="true" | |
DefSemiHidden="true" DefQFormat="false" DefPriority="99" | |
LatentStyleCount="267"> | |
<w:LsdException Locked="false" Priority="0" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Normal"/> | |
<w:LsdException Locked="false" Priority="9" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="heading 1"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 2"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 3"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 4"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 5"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 6"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 7"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 8"/> | |
<w:LsdException Locked="false" Priority="9" QFormat="true" Name="heading 9"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 1"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 2"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 3"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 4"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 5"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 6"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 7"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 8"/> | |
<w:LsdException Locked="false" Priority="39" Name="toc 9"/> | |
<w:LsdException Locked="false" Priority="35" QFormat="true" Name="caption"/> | |
<w:LsdException Locked="false" Priority="10" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Title"/> | |
<w:LsdException Locked="false" Priority="1" Name="Default Paragraph Font"/> | |
<w:LsdException Locked="false" Priority="11" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtitle"/> | |
<w:LsdException Locked="false" Priority="22" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Strong"/> | |
<w:LsdException Locked="false" Priority="20" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Emphasis"/> | |
<w:LsdException Locked="false" Priority="59" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Table Grid"/> | |
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Placeholder Text"/> | |
<w:LsdException Locked="false" Priority="1" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="No Spacing"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 1"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 1"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 1"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 1"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 1"/> | |
<w:LsdException Locked="false" UnhideWhenUsed="false" Name="Revision"/> | |
<w:LsdException Locked="false" Priority="34" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="List Paragraph"/> | |
<w:LsdException Locked="false" Priority="29" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Quote"/> | |
<w:LsdException Locked="false" Priority="30" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Quote"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 1"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 1"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 1"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 1"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 1"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 1"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 1"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 2"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 2"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 2"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 2"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 2"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 2"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 2"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 2"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 2"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 2"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 3"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 3"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 3"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 3"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 3"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 3"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 3"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 3"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 3"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 3"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 4"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 4"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 4"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 4"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 4"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 4"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 4"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 4"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 4"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 4"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 5"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 5"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 5"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 5"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 5"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 5"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 5"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 5"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 5"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 5"/> | |
<w:LsdException Locked="false" Priority="60" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Shading Accent 6"/> | |
<w:LsdException Locked="false" Priority="61" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light List Accent 6"/> | |
<w:LsdException Locked="false" Priority="62" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Light Grid Accent 6"/> | |
<w:LsdException Locked="false" Priority="63" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="64" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Shading 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="65" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="66" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium List 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="67" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 1 Accent 6"/> | |
<w:LsdException Locked="false" Priority="68" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 2 Accent 6"/> | |
<w:LsdException Locked="false" Priority="69" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Medium Grid 3 Accent 6"/> | |
<w:LsdException Locked="false" Priority="70" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Dark List Accent 6"/> | |
<w:LsdException Locked="false" Priority="71" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Shading Accent 6"/> | |
<w:LsdException Locked="false" Priority="72" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful List Accent 6"/> | |
<w:LsdException Locked="false" Priority="73" SemiHidden="false" | |
UnhideWhenUsed="false" Name="Colorful Grid Accent 6"/> | |
<w:LsdException Locked="false" Priority="19" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtle Emphasis"/> | |
<w:LsdException Locked="false" Priority="21" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Emphasis"/> | |
<w:LsdException Locked="false" Priority="31" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Subtle Reference"/> | |
<w:LsdException Locked="false" Priority="32" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Intense Reference"/> | |
<w:LsdException Locked="false" Priority="33" SemiHidden="false" | |
UnhideWhenUsed="false" QFormat="true" Name="Book Title"/> | |
<w:LsdException Locked="false" Priority="37" Name="Bibliography"/> | |
<w:LsdException Locked="false" Priority="39" QFormat="true" Name="TOC Heading"/> | |
</w:LatentStyles> | |
</xml><![endif]--><!--[if !mso]><object | |
classid="clsid:38481807-CA0E-42D2-BF39-B33AF135CC4D" id=ieooui></object> | |
<style> | |
st1\:*{behavior:url(#ieooui) } | |
</style> | |
<![endif]--><style type="text/css"> | |
<!-- | |
/* Font Definitions */ | |
@font-face | |
{font-family:"Cambria Math"; | |
panose-1:2 4 5 3 5 4 6 3 2 4; | |
mso-font-charset:1; | |
mso-generic-font-family:roman; | |
mso-font-format:other; | |
mso-font-pitch:variable; | |
mso-font-signature:0 0 0 0 0 0;} | |
@font-face | |
{font-family:"\.VnTime"; | |
panose-1:2 11 114 0 0 0 0 0 0 0; | |
mso-font-charset:0; | |
mso-generic-font-family:swiss; | |
mso-font-pitch:variable; | |
mso-font-signature:3 0 0 0 1 0;} | |
/* Style Definitions */ | |
p.MsoNormal, li.MsoNormal, div.MsoNormal | |
{mso-style-unhide:no; | |
mso-style-qformat:yes; | |
mso-style-parent:""; | |
margin:0in; | |
margin-bottom:.0001pt; | |
mso-pagination:widow-orphan; | |
font-size:14.0pt; | |
font-family:"Times New Roman","serif"; | |
mso-fareast-font-family:"Times New Roman";} | |
.MsoChpDefault | |
{mso-style-type:export-only; | |
mso-default-props:yes; | |
font-size:10.0pt; | |
mso-ansi-font-size:10.0pt; | |
mso-bidi-font-size:10.0pt;} | |
@page Section1 | |
{size:8.5in 11.0in; | |
margin:1.0in 1.0in 1.0in 1.0in; | |
mso-header-margin:.5in; | |
mso-footer-margin:.5in; | |
mso-paper-source:0;} | |
div.Section1 | |
{page:Section1;} | |
--> | |
</style><!--[if gte mso 10]> | |
<style> | |
/* Style Definitions */ | |
table.MsoNormalTable | |
{mso-style-name:"Table Normal"; | |
mso-tstyle-rowband-size:0; | |
mso-tstyle-colband-size:0; | |
mso-style-noshow:yes; | |
mso-style-priority:99; | |
mso-style-qformat:yes; | |
mso-style-parent:""; | |
mso-padding-alt:0in 5.4pt 0in 5.4pt; | |
mso-para-margin:0in; | |
mso-para-margin-bottom:.0001pt; | |
mso-pagination:widow-orphan; | |
font-size:11.0pt; | |
font-family:"Calibri","sans-serif"; | |
mso-ascii-font-family:Calibri; | |
mso-ascii-theme-font:minor-latin; | |
mso-fareast-font-family:"Times New Roman"; | |
mso-fareast-theme-font:minor-fareast; | |
mso-hansi-font-family:Calibri; | |
mso-hansi-theme-font:minor-latin; | |
mso-bidi-font-family:"Times New Roman"; | |
mso-bidi-theme-font:minor-bidi;} | |
</style> | |
<![endif]--> | |
<p class="MsoNormal" style="text-align: justify; text-indent: 0.5in; line-height: 120%;"><span style="font-size: 12pt; line-height: 120%; font-family: &quot;.VnTime&quot;,&quot;sans-serif&quot;;">Nhµ trư­êng ph¸t ®éng gi¸o viªn viÕt SKKN, vÒ ph¸t hiÖn vµ båi dư­ìng HSG,<span style="">&#160; </span>vÒ c¸c khÝa c¹nh cña gi¸o dôc <st1:place w:st="on"><st1:state w:st="on">như­</st1:state></st1:place> ph­ư¬ng ph¸p gi¸o dôc ®¹o ®øc, vÒ gi¶i bµi tËp, vÒ x©y dùng tËp thÓ líp vÒ ph­ư¬ng ph¸p gi¶ng d¹y v.v.... Cuèi n¨m héi ®ång xÐt s¸ng kiÕn kinh nghiÖm cña tr­ưêng sÏ tæ chøc nghiÖm thu, xÕp lo¹i vµ chän nh÷ng s¸ng kiÕn kinh nghiÖm xÕp<span style="">&#160; </span>lo¹i A ®­ưîc chän göi vÒ<span style="">&#160; </span>Së Gi¸o dôc ®Ó Së xem xÐt, ®¸nh gi¸ c«ng nhËn vµ khen th­ưëng. Nh÷ng s¸ng kiÕn kinh nghiÖm ®ư­îc së c«ng nhËn, nhµ tr­ường ph« t« göi l¹i tæ chuyªn m«n lµm tµi liÖu tham kh¶o vµ triÓn khai thùc hiÖn. Nhê nh÷ng biÖn ph¸p båi dư­ìng trªn ®©y mµ tr×nh ®é tay nghÒ, tr×nh ®é chuyªn m«n, nh©n c¸ch cña thÇy gi¸o ®ư­îc n©ng lªn mét b­ưíc râ rÖt. <o:p></o:p></span></p> | |
<div id="refHTML">&#160;</div> | |
<br /> | |
<div id="refHTML">&#160;</div> | |
</meta> | |
</meta> | |
</meta> | |
</meta> | |
<input type="hidden" id="gwProxy"><!--Session data--></input><input type="hidden" id="jsProxy" onclick="if(typeof(jsCall)=='function'){jsCall();}else{setTimeout('jsCall()',500);}" /> | |
<div id="refHTML">&#160;</div>||83||4|2010-12-09 11:24:54.407000000|2010-12-09 11:27:52.453000000|1|2010-12-09 11:24:54.407000000|1|2010-12-09 11:27:52.453000000|vi-VN|0|0|2|0| |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment