Skip to content

Commit

Permalink
v1
Browse files Browse the repository at this point in the history
Till AP Invoing
  • Loading branch information
inoerp committed Mar 15, 2014
0 parents commit 9aad91d
Show file tree
Hide file tree
Showing 1,258 changed files with 118,769 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Auto detect text files and perform LF normalization
* text=auto

# Custom for Visual Studio
*.cs diff=csharp
*.sln merge=union
*.csproj merge=union
*.vbproj merge=union
*.fsproj merge=union
*.dbproj merge=union

# Standard to msysgit
*.doc diff=astextplain
*.DOC diff=astextplain
*.docx diff=astextplain
*.DOCX diff=astextplain
*.dot diff=astextplain
*.DOT diff=astextplain
*.pdf diff=astextplain
*.PDF diff=astextplain
*.rtf diff=astextplain
*.RTF diff=astextplain
215 changes: 215 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,215 @@
#################
## Eclipse
#################

*.pydevproject
.project
.metadata
bin/
tmp/
*.tmp
*.bak
*.swp
*~.nib
local.properties
.classpath
.settings/
.loadpath

# External tool builders
.externalToolBuilders/

# Locally stored "Eclipse launch configurations"
*.launch

# CDT-specific
.cproject

# PDT-specific
.buildpath


#################
## Visual Studio
#################

## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.

# User-specific files
*.suo
*.user
*.sln.docstates

# Build results

[Dd]ebug/
[Rr]elease/
x64/
build/
[Bb]in/
[Oo]bj/

# MSTest test Results
[Tt]est[Rr]esult*/
[Bb]uild[Ll]og.*

*_i.c
*_p.c
*.ilk
*.meta
*.obj
*.pch
*.pdb
*.pgc
*.pgd
*.rsp
*.sbr
*.tlb
*.tli
*.tlh
*.tmp
*.tmp_proj
*.log
*.vspscc
*.vssscc
.builds
*.pidb
*.log
*.scc

# Visual C++ cache files
ipch/
*.aps
*.ncb
*.opensdf
*.sdf
*.cachefile

# Visual Studio profiler
*.psess
*.vsp
*.vspx

# Guidance Automation Toolkit
*.gpState

# ReSharper is a .NET coding add-in
_ReSharper*/
*.[Rr]e[Ss]harper

# TeamCity is a build add-in
_TeamCity*

# DotCover is a Code Coverage Tool
*.dotCover

# NCrunch
*.ncrunch*
.*crunch*.local.xml

# Installshield output folder
[Ee]xpress/

# DocProject is a documentation generator add-in
DocProject/buildhelp/
DocProject/Help/*.HxT
DocProject/Help/*.HxC
DocProject/Help/*.hhc
DocProject/Help/*.hhk
DocProject/Help/*.hhp
DocProject/Help/Html2
DocProject/Help/html

# Click-Once directory
publish/

# Publish Web Output
*.Publish.xml
*.pubxml

# NuGet Packages Directory
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
#packages/

# Windows Azure Build Output
csx
*.build.csdef

# Windows Store app package directory
AppPackages/

# Others
sql/
*.Cache
ClientBin/
[Ss]tyle[Cc]op.*
~$*
*~
*.dbmdl
*.[Pp]ublish.xml
*.pfx
*.publishsettings

# RIA/Silverlight projects
Generated_Code/

# Backup & report files from converting an old project file to a newer
# Visual Studio version. Backup files are not needed, because we have git ;-)
_UpgradeReport_Files/
Backup*/
UpgradeLog*.XML
UpgradeLog*.htm

