moved files inside webnotes

This commit is contained in:
Rushabh Mehta 2013-12-11 10:54:53 +05:30
parent aebb3e8bd4
commit 80dd737246
2 changed files with 0 additions and 54 deletions

View file

@ -1,36 +0,0 @@
# Sample httpd.conf extension ot start wnframework
# Port on which you want to run wnframework
Listen 8080
NameVirtualHost *:8080
<VirtualHost *:8080>
ServerName localhost
# your erpnext folder
DocumentRoot /var/www/erpnext/public/
AddHandler cgi-script .cgi .xml .py
AddType application/vnd.ms-fontobject .eot
AddType font/ttf .ttf
AddType font/otf .otf
AddType application/x-font-woff .woff
<Directory /var/www/erpnext/public/>
# directory specific options
Options -Indexes +FollowSymLinks +ExecCGI
# directory's index file
DirectoryIndex web.py
AllowOverride all
Order Allow,Deny
Allow from all
# rewrite rule
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-l
RewriteRule ^([^/]+)$ /web.py?page=$1 [QSA,L]
</Directory>
</VirtualHost>

View file

@ -1,18 +0,0 @@
wn.app = {
name: 'Yourapp',
license: 'GNU/GPL - Usage Condition: All "yourapp" branding must be kept as it is',
source: 'https://github.com/webnotes/yourapp',
publisher: 'Your Company',
copyright: '&copy; Your Company',
version: window._version_number
}
// call startup when ready
$(document).bind('ready', function() {
startup();
});
$(document).bind('toolbar_setup', function() {
$('.brand').html('yourbrand\
<i class="icon-home icon-white navbar-icon-home" ></i>');
});