Skip to content

Commit d12d897

Browse files
author
Olivier Ligot
committedDec 18, 2012
Support EiffelStudio 7.1 as this is the last stable release
1 parent dd2d0f8 commit d12d897

File tree

5 files changed

+9
-7
lines changed

5 files changed

+9
-7
lines changed
 

‎.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
11
EIFGENs
2+
*.swp
3+
layout.db

‎README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Collection+JSON is a JSON-based read/write hypermedia-type designed to support m
55
See http://www.amundsen.com/media-types/collection/
66

77
Requirement:
8-
compile with EiffelStudio 7.2
8+
compile with EiffelStudio 7.1
99

1010
Try with
1111
http://employee.herokuapp.com

‎README_dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Requirement:
2-
compile with EiffelStudio 7.2
2+
compile with EiffelStudio 7.1
33

44
-- Administration purpose
55
git remote add -f ewf https://github.com/EiffelWebFramework/EWF.git

‎src/cj_client_window.e

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ feature {NONE} -- Initialization
7272

7373
create dm.make (vb, Current)
7474
docking_manager := dm
75-
create f.make_with_name ("layout.db")
75+
create f.make ("layout.db")
7676
dm.close_editor_place_holder
7777
dm.contents.extend (information_tool.sd_content)
7878
dm.contents.extend (queries_tool.sd_content)
@@ -83,7 +83,7 @@ feature {NONE} -- Initialization
8383

8484
if
8585
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 !!!
8787
then
8888

8989
else
@@ -121,7 +121,7 @@ feature -- Action
121121
on_quit
122122
do
123123
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
125125
else
126126
-- .. too bad
127127
end
@@ -413,7 +413,7 @@ feature -- Explore
413413
create e
414414
if {PLATFORM}.is_windows then
415415
create cmd.make_empty
416-
if attached e.item ("ComSpec") as l_comspec then
416+
if attached e.get ("ComSpec") as l_comspec then
417417
cmd.append (l_comspec)
418418
cmd.append_string_general (" /c ")
419419
end

‎src/cj_header_tool.e

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ feature {NONE} -- Initialization
7676
g.set_item (1, n, edit)
7777
edit.pointer_button_release_actions.force_extend (agent edit.activate)
7878
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
8080
create edit
8181
g.set_item (2, n, edit)
8282
edit.set_tooltip ("Click to edit. Right Click to add basic authorization ...")

0 commit comments

Comments
 (0)
Please sign in to comment.