# SQL Server files
App_Data/*.mdf
App_Data/*.ldf

#############
## Windows detritus
#############

# Windows image file caches
Thumbs.db
ehthumbs.db

# Folder config file
Desktop.ini

# Recycle Bin used on file shares
$RECYCLE.BIN/

# Mac crap
.DS_Store


#############
## Python
#############

*.py[co]

# Packages
*.egg
*.egg-info
dist/
build/
eggs/
parts/
var/
sdist/
develop-eggs/
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
63 changes: 63 additions & 0 deletions .htaccess
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#Make sure no can access the directories through HTTP
Options -Indexes

#Make index.php as home page
DirectoryIndex index.php

#remove .php extensions
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^([^/]+)/$ $1.php
RewriteRule ^([^/]+)/([^/]+)/$ /$1/$2.php
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !(\.[a-zA-Z0-9]{1,5}|/)$
RewriteRule (.*)$ /$1/ [R=301,L]

# Protect files and directories from Others.
<FilesMatch "\.(engine|inc|include|info|install|make|module|extensions|profile|test|po|sh|.*sql|theme|tpl(\.php)?|xtmpl|svn-base)$|^(code-style\.pl|Entries.*|Repository|Root|Tag|Template|all-wcprops|entries|format)$">
Order allow,deny
</FilesMatch>

# Handel any 404 errors.
ErrorDocument 404 /index.php

# Override PHP settings.
# PHP 5, Apache 1 and 2.
<IfModule mod_php5.c>
php_value magic_quotes_gpc 0
php_value register_globals 0
php_value session.auto_start 0
php_value mbstring.http_input pass
php_value mbstring.http_output pass
php_value mbstring.encoding_translation 0
</IfModule>

# Set the default handler.
DirectoryIndex index.php

# Overwrite till test
# PHP error handling for development servers
php_value error_reporting E_ALL
php_value error_reporting E_NOTICE
php_value error_reporting E_DEPRECATED
php_flag display_startup_errors on
php_flag display_errors on
php_flag html_errors on
php_flag log_errors on
php_flag ignore_repeated_errors off
php_flag ignore_repeated_source off
php_flag report_memleaks on
php_flag track_errors on
php_value docref_root 0
php_value docref_ext 0
php_value error_log /home/path/public_html/domain/PHP_errors.log
php_value error_reporting -1
php_value log_errors_max_len 0

<Files PHP_errors.log>
Order allow,deny
Deny from all
Satisfy All
</Files>
# Remove above in production site
43 changes: 43 additions & 0 deletions content.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?php require_once("include/basics/connection.php"); ?>
<?php require_once("include/function/functions.php"); ?>
<?php include_once("include/basics/header.php"); ?>
<div id="left-block">
<h2>Menu</h2>
<ul>
<li> <a href="content.php">Web Site Contents</a></li>
<li> <a href="new_user.php">Register new user</a></li>
<li> <a href="logout.php">Log out</a></li>
</ul>

</div>
<div id="strucure">
<h1> Supplier Informations</h1>
<?php

echo "<table width='550px' border='1px'>" ;

$suppliers= find_all_suppliers();
while($supplier=mysql_fetch_array($suppliers)){
echo "<tr><td><a href=\"content.php?supplier=" . urlencode($supplier['supplier_id']) .
"\"> {$supplier["supp_name"]} </a></td>
<td>{$supplier["supplier_number"]}</td></tr>";

$supplier_sites = find_all_supplier_sites($supplier["supplier_id"]);
While ($site_row=mysql_fetch_array($supplier_sites)){
echo "<tr><td><a href=\"content.php?supplier_site=" . urlencode($site_row['supplier_site_id']) .
"\"> {$site_row["supplier_site_name"]}</td>
<td>{$site_row["supplier_site_number"]} </td></tr>";

}

}
echo "</table>" ;

?>
</div>
</div>
<div id="right-block">Content for Right Block

</div>

<?php require("include/basics/fotter.php"); ?>
10 changes: 10 additions & 0 deletions download.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<?php
require_once 'includes/functions/functions.inc';
$str_var = $_POST["data"];
$array_var = unserialize(base64_decode($str_var));
download_send_headers("data_export_" . date("Y-m-d") . ".csv");
//download_send_headers("data_export_" . date("Y-m-d") . ".html");
echo array2csv($array_var);
die();

?>
Loading

0 comments on commit 9aad91d

Please sign in to comment.