root/tags/omega-1.0.0-rc3/gui/Makefile

Revision 814, 0.8 kB (checked in by rats, 1 year ago)

* Fixed #639: reseller/order_settings.php converts html entities back to their values
* Fixed #672: using encode/decode_idna on a url makes it illegal
* Fixed #675: admin's view of users still uses old .tpl (without links to domain aliases) (thanks to Grégory Marigot)
* Fixed #693: SQL Syntax Error on Edit a Domain
* Fixed #694: Double icons in the menu
* Fixed #695: Errordocs Cleanup (thanks to Benedikt Heintel)
* Fixed #710: Broken design, missing units

Line 
1
2 SYSTEM_GUI_ROOT=$(SYSTEM_ROOT)/gui
3
4 export
5
6 install:
7
8         $(SYSTEM_MAKE_DIRS) $(SYSTEM_GUI_ROOT)
9
10         cp ./index.php $(SYSTEM_GUI_ROOT)/index.php
11         cp ./lostpassword.php $(SYSTEM_GUI_ROOT)/lostpassword.php
12         cp ./imagecode.php $(SYSTEM_GUI_ROOT)/imagecode.php
13         cp ./robots.txt $(SYSTEM_GUI_ROOT)/robots.txt
14         cp ./favicon.ico $(SYSTEM_GUI_ROOT)/favicon.ico
15
16         cp -dR ./admin $(SYSTEM_GUI_ROOT)
17         cp -dR ./reseller $(SYSTEM_GUI_ROOT)
18         cp -dR ./client $(SYSTEM_GUI_ROOT)
19         cp -dR ./include $(SYSTEM_GUI_ROOT)
20
21         cp -dR ./domain_default_page $(SYSTEM_GUI_ROOT)
22         cp -dR ./errordocs $(SYSTEM_GUI_ROOT)
23         cp -dR ./themes $(SYSTEM_GUI_ROOT)
24         cp -dR ./tools $(SYSTEM_GUI_ROOT)
25         cp -dR ./orderpanel $(SYSTEM_GUI_ROOT)
26
27         cp -dR ./phptmp $(SYSTEM_GUI_ROOT)
28
29 uninstall:
30
31         rm -rf $(SYSTEM_GUI_ROOT)
32
33 .PHONY: install uninstall
Note: See TracBrowser for help on using the browser.