Roland Häder
bb06d9ce32
Continued with coding convention:
...
- added curly braces around conditional code blocks
- added space between if/foreach/... and brace
- rewrote a code block so if dbm::is_result() fails it will abort, else the id
is fetched from INSERT statement
- made some SQL keywords upper-cased and added back-ticks to columns/table names
Signed-off-by: Roland Haeder <roland@mxchange.org>
2016-12-20 21:17:19 +01:00
Roland Häder
54615be22e
Continued with coding convention:
...
- added curly braces around conditional code blocks
- added space between if/foreach/... and brace
- rewrote a code block so if dbm::is_result() fails it will abort, else the id
is fetched from INSERT statement
- made some SQL keywords upper-cased and added back-ticks to columns/table names
Signed-off-by: Roland Haeder <roland@mxchange.org>
2016-12-20 21:16:01 +01:00
Roland Häder
ace8f753ac
added much more curly braces + space between "if" and brace
...
Signed-off-by: Roland Häder <roland@mxchange.org>
Conflicts:
mod/bookmarklet.php
mod/community.php
mod/contacts.php
mod/crepair.php
mod/events.php
mod/network.php
mod/suggest.php
mod/uexport.php
view/theme/duepuntozero/config.php
view/theme/frio/config.php
view/theme/quattro/config.php
view/theme/vier/config.php
2016-12-20 11:59:13 +01:00
Roland Häder
e24c3a5b82
added much more curly braces + space between "if" and brace
...
Signed-off-by: Roland Häder <roland@mxchange.org>
2016-12-20 11:56:34 +01:00
Roland Häder
fb817b18ad
changed to this:
...
---------------------
function bla (App &$a) {
$a->bla = 'stuff';
}
---------------------
Signed-off-by: Roland Häder <roland@mxchange.org>
2016-12-20 10:59:06 +01:00
Roland Häder
884f44ce94
*much* more usage of App::get_baseurl() instead of $a->get_baseurl() (coding convention applied)
...
Signed-off-by: Roland Häder <roland@mxchange.org>
2016-12-19 14:27:16 +01:00
Roland Häder
448c5aa694
Cleanup for #3010 - added spaces, thanks to @annando .
...
Signed-off-by: Roland Häder <roland@mxchange.org>
2016-12-14 09:42:28 +01:00
Roland Häder
63610c7b73
Merge branch 'rewrites/dbm_is_result' of github.com:Quix0r/friendica into rewrites/dbm_is_result
...
Signed-off-by: Roland Häder <roland@mxchange.org>
Conflicts:
include/Photo.php
include/api.php
include/cache.php
include/dbstructure.php
include/enotify.php
include/items.php
include/onepoll.php
include/queue_fn.php
include/session.php
include/text.php
mod/contacts.php
mod/dfrn_request.php
mod/display.php
mod/events.php
mod/item.php
mod/message.php
mod/msearch.php
mod/photos.php
mod/poco.php
mod/profile.php
mod/proxy.php
mod/videos.php
update.php
view/theme/diabook/theme.php
view/theme/vier/theme.php
2016-12-13 11:00:44 +01:00
Roland Häder
6a8a36f12d
More usage of dbm::is_result($r) instead of count($r):
...
- count() returns very different results and never a boolean (not even false on
error condition).
- therefore you should NOT use it in boolean expressions. This still *can* be
done in PHP because of its lazyness. But it is discouraged if it comes to
more clean code.
Signed-off-by: Roland Häder <roland@mxchange.org>
2016-12-13 10:44:13 +01:00
Hypolite Petovan
3e4781172f
Add response active support to vier theme
...
- Add active class to wall_thread.tpl, search_item.tpl, photo_item.tpl
- Add style
Note: because of an !important in the Dark variant stylesheet, the
active links won't show up
2016-11-22 16:32:04 +01:00
Michael Vogel
196eb6009f
The XMPP address is now in the profile and will be transmitted
2016-09-25 15:28:00 +00:00
Roland Häder
c825cc8d0d
This merge brings back dbm::is_result() where I could find it.
...
Merge branch 'develop' of github.com:friendica/friendica into rhaeder-develop
Signed-off-by: Roland Haeder <roland@mxchange.org>
2016-09-18 23:21:18 +02:00
rabuzarus
37ae63e120
fix contact dropping on contact edit page also for other themes
2016-08-17 16:51:04 +02:00
rabuzarus
768d10536f
frio: templates for contact_edit and crepair
2016-07-26 09:09:40 +02:00
Ben Roberts
864cf0f70d
update MF2 and vcard data for issue #2629
2016-06-21 10:23:43 -04:00
rabuzarus
7dc5fc8b9f
Merge develop into 1206-events-template
...
Conflicts:
view/theme/frio/css/style.css
2016-06-17 14:33:08 +02:00
rabuzarus
c99da380cf
frio: events - adapt changes to the templates of the other themes
2016-06-17 10:33:12 +02:00
rabuzarus
3a9a9e6a1c
frio + core: some restructure in profiles.php + frio template for profiles settings
2016-06-10 11:24:38 +02:00
Michael Vogel
e2e32eecac
New template for shared content instead of hardcoded stuff in source
2016-06-07 22:29:50 +02:00
Michael Vogel
0a617da044
Wall message can now redirect to your own page if you are connected.
2016-05-29 21:29:26 +02:00
rabuzarus
6944d67dbc
photos view: fix js error with undefined variable
2016-05-13 01:26:07 +02:00
Tobias Diekershoff
3a819e3630
Merge pull request #2500 from fabrixxm/feature_mobile_notification_menu
...
style notification menu to be more mobile-friendly
2016-05-02 15:20:56 +02:00
Fabrixxm
343c7faba4
style notification menu to be more mobile-friendly
2016-05-02 14:55:57 +02:00
Fabrixxm
9a6cfcfd88
small fix to embed iframes on mobile
2016-05-02 14:17:55 +02:00
Roland Häder
3e701b90ac
Continued rewriting:
...
- use dba::is_result() everywhere (where I found the old, bad way)
- converted some spaces -> tabs for code
- converted some CRLF -> LF as mixures of both is not good
Signed-off-by: Roland Haeder <roland@mxchange.org>
2016-05-01 14:24:44 +02:00
rabuzarus
f695c918fd
vier-mobile: expand embedded video on play
2016-05-01 13:48:52 +02:00
rabuzarus
aef332aad0
vier-mobile: little css fix
2016-05-01 13:48:52 +02:00
rabuzarus
10ac4a4475
vier-mobile: fix embedded video for tablets and bigger
2016-05-01 13:48:52 +02:00
rabuzarus
08abb4ae79
vier-mobile: fix embedded video and embedded link images for tablets and bigger
2016-05-01 13:48:52 +02:00
rabuzarus
d049c8d5c5
vier-mobile: fix threaded view for tablets and bigger
2016-05-01 13:48:52 +02:00
Michael Vogel
829e7ace06
Vier: No visible login border/no search and events without login
2016-05-01 13:48:52 +02:00
rabuzarus
0056403b15
fix: contact edit poll_interval wasn't submitted
2016-05-01 13:48:52 +02:00
rabuzarus
856f54da62
rework autocompletion: Update mobile.css
2016-05-01 13:48:52 +02:00
rabuzarus
d32c0e8eb4
vier: colorbox fix (img max-width: 100%)
2016-05-01 13:48:52 +02:00
rabuzarus
cc7d1d453b
rework autocomplete: seperate bbcode completion
2016-05-01 13:47:24 +02:00
rabuzarus
2bd60075ae
rework autocomplete: some styling if contact is forum
2016-05-01 13:46:08 +02:00
rabuzarus
586b251539
rework autocomplete: some cleanup and docu
2016-05-01 13:46:08 +02:00
rabuzarus
52896d64c2
rework autocomplete: css work
2016-05-01 13:45:38 +02:00
rabuzarus
9943d4a60a
vier-mobile: expand embedded video on play
2016-04-25 22:12:53 +02:00
Michael Vogel
1f4f60a82d
Merge pull request #2480 from rabuzarus/2504_vier_mobile_fix
...
vier mobile fixes
2016-04-25 21:41:43 +02:00
rabuzarus
4daa9a50f5
vier-mobile: little css fix
2016-04-25 20:30:02 +02:00
rabuzarus
fa66fa9b28
vier-mobile: fix embedded video for tablets and bigger
2016-04-25 20:24:36 +02:00
rabuzarus
7b48ef23d5
vier-mobile: fix embedded video and embedded link images for tablets and bigger
2016-04-25 20:04:10 +02:00
rabuzarus
c553ab9b46
vier-mobile: fix threaded view for tablets and bigger
2016-04-25 19:54:03 +02:00
Michael Vogel
0c5f315294
Vier: No visible login border/no search and events without login
2016-04-24 21:45:06 +02:00
rabuzarus
7ee9c536ee
fix: contact edit poll_interval wasn't submitted
2016-04-20 15:37:34 +02:00
rabuzarus
9190380dec
rework autocompletion: Update mobile.css
2016-04-17 22:27:49 +02:00
rabuzarus
84238e1b89
vier: colorbox fix (img max-width: 100%)
2016-04-17 15:34:15 +02:00
rabuzarus
98b62b80f3
rework autocomplete: seperate bbcode completion
2016-04-14 23:59:29 +02:00
rabuzarus
01b02dbcaa
Merge develop into 1404_reworked_autocomplete
...
Conflicts:
include/text.php
view/templates/head.tpl
view/theme/duepuntozero/style.css
view/theme/vier/style.css
2016-04-14 16:23:51 +02:00
fabrixxm
d30d13959b
Merge pull request #2328 from rabuzarus/0602_contact_profile
...
polishing of the contact-edit page
2016-03-06 19:56:59 +01:00
Michael Vogel
996cd8c24e
The Font Awesome library is now updated, the replxy button is changed
2016-03-05 13:29:01 +01:00
Roland Häder
04a7d6384e
No need to set $a->theme_info = array() everywhere if you can define it in App
...
itself.
Signed-off-by: Roland Haeder <roland@mxchange.org>
2016-03-01 14:27:38 +01:00
rabuzarus
0db83b9586
contactedit-actions-button: move repair back to tabbar
2016-02-23 19:19:45 +01:00
Michael Vogel
7d4c99ebbc
"get_baseurl" and "z_root" are disappearing ...
2016-02-17 23:47:32 +01:00
Michael Vogel
c5b724828a
Just some more removed baseurls ...
2016-02-17 08:08:28 +01:00
Michael Vogel
f7537c9e90
Remove the baseurl where possible to avoid mixed content
2016-02-17 00:01:24 +01:00
Michael Vogel
307f90cdfe
Vier: Pictures in the side bar shouldn't be larger than the side bar
2016-02-13 14:21:53 +01:00
rabuzarus
2e04a00d30
contactedit-actions-button: some adjustment for vier dark scheme
2016-02-08 23:25:48 +01:00
rabuzarus
0c764684bb
Merge develop into 0602_contact_profile
2016-02-08 23:16:02 +01:00
rabuzarus
0b5d7b300e
contactedit-actions-button: adjust the themes and template polishing
2016-02-08 23:15:20 +01:00
fabrixxm
d6cf791677
Merge pull request #2324 from rabuzarus/0502_vier_dark
...
vier: some consistency fixes for the dark scheme
2016-02-07 09:53:24 +01:00
fabrixxm
ecfb6ec924
Merge pull request #2313 from rabuzarus/0302_forum_class
...
forums.php is now ForumManager.php and providing class ForumManager
2016-02-07 09:28:50 +01:00
rabuzarus
95819684c2
Merge develop into 0502_vier_dark
...
Conflicts:
view/theme/vier/dark.css
2016-02-06 13:09:41 +01:00
rabuzarus
0bccfea596
vier: some consistency fixes for the dark scheme
2016-02-06 00:54:50 +01:00
rabuzarus
bcf1020635
vier smileybutton: dark.css insert new line at the end of the file
2016-02-05 21:38:55 +01:00
rabuzarus
9fd3d8116b
vier smileybutton: little polish in dark.css
2016-02-05 21:30:31 +01:00
rabuzarus
41405ed0f2
vier: display smiley-preview as inline-block - needs addons update
2016-02-05 21:24:01 +01:00
Tobias Diekershoff
8bca68c77c
Merge pull request #2317 from rabuzarus/0402_vier_mobile_textarea
...
vier: remove some hardcoded css to be more mobile friendly
2016-02-05 06:57:07 +01:00
Tobias Diekershoff
437784b7bb
Merge pull request #2318 from annando/1602-vier-font
...
Vier: The font "system" can make the system look ugly
2016-02-05 06:56:26 +01:00
Michael Vogel
b85369a03b
Vier: The font "system" can make the system look ugly
2016-02-04 18:58:33 +01:00
rabuzarus
a75be65860
vier: little float fix
2016-02-04 16:45:39 +01:00
rabuzarus
12c6ba9081
vier: remove some hardcoded css to be more mobile friendly
2016-02-04 16:21:40 +01:00
rabuzarus
52dbb0b4a2
Forum class - rename Class CamelCase and rename some methods
2016-02-04 14:51:54 +01:00
rabuzarus
9a54afa629
Forum class - rename Class CamelCase and rename some methods
2016-02-04 14:47:20 +01:00
rabuzarus
c1070e4655
forums.php is now forum.php and providing class forum
2016-02-03 18:05:26 +01:00
Fabrixxm
f21e3e46c7
Vier mobile: better jot buttons on small screens
2016-02-03 15:01:24 +01:00
Fabrixxm
1ddae21cff
Vier mobile: fix content width, events style, oembed
2016-02-03 14:48:46 +01:00
Fabrixxm
3c6ebfa5a9
Vier - mobile friendly ACL window and form fields
2016-02-03 14:03:00 +01:00
rabuzarus
58c1f9a60f
vier: use object-fit: cover for recent photos view
2016-02-03 03:59:42 +01:00
rabuzarus
ad5be2901e
rework autocomplete: some styling if contact is forum
2016-02-03 00:25:33 +01:00
rabuzarus
162f754e2d
Merge develop into 1901_autocomplete
2016-01-30 16:57:54 +01:00
rabuzarus
8e0f04026c
vier: some fixes for mobile view
2016-01-30 01:53:21 +01:00
rabuzarus
d0ade828c0
rework autocomplete: some cleanup and docu
2016-01-24 19:56:23 +01:00
rabuzarus
e3475bd587
rework autocomplete: css work
2016-01-21 13:28:29 +01:00
Michael Vogel
6c7cf2a766
Merge remote-tracking branch 'upstream/develop' into 1601-network-performance
2016-01-18 00:53:18 +01:00
rabuzarus
f428635682
vier: add missing forumlist_profile
2016-01-17 15:54:58 +01:00
Michael Vogel
90a8d6f0f5
Several performance improvements
2016-01-15 23:27:25 +01:00
rabuzarus
556f76de01
vier: mobile view - fix word breaking
2016-01-13 19:56:21 +01:00
fabrixxm
fcf7a791f1
Revert "Merge pull request #2223 from rabuzarus/2912_photo_widget"
...
This reverts commit 83e54f70d3
, reversing
changes made to ecf576bdd0
.
2016-01-04 11:46:19 +01:00
fabrixxm
83e54f70d3
Merge pull request #2223 from rabuzarus/2912_photo_widget
...
photo aside widget for profile page
2016-01-04 10:06:07 +01:00
fabrixxm
907d20940a
Merge pull request #2221 from rabuzarus/2812_vier_mobile_icons
...
vier: make TopNavBar mobile friendly
2015-12-31 09:38:27 +01:00
rabuzarus
89c0a8f8a8
vier: remove double available accesskeys
2015-12-30 00:48:11 +01:00
rabuzarus
20fbf670db
photo aside widget for profile page
2015-12-30 00:26:50 +01:00
Michael Vogel
b41ab85feb
Merge pull request #2220 from rabuzarus/2812_notify_menu
...
vier: some visual work on the notification menu
2015-12-29 14:31:41 +01:00
rabuzarus
871fb609d4
vier: add missing clear divs to right aside
2015-12-29 02:01:17 +01:00
rabuzarus
51a8864519
vier: make TopNavBar mobile friendly
2015-12-29 00:23:59 +01:00
rabuzarus
43d35315db
vier nav-notification-menu: further polishing
2015-12-28 22:04:54 +01:00
rabuzarus
c7d2d95705
vier nav-notification-menu: small cleanup
2015-12-28 20:52:11 +01:00
rabuzarus
093a3e6742
some work on vier nav-notification-menu
2015-12-28 20:40:04 +01:00
fabrixxm
6da04d16bd
get rid of unwanted <br>s in items with oembed
...
fix video thumbnail in quattro, vier, duepuntozero themes
2015-12-28 18:07:31 +01:00
rabuzarus
e68fcc146a
vier: fix for 2205
2015-12-28 04:57:49 +01:00
rabuzarus
19a72b30b4
vier: fix missing icons
2015-12-15 15:13:46 +01:00
Michael Vogel
1e0f26da8d
Merge pull request #2166 from rabuzarus/1012_vier-forum
...
vier: fix little misspelling
2015-12-10 21:19:16 +01:00
rabuzarus
776cbe4a37
vier: fix little misspelling
2015-12-10 13:30:11 +01:00
Michael Vogel
1fb636ba1e
Vier: The line-height seems to make problems with windows
2015-12-07 21:45:33 +01:00
Michael Vogel
1f9644bded
Merge pull request #2131 from rabuzarus/3011_hcard_vcard
...
unify hcard and vcard
2015-12-03 14:16:52 +01:00
rabuzarus
1d6d9d3d24
photos-albms widget: add some classes
2015-12-01 21:07:05 +01:00
rabuzarus
cd7ec72b20
unify hcard and vcard: make $pdesc available in hcard&vcard
2015-12-01 19:47:23 +01:00
rabuzarus
39b37281a7
Merge develop into 3011_hcard_vcard
2015-12-01 18:34:13 +01:00
rabuzarus
89c5989cfb
unify hcard and vcard
2015-12-01 18:31:08 +01:00
Michael Vogel
6910604ffb
Merge pull request #2125 from rabuzarus/2911_event_template
...
vier event_form: include bb-tags for editing
2015-12-01 17:13:46 +01:00
rabuzarus
39b85c8486
vier event_form: include bb-tags for editing
2015-11-30 16:00:41 +01:00
fabrixxm
a60b702df1
Merge pull request #2113 from annando/1511-manage-notifications
...
The manage page now shows the notifications
2015-11-30 12:04:53 +01:00
Michael Vogel
4efb6c6f79
Merge pull request #2120 from rabuzarus/2911_network_header
...
2911 network header
2015-11-30 08:30:34 +01:00
rabuzarus
a6aac8f950
networkheader: do css work the other supported themes
2015-11-30 01:24:22 +01:00
Tobias Diekershoff
be40fb8186
Merge pull request #2110 from annando/1511-subscribe-feed
...
Issue 1779: Atom feed link under the connect link on the profile page
2015-11-29 08:40:39 +01:00
rabuzarus
1a0cb99d56
redesign the network page header when cid selected
2015-11-29 04:57:42 +01:00
rabuzarus
f5597da059
forumlist - mark selected forum as selected
2015-11-28 23:52:12 +01:00
Michael Vogel
3067663909
The manage page now shows the unread notifications
2015-11-28 22:56:48 +01:00
rabuzarus
a3059d02d4
group_side - unify look with forumlist
2015-11-28 20:09:28 +01:00
Michael Vogel
388847e1f3
Issue 1779: There is now an atom feed link under the connect link on the profile page
2015-11-28 18:11:34 +01:00
Michael Vogel
3b6d3d1ade
Merge pull request #2099 from rabuzarus/2611_new_user_addr
...
generate addr for new registered users
2015-11-27 21:35:46 +01:00
rabuzarus
620299dc25
include friendica address in hcard
2015-11-26 17:46:38 +01:00
rabuzarus
ddf3589fc5
count unread forum items for forumlist widget (ping.php)
2015-11-24 22:14:26 +01:00
Michael Vogel
5a1f763de0
The mobile.css seems to only work for mobiles at the moment.
2015-11-17 20:39:30 +01:00
Michael Vogel
a9444ec774
The mobile.css was commented out ...
2015-11-17 20:11:06 +01:00
Michael Vogel
4b21512f56
This is a quick fix for the the forumlist.
2015-11-17 19:56:32 +01:00
Michael Vogel
e43c7a4447
Merge pull request #2061 from rabuzarus/0711_forumlist
...
move forumlist addon to core
2015-11-17 08:46:15 +01:00
fabrixxm
c81f63a5b3
vier mobile: prefixed transition in css, mobile-related javascript only on mobile
2015-11-12 09:41:04 +01:00
fabrixxm
54460bdf35
fix tab icon padding
2015-11-12 09:41:04 +01:00
fabrixxm
b3e09b817f
fix menu icon, add icon to tab
2015-11-12 09:40:28 +01:00
fabrixxm
e5edd7b7db
mobile friendly tabs
2015-11-12 09:40:28 +01:00
Michael Vogel
31c44bd398
Vier: The left menu does now appear reliably even if the user had scrolled down.
2015-11-12 08:57:57 +01:00
rabuzarus
988d0327ae
forumlist: forgot some required_once for plugin_enabled()
2015-11-11 21:37:16 +01:00
rabuzarus
215205d376
forumlist: nodeinfo_plugin_enabled() is now plugin_enabled()
2015-11-11 21:31:26 +01:00
Michael Vogel
cba2a8b64b
Vier: Make it look more beautiful under Linux
2015-11-10 16:25:36 +01:00
fabrixxm
df866253b0
aside bar as menu in mobile
2015-11-08 19:08:00 +01:00
fabrixxm
c700a6fb37
duepuntozero, vier: add unread messages per group
2015-11-08 18:02:04 +01:00
FlxAlbroscheit
06676e7c1b
Preview last five conversations in message-sidebar
2015-11-07 18:57:40 +01:00
Michael Vogel
0f563525bd
Optical adjustments for contacts/set "last_failure" when inaccessible
2015-11-06 09:15:20 +01:00
Michael Vogel
0f41f35041
The contact template now displays the address if available
2015-11-06 00:47:54 +01:00
Michael Vogel
5b2e1188c0
Vier: Network name, "ago" and the quote description are now smaller when mobile.
2015-11-04 00:07:05 +01:00
Michael Vogel
546fd6cbbe
Merge remote-tracking branch 'upstream/develop' into 1511-vier-mobile2
2015-11-03 23:56:57 +01:00
Michael Vogel
3b11436b02
Merge pull request #1989 from rabuzarus/allfriends
...
template-rework: let common friends and allfriends use viewcontact_te…
2015-11-03 23:27:24 +01:00
Michael Vogel
451b07cfe7
Mobile should be better now
2015-11-03 23:11:36 +01:00
Michael Vogel
eff6f3a57d
On small computers the stylesheet changed to mobile by accident.
2015-11-03 19:14:28 +01:00
rabuzarus
e785759a8b
template-rework:make use of get_contact_details_by_url()
2015-11-03 14:31:15 +01:00
Michael Vogel
e3fdb33df0
Vier: Added the credits to the pages without left sidebar
2015-11-03 01:19:22 +01:00
Michael Vogel
1831066259
Vier is now a little bit more mobile ready.
2015-11-02 23:12:09 +01:00
Michael Vogel
6a53e3959f
Vier: The different styles are now working with the right menubar
2015-11-01 09:45:02 +01:00
rabuzarus
f0f3360c4b
vier: include private forums in forum widget
2015-10-29 15:34:55 +01:00
Michael Vogel
aee4522ad4
The contact page now shows the connection status.
2015-10-27 23:10:52 +01:00
Tobias Diekershoff
11a7eb8d8f
Merge pull request #1985 from annando/1510-vier-optimize-touch
...
Vier: The usability with a touch device is improved
2015-10-27 08:59:47 +01:00
Tobias Diekershoff
4079084492
Merge pull request #1975 from rabuzarus/template_rework
...
Template rework for contact related pages
2015-10-27 08:59:03 +01:00
Michael Vogel
4f9ec8efac
Vier: The usability with a touch device is improved
2015-10-25 21:01:39 +01:00
Tobias Diekershoff
03ff349a94
Merge pull request #1982 from annando/1510-reduced-profile
...
Profile data are now reduced to only the most important fields
2015-10-25 16:54:24 +01:00
rabuzarus
5b93bff6da
poke template: make use of global.css
2015-10-25 14:40:56 +01:00
Michael Vogel
4631c13d08
Profile data are now reduced to only the most important fields
2015-10-25 09:15:36 +01:00
rabuzarus
8f92b6eea4
some work on poke template
2015-10-24 19:51:58 +02:00
rabuzarus
7c9df68964
template rework: revert #b2bb600 for vier (is needed for right sidebar)
2015-10-23 15:23:00 +02:00
rabuzarus
fad8ebc355
template rework: two row contact page for vier
2015-10-23 15:18:05 +02:00
rabuzarus
b2bb600f3a
template rework: delete unused css
2015-10-23 01:04:47 +02:00
rabuzarus
f9c0c1d696
template rework: use viewcontact_template.tpl for contact dealing pages
2015-10-18 17:12:48 +02:00
Michael Vogel
66ea33623b
Vier: Some small changes in the template for events
2015-10-13 20:15:01 +02:00
Tobias Diekershoff
ce03ccc95c
Merge pull request #1929 from rabuzarus/event-attendance
...
port of reds event attendance feature
2015-10-12 15:10:03 +02:00
Michael Vogel
adba75600a
Vier: Support for the new IFTTT addon.
2015-10-11 23:36:23 +02:00
rabuzarus
649578ae33
Merge develop-new into event-attendance-new
...
Conflicts:
include/conversation.php
2015-10-11 19:39:55 +02:00
Michael Vogel
61c3ce7a21
Bugfix: The contact names had to be escaped
2015-10-08 00:25:55 +02:00
Michael Vogel
1f0b759e2f
Added resize possibility to proxy function
2015-10-07 08:25:10 +02:00
Michael Vogel
607817d1b3
Vier: Avoid an error when calling the admin settings of "vier" when "vier" is not activated.
2015-10-05 17:38:57 +02:00
Michael Vogel
1d71dde7ef
Beautyfied code. Link to "follow" on community profiles
2015-10-04 14:40:02 +02:00
Michael Vogel
3b18c6cb0c
Small optical changes in "vier"
2015-10-04 12:24:00 +02:00
Michael Vogel
3ae0deadb6
The right side now contains much stuff from diabook - but completely reworked.
2015-10-03 12:55:55 +02:00
Michael Vogel
47c855388e
Vier: Menu at the right side (inspired and copyied from diabook)
2015-10-01 08:19:35 +02:00
Michael Vogel
5fe357ee75
Rearrange the navigation bar on smaller windows
2015-09-30 21:59:55 +02:00
Michael Vogel
68a6f0298e
The events moved from the profile to the navigation bar - for supported themes
2015-09-30 18:50:44 +02:00
rabuzarus
7cb4ea52fd
port of the event attendance feature of red matrix with example implementation for vier theme.
2015-09-30 16:58:02 +02:00
rabuzarus
f5c7006f30
rest of the consensus porting work and integration into friendica
...
Credits to Mike Macgirvin for the code
2015-09-30 14:38:13 +02:00
Michael Vogel
6e981ed798
Merge remote-tracking branch 'upstream/develop' into 1509-i18n-events
2015-09-29 10:35:50 +02:00
Michael Vogel
c33957a6e9
Internationalisation of events/Move events to the navigation bar
2015-09-27 14:00:15 +02:00
Michael Vogel
6be65f4eae
Now attachments of the type "application" are displayed as well.
2015-09-18 21:09:31 +02:00
Michael Vogel
31fffcf281
Accidentally removed a file
2015-08-29 17:09:25 +02:00
Michael Vogel
82e682ef45
The click behaviour of the top menu bar is now changed completely
2015-08-29 10:14:41 +02:00
Michael Vogel
319df2ed66
The menu bar isn't clickable anymore
2015-08-28 11:36:43 +02:00
Michael Vogel
14af9cd2e8
Remove the unneeded menu buttons-
2015-08-27 00:50:04 +02:00
Michael Vogel
92fbf1bcbd
Vier: Use CSS for popup menu
2015-08-27 00:02:06 +02:00
Michael Vogel
b1dddd2936
Only offer forum search in local mode.
2015-08-25 05:54:50 +02:00
Michael Vogel
d1647222d3
Vier: The "register" page now looks better.
2015-08-24 19:03:03 +02:00
Michael Vogel
3ff196f00d
Now you can set search options so that searching for contacts or forums isn't occult science anymore.
2015-08-24 11:55:29 +02:00
Michael Vogel
72c8fff909
Improved register link and open-id input.
2015-08-15 07:08:32 +02:00
Michael Vogel
efec7e973e
This hopefully will solve issue 1348
2015-08-14 23:32:10 +02:00
Michael Vogel
e1088210a6
CSS improved
2015-08-11 22:47:37 +02:00
Michael Vogel
ccaeb00973
Better link descriptions.
2015-08-08 22:30:43 +02:00
Michael Vogel
b4d09777b9
Added many accesskeys ...
2015-08-08 17:33:43 +02:00
Michael Vogel
a8a21da6f5
Some steps for a better screen reader compatibility
2015-08-06 08:13:15 +02:00
Fabrixxm
52f9465578
filebrowser fixs, use it in comment textareas
...
move filebrowser js to single file
document filebrowser usage
replace "onclick" for comment style buttons with data-* and move logic to main.js
use filebrowser to insert images in comments
2015-07-29 11:30:04 +02:00
Fabrixxm
70b7de39a7
Upload/Browse popup for files and images
...
Jot buttons to upload images and files show a popup, where the
user can select a previously uploaded item o upload a new one
2015-07-28 17:20:40 +02:00
Michael Vogel
5f86d3d325
removed the picture width, since it is already in the style sheet.
2015-07-12 20:31:49 +02:00
Michael Vogel
6a646d68c5
Updated templates for "vier" (See issue 1733)
2015-07-12 20:27:54 +02:00
Michael Vogel
c356da2cad
Diaspora: Improved parsing of linefeeds
2015-07-05 02:33:28 +02:00
fabrixxm
5a23bd400c
Merge pull request #1715 from rabuzarus/theme_uid
...
use local theme settings for visitors
2015-06-30 08:41:07 +02:00
rabuzarus
36abf624d8
make supported themes compatible with get_theme_uid
2015-06-29 23:03:44 +02:00
Michael Vogel
b9c42c37d1
Vier: Colors for notifications changed
2015-06-29 08:00:52 +02:00
Michael Vogel
6eebfb2e13
Merge pull request #1692 from fabrixxm/desktopnotifications
...
Desktop notifications
2015-06-26 08:45:16 +02:00
Fabrixxm
6fc864c947
rework mod/ping and desktop notification logic
...
`mod/ping.php` returns all notifications ordered by date
mixing system notifications, private messages, intros, registrations
remove 'notify_full' mode
remove `&arr;` from unseen notes, 'seen' attrib now is "1" or "0"
new note attribute 'timestamp'
desktop notification logic use timestamp to check which notification show to the user
notification html template use timestamp to show full date to user in tooltip
`relative_date()` don't append full date on dates older than 24 hours
2015-06-25 10:02:26 +02:00
Michael Vogel
0bac4722cb
Vier: Just another thread improvment
2015-06-24 21:49:51 +02:00
Fabrixxm
e29d05ce4a
notifications order, unseen css class
...
ping return notfications ordered by notification id
notifications list get seen/unseen class from ping xml
global.css define 'notify-unseen'
2015-06-24 16:10:06 +02:00
Michael Vogel
3841c41186
Improved width for nested comments.
2015-06-24 14:20:08 +02:00
Michael Vogel
bc42b6440a
Vier: Improved threading
2015-06-21 20:40:39 +02:00
rabuzarus
c01dbc274c
fix remote-link button in vier
2015-06-11 02:49:09 +02:00
fabrixxm
d204e2524b
vier: style video delete button
2015-05-24 10:34:17 +02:00
rabuzarus
30348a1bc0
port of red matrix archive-widget
2015-05-19 01:03:08 +02:00
Michael Vogel
2eba5a32df
New screenshot for "vier".
2015-03-09 23:21:40 +01:00
Michael Vogel
bf0f7c3d0a
New bbcode elements h1 to h6 for a better conversion of Diaspora content
2015-03-01 20:07:56 +01:00
Michael Vogel
19af382ffb
"plus" is now the default style at "vier" for new installations
2015-02-21 09:44:13 +01:00
Michael Vogel
4a1105ede6
scrape/noscrape now contains the date the profile was last updated or the last message was sent.
2015-02-18 23:40:46 +01:00
Michael Vogel
a26d04574d
Merge remote-tracking branch 'upstream/develop' into 1502-contacts-in-scrape
2015-02-17 19:18:17 +01:00
Michael Vogel
52de6c11b1
There is now a link to the profile behind the avatar picture on the display page
2015-02-17 17:33:28 +01:00
Johannes Schwab
12d7ca9b84
improved infinite scrollling
2015-02-13 00:40:59 +01:00
Michael Vogel
842ac46857
Scrape now contains the number of contacts as well.
2015-02-08 23:35:29 +01:00
Michael Vogel
dbe52c74b5
Added Beanow as author, since he did most of the last changes.
2015-02-02 21:03:14 +01:00
Michael Vogel
9f0e19762e
New version for "Vier". The navigation was restructured and several other stuff was changed as well, thanks to Beanow!
2015-02-02 21:00:32 +01:00
Michael Vogel
848c09935a
The contact list in mails now contains not only the name but also the address.
2015-01-27 08:04:24 +01:00
Michael Vogel
cb9196f6d6
Issue 1197: New hook for "oembed_fetch_url"
2015-01-25 00:58:51 +01:00
Michael Vogel
b36d799044
Fetching "location" and "about" from diaspora. Displaying them on the "display" page.
2015-01-07 01:46:13 +01:00
hauke
a72d60f481
Added h-card and functionality for IndieAuth/Web-sign-in
2014-12-28 15:48:24 +01:00
Michael Vogel
8b433c2d11
Vier: New style "dark"
2014-12-13 23:13:34 +01:00
Silke Meyer
f493252ac8
Use a sans-serif font-family in breathe
2014-12-06 20:05:30 +01:00
Michael Vogel
2bbd7ab67f
Issue 1157: Unused javascript function is removed.
2014-09-27 14:17:50 +02:00
Michael Vogel
f9bec79a2c
In the profiles the remote connect field was missing
2014-09-11 23:38:24 +02:00
fabrixxm
fd97f3013d
fix quattro scroll and flash and vier flash on display page
2014-09-11 18:56:33 +02:00
fabrixxm
735e6bbcb4
Merge pull request #1121 from Beanow/hotfix/bug-1105
...
Fix illegal offset error for vier and quattro.
2014-09-07 12:48:13 +02:00
Beanow
8345ac7313
Fix illegal offset error for vier and quattro.
...
Fixes #1105
2014-09-07 11:47:08 +02:00
hauke
a162ea7251
bug fix #1115
2014-09-07 10:26:38 +02:00
hauke
7dcf37f053
changed cursor style on settings page globally
2014-09-06 17:01:05 +02:00
hauke
ec68e33c6b
make items on settings pages fold/unfold on click
2014-09-06 13:53:23 +02:00
hauke
9a8d106414
fixed contact action button bar, typo correction
2014-09-06 11:49:31 +02:00
hauke
191595766d
removed old comment that is no longer true
2014-09-06 00:14:25 +02:00
Michael Vogel
0e2376b457
Updated font awesome to new version
2014-09-04 01:01:39 +02:00
Michael Vogel
7eeb320085
It is now possible to ignore threads.
2014-09-04 00:58:52 +02:00
Michael Vogel
316f0a75cd
Showing the network name on the display page.
2014-08-25 16:17:49 +02:00
Michael Vogel
dd511ac70a
The "display" page now shows the current author profile with a "connect" link (if there is no current connection)
2014-08-25 14:09:56 +02:00
Michael Vogel
33b612a920
Bugfix: There was a JS error that prevented the work of the comment buttons
2014-08-25 14:07:11 +02:00
Michael Vogel
94d2557077
Vier: Some more design changes to "plus" style.
2014-08-21 01:00:56 +02:00
Michael Vogel
271a184e1e
proxy: Added support for long addresses. "vier": New style "Plus"
2014-08-16 01:40:38 +02:00
Michael Vogel
ed1dce93d6
Usage of /display/(guid) as path instead of /display/(user)/(id)
...
Bugfix for adding tags to photos
2014-07-22 00:36:20 +02:00
Michael Vogel
38fb43702f
Vier: Preview picture in admin settings is now smaller
2014-06-20 00:01:20 +02:00
Michael Vogel
8bce8b0bd2
Vier: The setting for defining the default style is now working
2014-06-16 00:00:05 +02:00
Michael Vogel
2747c19bdd
Vier: Border between side menu and content in "flat" style
2014-06-15 19:37:14 +02:00
Michael Vogel
029633c16d
Merge pull request #1020 from silke/vier-border-radius
...
Vier border radius
2014-06-15 18:26:23 +02:00
Silke Meyer
f70bdb984f
A few more changes for breathe style in vier.
2014-06-15 18:16:02 +02:00
Silke Meyer
7fdcc15182
same drop-down menu for contact details as for user menu
2014-06-15 14:57:52 +02:00
Silke Meyer
321c711a3d
top bar icons stay dark upon hover
2014-06-15 13:35:34 +02:00
Silke Meyer
dd1b28314e
space between logo and sitename
2014-06-15 13:25:27 +02:00
Tobias Diekershoff
f23f6ca9c6
Merge pull request #1017 from silke/vier-border-radius
...
Vier border radius
2014-06-15 08:33:43 +02:00
Silke Meyer
d738395b0f
active tab
2014-06-15 02:00:25 +02:00
Silke Meyer
564ec8053a
top nav bar colors
2014-06-15 01:58:18 +02:00
Silke Meyer
44dacd1d82
Just kept the differences for "breathe" style
2014-06-15 01:35:41 +02:00
Silke Meyer
f15dec16d1
bg color and selected tab brighter
2014-06-15 00:56:05 +02:00
Silke Meyer
cb1f52ad93
added style to theme.php
2014-06-15 00:26:49 +02:00
Silke Meyer
db1ef0bfcf
Transformed changes into its own Vier style
2014-06-15 00:19:38 +02:00
Silke Meyer
31730ec75b
white text / icons in upper nav
2014-06-14 23:58:46 +02:00
Silke Meyer
e961681f63
comment field
2014-06-14 23:31:27 +02:00
Silke Meyer
583207b5c3
edit field
2014-06-14 23:28:28 +02:00
Silke Meyer
39604c37d8
round corners for vevent
2014-06-14 23:25:00 +02:00
Silke Meyer
e7171bb89a
softer look for code fragments in postings
2014-06-14 23:22:41 +02:00
Silke Meyer
36c55f047b
border-radius for messages
2014-06-14 23:20:08 +02:00
Silke Meyer
911777a737
border-radius for tabs again, they seems to have got lost earlier
2014-06-14 19:12:55 +02:00
Silke Meyer
6e9ed089cf
removed border at bottom of #live-network
2014-06-14 19:07:42 +02:00
Silke Meyer
f5c7b47788
made drop-down menu on user icon a bit more "softer"
2014-06-14 18:48:31 +02:00
Silke Meyer
e1b9783338
border-radius for search box
2014-06-14 18:39:23 +02:00
Silke Meyer
c324e2c9f9
Small border-radius for tabs
2014-06-14 18:37:15 +02:00
Silke Meyer
17a78e7186
added small border-radius for event notice
2014-06-14 18:29:36 +02:00
Silke Meyer
f533332ad5
added border-radius for #profile-jot-form
2014-06-14 18:25:34 +02:00
Silke Meyer
29fbedcaf4
added border-radius for tread-wrapper
2014-06-14 18:23:56 +02:00
Michael Vogel
ce29f55536
Vier: Some small color changes
2014-06-10 20:22:53 +02:00
Michael Vogel
bb641dec62
Vier: pager content is now centered
2014-06-06 00:38:27 +02:00
Michael Vogel
c83aae2f1f
Vier: Making the pager look better
2014-06-05 23:59:38 +02:00
Michael Vogel
4984a3703f
Vier: Redesigned tabs
2014-06-05 21:36:55 +02:00
Michael Vogel
e729d2e216
Show title for the reply button.
2014-06-04 00:43:43 +02:00
Michael Vogel
1fdfd614f0
Vier: Make the smiley button look better integrated into the theme.
2014-05-29 22:56:04 +02:00
Michael Vogel
b0df06dd72
Vier: When clicking on the reply button, the focus now automatically changes to the textarea.
2014-05-29 20:27:06 +02:00
Michael Vogel
0eafed3353
Vier: New "font awesome" version, changed "reply" button, comment area is now hidden until the first reply came. (Saves space)
2014-05-29 11:51:13 +02:00
Michael Vogel
d964e7e08f
New function for shortening of text (is used by the buffer export)/Vier: comment bubble is now grey.
2014-05-18 23:39:34 +02:00
Michael Vogel
665139660a
Make embedded videos look better. (better margin data)
2014-05-18 20:30:27 +02:00
Michael Vogel
0f16672176
Deleted the duplicate file "wall_attach.php"
2014-05-12 21:30:53 +02:00
Michael Vogel
059b88b7a0
The CSS code for shared messages is moved from "vier" to the global.css, so that it is usable for all themes.
2014-05-03 12:08:42 +02:00
fabrixxm
b69f6b6ade
Merge pull request #953 from tugelbend/master
...
Vier: Fix for the display of long text event entries
2014-04-29 09:07:32 +02:00
Fabrixxm
cae89749d7
vier: remove unused .less files, fix photo comments
2014-04-28 09:42:41 -04:00
hauke
b8bf26ec1f
code cleanup, replaced tabs with spaces
2014-04-27 14:53:45 +02:00
hauke
f14835ce4a
re-added missing styles for event
2014-04-27 14:50:39 +02:00
hauke
cd1a726d87
code cleanup
2014-04-27 14:44:42 +02:00
hauke
c111cec560
event entry: added some padding for a nicer look
2014-04-27 14:41:31 +02:00
hauke
21f5004821
bug fix: event entry. long text doesn't wrap in colorbox popup
2014-04-27 14:35:32 +02:00
Michael Vogel
2846dfeb05
Ther eis now a user setting to disabled notices. The Diaspora reshare now checks for empty values.
2014-04-26 02:22:30 +02:00
Michael Vogel
1227d071d1
The preview button is now a button. This is more consistent
2014-04-24 13:27:08 +02:00
Michael Vogel
97d8c03f33
Vier: removed the gray line under the user menu when it was selected
2014-04-24 13:02:50 +02:00
Michael Vogel
ec1f07d5b7
Only show the preview button when it is activated/Menü arrangement changed for settings menu.
2014-04-24 12:39:27 +02:00
Michael Vogel
c1988d7e08
Vier: Removed the delegations from the nav menu, renamed the hardcoded "impressum" to use the translations.
2014-04-24 10:19:13 +02:00
Michael Vogel
b005423ebf
New layout for connector settings. New global CSS for things that seems to be identical in most themes.
2014-04-24 10:17:19 +02:00
Michael Vogel
b6384ec5be
The postal code wasn't displayed correctly.
2014-04-22 15:53:26 +02:00
Michael Vogel
6e7d8b87bb
Vier: attached link descriptions (type-link, ...) are redesigned to make it look more modern.
2014-04-22 01:03:08 +02:00
Michael Vogel
73f0496127
Vier: Added treatment of videos like links. (See the changes in the "parse url" section)
2014-04-04 11:03:34 +02:00
Michael Vogel
a50484c27d
Vier: Larger font for content.
2014-03-18 22:52:19 +01:00
Michael Vogel
49e16b0612
Vier: Fading effects for tags, borders for links
2014-03-16 17:24:10 +01:00
Michael Vogel
51bf7f7d17
Vier: The shadows are reduced a little bit.
2014-03-09 09:22:44 +01:00
Michael Vogel
2b5345323f
"vier": Several design changes. New option for coloured network items.
2014-03-02 01:29:20 +01:00
Michael Vogel
7792c5f5f0
Vier: forgot to add template ...
2014-02-23 15:58:22 +01:00
Michael Vogel
a4ecf74a5d
Vier: Added config.php
2014-02-23 15:57:27 +01:00
Michael Vogel
f663676cca
Vier: Option to switch between shadow style and flat style.
2014-02-22 15:48:57 +01:00
Michael Vogel
83c89bf17c
Vier should now work better on some older browsers
2014-02-16 17:37:56 +01:00
Michael Vogel
01971428aa
target="_blank" instead of target="external-link"
2014-02-11 23:42:06 +01:00
Michael Vogel
6c46c8333d
Vier: Adding some shadows. In the thread view showing the application when hovering over the network name (less information is sometimes more)
2014-02-02 09:57:31 +01:00
Michael Vogel
2be9e2f246
vier: Quick fix for a missing file (taken from quattro at the moment)
2014-01-28 22:55:19 +01:00
Michael Vogel
de4d0765cb
Beautifiying export of shared posts to other networks
2014-01-18 21:32:14 +01:00
Oliver
e433dfad71
Quick fix: star and lock position on starred posts
2014-01-12 12:42:56 +01:00
Michael Vogel
aed28a24f1
Merge remote-tracking branch 'upstream/master'
...
Conflicts:
mod/crepair.php
2014-01-05 16:22:42 +01:00
Michael Vogel
4b0e370c4c
Better handling of the network field in the item table.
2013-12-27 01:58:21 +01:00
Michael Vogel
d487cb2078
vier: Screenshot updated
2013-12-10 20:56:50 +01:00
Michael Vogel
bae844e367
New style for shared links. Preparation for changes in some addons
2013-12-08 16:49:07 +01:00
Michael Vogel
3e5b9e97e7
New "minimal" mode for displaying the network content. Preparation for e.g. a multicolumn layout.
2013-12-04 23:46:51 +01:00
Michael Vogel
0ffeb4cf92
New field "network" in item table to speed up the system.
2013-10-25 23:33:53 +02:00
Michael Vogel
8adc1bd703
Vier: Improved scrollbar when the "aside" area is to short.
2013-10-04 11:12:29 +02:00
Michael Vogel
9bbf60ac9b
Vier: A little rearrangement of the menu order.
2013-06-23 00:26:04 +02:00
Michael Vogel
bd7abe210c
Vier: Introductions are now shown. The popup menu when editing a profile is visible again.
2013-06-23 00:07:21 +02:00
Tobias Diekershoff
5113885427
fix 540 in vier
2013-05-29 17:10:49 +02:00
Fabrixxm
379c761c3f
missing "templates" folders
2013-04-23 07:47:57 -04:00
Fabrixxm
6fddd1cbbf
template: remove old 'internal' template files, move smarty3 templates into 'templates' subdir
2013-04-23 03:35:31 -04:00
Michael Vogel
eabefb2f04
vier: The background color of the right area is now white.
2013-03-29 11:18:20 +01:00
Michael Vogel
111495423c
Imported mails were deleted the second time the poller ran - when moving or deleting of mails was activated.
2013-03-14 23:15:15 +01:00
Michael Vogel
5d3613c8bc
Vier: The change from blue to black in links is now faded as well.
2013-03-07 19:34:54 +01:00
Michael Vogel
c40c61c106
OStatus conversations: Fixed a bug when a message hadn't got an id.
...
vier: Some more changes to make the side menu static.
In the index.php I did a small change to make friendica compatible with the android client for diaspora.
2013-03-06 23:23:04 +01:00
Michael Vogel
86e19dda22
Vier: Some more changes to the theme.
...
Added a switch to suppress displaying of the tags.
2013-03-05 00:46:11 +01:00
Michael Vogel
8bb6b51967
Vier: Some more transition effects
2013-03-04 21:11:31 +01:00
Michael Vogel
478a079665
Vier: Further changes: profile border is rounded.
2013-03-04 00:04:06 +01:00
Michael Vogel
8e1d253568
OStatus conversation: now the creation date of the item is store with the conversation
...
vier: The link color and the color of the top bar is changed.
2013-03-03 23:44:50 +01:00
Michael Vogel
2866f62c88
Suppoorting Open Graph and Dublin Core when displaying single item
...
Following link shorteners in parse_url
2013-03-02 14:46:06 +01:00
Zach Prezkuta
047cf0d342
some smarty templates needed updating
2013-02-23 09:36:00 -07:00
Michael Vogel
93143702ed
Merge remote-tracking branch 'upstream/master'
...
Conflicts:
boot.php
database.sql
library/fancybox/jquery.fancybox-1.3.4.css
mod/search.php
update.php
2013-02-17 12:35:40 +01:00
Michael Vogel
3e58060b30
API: beautify the output of repeated items
...
Vier: Birthday reminder looks better
2013-02-15 20:14:45 +01:00
Zach Prezkuta
acc4d66cd3
update smart templates
2013-01-26 13:07:54 -07:00
Zach Prezkuta
488a38cd85
Decaf mobile: an (almost) Javascript-free theme
2013-01-26 13:01:57 -07:00
Michael - piratica.eu
cc9ce39e3f
Merge branch 'master' of https://github.com/annando/friendica
...
Conflicts:
include/poller.php
2013-01-20 14:17:09 +01:00
Michael - piratica.eu
7ab335c9d6
Diaspora: Auto-adding users as friend who already sharing with us
2013-01-20 14:08:28 +01:00
Michael Vogel
4e3d0018c6
Merge remote-tracking branch 'upstream/master'
...
Conflicts:
boot.php
include/items.php
update.php
2013-01-20 14:07:57 +01:00
Zach Prezkuta
c43ff35fe7
newline at end of header
2013-01-11 10:00:10 -07:00
Zach Prezkuta
1656c63a55
add warning message about automatically generated templates
2013-01-11 09:57:11 -07:00
Oliver
a543a1a0c2
typo correction
...
we don't want to drop Hilde
2013-01-11 14:15:17 +01:00
Zach Prezkuta
cd017282e4
use Python 2.4 compatible script; update Smarty templates
2013-01-10 22:34:23 -07:00