File tree 5 files changed +9
-7
lines changed
5 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
EIFGENs
2
+ * .swp
3
+ layout.db
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ Collection+JSON is a JSON-based read/write hypermedia-type designed to support m
5
5
See http://www.amundsen.com/media-types/collection/
6
6
7
7
Requirement:
8
- compile with EiffelStudio 7.2
8
+ compile with EiffelStudio 7.1
9
9
10
10
Try with
11
11
http://employee.herokuapp.com
Original file line number Diff line number Diff line change 1
1
Requirement:
2
- compile with EiffelStudio 7.2
2
+ compile with EiffelStudio 7.1
3
3
4
4
-- Administration purpose
5
5
git remote add -f ewf https://github.com/EiffelWebFramework/EWF.git
Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ feature {NONE} -- Initialization
72
72
73
73
create dm .make (vb , Current )
74
74
docking_manager := dm
75
- create f .make_with_name (" layout.db" )
75
+ create f .make (" layout.db" )
76
76
dm .close_editor_place_holder
77
77
dm .contents .extend (information_tool .sd_content )
78
78
dm .contents .extend (queries_tool .sd_content )
@@ -83,7 +83,7 @@ feature {NONE} -- Initialization
83
83
84
84
if
85
85
f .exists and then f .is_readable and then
86
- dm .open_config_with_path ( create { PATH }. make_from_string ( " layout.db" ) ) -- side effect !!!
86
+ dm .open_config ( " layout.db" ) -- side effect !!!
87
87
then
88
88
89
89
else
@@ -121,7 +121,7 @@ feature -- Action
121
121
on_quit
122
122
do
123
123
if attached docking_manager as dm then
124
- if dm .save_data_with_path ( create { PATH }. make_from_string ( " layout.db" ) ) then
124
+ if dm .save_data ( " layout.db" ) then
125
125
else
126
126
-- .. too bad
127
127
end
@@ -413,7 +413,7 @@ feature -- Explore
413
413
create e
414
414
if {PLATFORM }.is_windows then
415
415
create cmd .make_empty
416
- if attached e .item (" ComSpec" ) as l_comspec then
416
+ if attached e .get (" ComSpec" ) as l_comspec then
417
417
cmd .append (l_comspec )
418
418
cmd .append_string_general (" /c " )
419
419
end
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ feature {NONE} -- Initialization
76
76
g .set_item (1 , n , edit )
77
77
edit .pointer_button_release_actions .force_extend (agent edit .activate )
78
78
end
79
- if a_name /= Void and then a_name .is_case_insensitive_equal (" Authorization " ) then
79
+ if a_name /= Void and then a_name .as_lower . is_equal (" authorization " ) then
80
80
create edit
81
81
g .set_item (2 , n , edit )
82
82
edit .set_tooltip (" Click to edit. Right Click to add basic authorization ..." )
You can’t perform that action at this time.
0 commit comments